/*
Theme Name: Swisstream Light
Theme URI: https://swisstream.net/
Author: Swisstream
Description: Thème WordPress léger, lumineux et orienté conversion pour Swisstream.
Version: 2.3.6
Text Domain: swisstream-light
*/

:root {
  --red: #e30613;
  --red-dark: #b90412;
  --red-soft: #fff0f1;
  --ink: #172033;
  --muted: #5f6878;
  --line: #e7e9ee;
  --paper: #ffffff;
  --canvas: #fafaf8;
  --green: #17854c;
  --shadow: 0 18px 55px rgba(23, 32, 51, 0.10);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.wp-theme-swisstream-light-theme { background: var(--paper) !important; }
main { background: var(--paper); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(227,6,19,.28); outline-offset: 3px;
}
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  padding: 12px 18px; color: #fff; background: var(--ink); border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(231,233,238,.9);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; font-size: 20px; letter-spacing: -.03em; }
.brand-mark {
  position: relative; width: 38px; height: 38px; flex: 0 0 38px;
  background: var(--red); border-radius: 11px; box-shadow: 0 8px 20px rgba(227,6,19,.22);
}
.brand-mark::before, .brand-mark::after {
  content: ""; position: absolute; background: #fff; border-radius: 2px;
}
.brand-mark::before { width: 20px; height: 6px; left: 9px; top: 16px; }
.brand-mark::after { width: 6px; height: 20px; left: 16px; top: 9px; }
.main-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 720; }
.main-nav a:not(.button):hover { color: var(--red); }
.nav-language {
  display: grid; place-items: center; width: 38px; height: 38px;
  color: var(--red); background: var(--red-soft); border-radius: 12px; font-weight: 900;
}
.nav-toggle {
  display: none; border: 0; background: var(--red-soft); color: var(--red);
  width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor;
}

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 14px;
  font-weight: 800; line-height: 1; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 12px 26px rgba(227,6,19,.24); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { background: #fff; border-color: #d7dae1; }
.button-secondary:hover { border-color: var(--red); color: var(--red); }
.button-small { min-height: 44px; padding-inline: 18px; border-radius: 12px; }

.hero {
  position: relative; overflow: hidden; padding: 72px 0 46px;
  background:
    radial-gradient(circle at 8% 0%, rgba(227,6,19,.09), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fff 64%, var(--canvas) 100%);
}
.hero::after {
  content: ""; position: absolute; right: -140px; top: -160px; width: 440px; height: 440px;
  border: 90px solid rgba(227,6,19,.035); border-radius: 50%;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 66px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 20px;
  color: var(--red-dark); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--red); }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -.045em; }
h1 { max-width: 720px; font-size: clamp(43px, 5.5vw, 72px); }
h1 span { color: var(--red); }
.hero-copy { max-width: 660px; margin: 24px 0 30px; color: var(--muted); font-size: clamp(18px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin: 15px 0 0; color: var(--muted); font-size: 13px; }
.hero-media { position: relative; min-height: 570px; }
.hero-photo {
  position: absolute; inset: 0 0 0 34px; width: calc(100% - 34px); height: 100%;
  object-fit: cover; object-position: center 58%; border-radius: 32px 32px 110px 32px; box-shadow: var(--shadow);
}
.hero-card {
  position: absolute; left: 0; bottom: 36px; width: min(300px, 80%); padding: 18px;
  background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.8); border-radius: 18px;
  box-shadow: 0 16px 38px rgba(23,32,51,.16); backdrop-filter: blur(10px);
}
.hero-card strong { display: block; font-size: 18px; }
.hero-card span { color: var(--muted); font-size: 14px; }
.hero-card .status { display: inline-block; width: 9px; height: 9px; margin-right: 7px; background: var(--green); border-radius: 50%; }

.trust-bar { position: relative; z-index: 5; margin-top: 48px; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); background: #fff;
  border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 34px rgba(23,32,51,.06);
}
.trust-item { padding: 19px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 15px; }
.trust-item span { color: var(--muted); font-size: 13px; }

.section { padding: 96px 0; }
.section-soft { background: var(--canvas); }
.section-red { color: #fff; background: var(--red); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { font-size: clamp(34px, 4vw, 52px); }
.section-heading p { margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.section-red .section-heading p { color: rgba(255,255,255,.78); }
.kicker { margin: 0 0 12px; color: var(--red); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card, .feature-card, .guide-card {
  position: relative; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.step-number {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 42px;
  color: #fff; background: var(--red); border-radius: 13px; font-weight: 900;
}
.step-card h3, .feature-card h3, .guide-card h3 { font-size: 23px; }
.step-card p, .feature-card p, .guide-card p { margin: 13px 0 0; color: var(--muted); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { min-height: 230px; overflow: hidden; }
.feature-card::after {
  content: ""; position: absolute; width: 92px; height: 92px; right: -30px; bottom: -30px;
  background: var(--red-soft); border-radius: 50%;
}
.feature-icon {
  display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 28px;
  color: var(--red); background: var(--red-soft); border-radius: 15px; font-weight: 900;
}

.lifestyle {
  display: grid; grid-template-columns: .95fr 1.05fr; align-items: stretch; gap: 54px;
  padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 32px;
}
.lifestyle img { width: 100%; height: 560px; object-fit: cover; object-position: center 58%; border-radius: 22px; }
.lifestyle-copy { display: flex; flex-direction: column; justify-content: center; padding: 34px 36px 34px 8px; }
.lifestyle-copy h2 { font-size: clamp(34px, 4vw, 52px); }
.lifestyle-copy > p { color: var(--muted); font-size: 18px; }
.check-list { display: grid; gap: 13px; margin: 22px 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 32px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900;
}

.reviews-section {
  background:
    radial-gradient(circle at 0 100%, rgba(227,6,19,.065), transparent 30%),
    #fff;
}
.reviews-layout {
  display: grid; grid-template-columns: .72fr 1.28fr; gap: 20px; align-items: stretch;
}
.reviews-summary {
  display: flex; flex-direction: column; align-items: flex-start; padding: 34px;
  background: var(--ink); color: #fff; border-radius: 26px;
  box-shadow: 0 18px 50px rgba(23,32,51,.14);
}
.reviews-source {
  display: inline-flex; padding: 7px 11px; color: #fff; background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.13); border-radius: 999px; font-size: 12px; font-weight: 850;
}
.reviews-score { display: flex; align-items: flex-end; gap: 8px; margin-top: 27px; line-height: 1; }
.reviews-score strong { font-size: 64px; letter-spacing: -.07em; }
.reviews-score span { padding-bottom: 8px; color: rgba(255,255,255,.64); font-size: 18px; font-weight: 750; }
.review-stars { color: #ffb400; font-size: 16px; letter-spacing: .08em; line-height: 1; }
.review-stars-large { margin-top: 18px; font-size: 22px; }
.reviews-verdict { margin: 14px 0 0; font-size: 20px; font-weight: 850; }
.reviews-count { margin: 3px 0 24px; color: rgba(255,255,255,.66); font-size: 14px; }
.reviews-stat {
  width: 100%; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center;
  margin-top: auto; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.reviews-stat strong { color: #fff; font-size: 25px; }
.reviews-stat span { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.4; }
.reviews-profile-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  color: #fff; font-size: 14px; font-weight: 800;
}
.reviews-profile-link:hover { color: #ffcb3c; }
.review-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.review-card {
  display: flex; flex-direction: column; min-height: 240px; padding: 28px;
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  box-shadow: 0 12px 35px rgba(23,32,51,.055);
}
.review-card:last-child { grid-column: 1/-1; min-height: 205px; }
.review-card-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.review-card time { color: var(--muted); font-size: 12px; font-weight: 700; }
.review-card blockquote {
  margin: 30px 0; color: var(--ink); font-size: clamp(20px,2vw,25px);
  font-weight: 760; line-height: 1.42; letter-spacing: -.025em;
}
.review-card footer { display: grid; gap: 2px; margin-top: auto; }
.review-card footer strong { font-size: 14px; }
.review-card footer span { color: var(--muted); font-size: 12px; }
.reviews-note { margin: 18px 0 0; color: var(--muted); text-align: center; font-size: 12px; }

.pricing-toggle {
  display: inline-flex; gap: 4px; margin-bottom: 28px; padding: 5px;
  background: #fff; border: 1px solid var(--line); border-radius: 13px;
}
.pricing-toggle button { padding: 9px 14px; border: 0; border-radius: 9px; background: transparent; cursor: pointer; font-weight: 750; }
.pricing-toggle button.is-active { color: #fff; background: var(--red); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pricing-disclaimer {
  max-width: 920px; margin: 24px auto 0; color: var(--muted);
  font-size: 13px; text-align: center;
}
.price-card {
  position: relative; padding: 28px 24px; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--red); box-shadow: 0 18px 45px rgba(227,6,19,.12); }
.popular {
  position: absolute; right: 16px; top: 16px; padding: 5px 9px;
  color: var(--red-dark); background: var(--red-soft); border-radius: 999px; font-size: 11px; font-weight: 850;
}
.price-card h3 { font-size: 20px; }
.price { margin: 19px 0 3px; font-size: 39px; font-weight: 900; letter-spacing: -.05em; }
.price small { font-size: 16px; font-weight: 750; }
.price-note { min-height: 24px; color: var(--muted); font-size: 13px; }
.price-card ul { display: grid; gap: 10px; margin: 23px 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.price-card li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 900; }
.price-card .button { width: 100%; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 22px; }
.compare-table { width: 100%; min-width: 720px; border-collapse: collapse; background: #fff; }
.compare-table th, .compare-table td { padding: 18px 22px; border-bottom: 1px solid var(--line); text-align: left; }
.compare-table th { font-size: 14px; }
.compare-table th:nth-child(2) { color: var(--red); background: var(--red-soft); }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td:nth-child(2) { font-weight: 800; background: #fffafb; }

.guides { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.guide-card { padding: 24px; transition: border-color .2s, transform .2s; }
.guide-card:hover { transform: translateY(-3px); border-color: var(--red); }
.guide-card span { display: inline-flex; margin-top: 20px; color: var(--red); font-weight: 800; }

.faq-list { max-width: 850px; display: grid; gap: 12px; margin-inline: auto; }
.faq-item {
  padding: 0 22px; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: 0 8px 24px rgba(23,32,51,.035);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 21px 0; border: 0; color: var(--ink); background: transparent; text-align: left;
  font-weight: 820; cursor: pointer;
}
.faq-question::after { content: "+"; color: var(--red); font-size: 28px; font-weight: 400; }
.faq-item.is-open .faq-question::after { content: "–"; }
.faq-answer { display: none; padding: 0 50px 22px 0; color: var(--muted); }
.faq-item.is-open .faq-answer { display: block; }

/* Keep one clear support launcher; the site already includes direct WhatsApp CTAs. */
#chaty-widget-0 { display: none !important; }

.final-cta {
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 35px;
  padding: 50px; background: var(--red); border-radius: 30px;
}
.final-cta::after { content: ""; position: absolute; right: -40px; top: -95px; width: 280px; height: 280px; border: 55px solid rgba(255,255,255,.13); border-radius: 50%; }
.final-cta h2 { max-width: 680px; color: #fff; font-size: clamp(34px, 4vw, 52px); }
.final-cta p { margin: 13px 0 0; color: rgba(255,255,255,.82); }
.final-cta .button { position: relative; z-index: 2; flex: 0 0 auto; color: var(--red); background: #fff; }

.site-footer {
  margin-top: 90px; color: var(--muted); background: #fff8f8;
  border-top: 1px solid #f4dfe1;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding: 66px 0 42px; }
.footer-brand .brand { color: var(--ink); }
.footer-brand p { max-width: 360px; color: var(--muted); }
.footer-col h3 { margin-bottom: 16px; color: var(--ink); font-size: 15px; letter-spacing: 0; }
.footer-col a { display: block; margin: 9px 0; color: var(--muted); font-size: 14px; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; padding: 22px 0;
  color: var(--muted); border-top: 1px solid #f0d9dc; font-size: 13px;
}

/* Inner pages */
.site-main { min-height: 60vh; }
.narrow { max-width: 850px; }
.center-text { text-align: center; }
.center-breadcrumbs { justify-content: center; }
.page-hero {
  position: relative; overflow: hidden; padding: 92px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(227,6,19,.10), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fff8f8 100%);
  border-bottom: 1px solid #f5e4e6;
}
.page-hero::after {
  content: ""; position: absolute; right: -170px; top: -210px; width: 520px; height: 520px;
  border: 95px solid rgba(227,6,19,.035); border-radius: 50%;
}
.page-hero-compact { padding: 72px 0; }
.page-hero-grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr);
  align-items: center; gap: 72px;
}
.page-hero h1 { max-width: 780px; font-size: clamp(44px, 5.7vw, 72px); }
.page-hero-compact h1 { font-size: clamp(42px, 5vw, 64px); }
.page-lead { max-width: 760px; margin: 24px 0 30px; color: var(--muted); font-size: clamp(18px, 2vw, 21px); }
.center-text .page-lead { margin-inline: auto; }
.breadcrumbs {
  display: flex; align-items: center; gap: 9px; margin-bottom: 28px;
  color: var(--muted); font-size: 13px; font-weight: 700;
}
.breadcrumbs a:hover { color: var(--red); }
.info-panel, .editorial-card, .catalogue-summary, .reseller-dashboard-card {
  position: relative; z-index: 2; padding: 34px; background: rgba(255,255,255,.92);
  border: 1px solid #f0dfe1; border-radius: 28px; box-shadow: var(--shadow);
}
.info-panel h2, .editorial-card h2 { font-size: 30px; }
.info-panel .info-icon {
  display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px;
  color: #fff; background: var(--red); border-radius: 15px; font-weight: 900;
}
.check-list.compact { margin-bottom: 0; }
.device-picker {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
}
.device-picker a {
  display: flex; align-items: center; gap: 14px; padding: 20px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.device-picker a:hover { transform: translateY(-2px); border-color: var(--red); box-shadow: 0 12px 28px rgba(23,32,51,.06); }
.device-symbol {
  display: grid; place-items: center; width: 36px; height: 36px;
  color: var(--red); background: var(--red-soft); border-radius: 11px; font-weight: 900;
}
.guides-stack { display: grid; gap: 28px; }
.guide-detail {
  scroll-margin-top: 100px; padding: 44px; background: #fff;
  border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 14px 40px rgba(23,32,51,.045);
}
.guide-detail-heading { display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start; }
.guide-detail-heading h2 { font-size: clamp(34px,4vw,48px); }
.guide-detail-heading p:last-child { margin: 10px 0 0; color: var(--muted); }
.guide-index {
  display: grid; place-items: center; width: 58px; height: 58px;
  color: var(--red); background: var(--red-soft); border-radius: 17px; font-weight: 900;
}
.setup-steps {
  display: grid; gap: 12px; margin: 30px 0; padding: 0; counter-reset: setup; list-style: none;
}
.setup-steps li {
  position: relative; padding: 17px 18px 17px 58px; background: var(--canvas);
  border: 1px solid var(--line); border-radius: 15px;
}
.setup-steps li::before {
  counter-increment: setup; content: counter(setup);
  position: absolute; left: 16px; top: 13px; display: grid; place-items: center;
  width: 30px; height: 30px; color: #fff; background: var(--red); border-radius: 9px; font-size: 13px; font-weight: 900;
}
.guide-help {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px 22px; background: #fff8f8; border-radius: 16px;
}
.guide-help p { margin: 0; color: var(--muted); }
.guide-help a { flex: 0 0 auto; color: var(--red); font-weight: 850; }

/* SEO landing pages */
.text-only-lifestyle { grid-template-columns: 1.08fr .92fr; }
.text-only-lifestyle .lifestyle-copy { padding-left: 34px; }
.test-checklist {
  display: grid; align-content: center; gap: 12px; padding: 36px;
  background: #fff7f8; color: var(--ink); border: 1px solid #f2d7da; border-radius: 24px;
}
.test-checklist > span {
  margin-bottom: 8px; color: var(--red); font-size: 12px; font-weight: 850;
  text-transform: uppercase; letter-spacing: .12em;
}
.test-checklist strong {
  position: relative; padding: 15px 16px 15px 48px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; font-size: 14px;
}
.test-checklist strong::before {
  content: "✓"; position: absolute; left: 17px; color: var(--green); font-weight: 900;
}
.locale-guides { grid-template-columns: repeat(3,1fr); }
.locale-page .info-icon { width: 54px; }
.locale-page h1 { max-width: 830px; }

/* SEO content cluster */
.neutral-illustration {
  position: relative; overflow: hidden; padding: 30px;
  background: linear-gradient(145deg, #fff 0%, #fff5f6 100%);
  border: 1px solid #f0d9dc; border-radius: 30px; box-shadow: var(--shadow);
}
.neutral-illustration::after {
  content: ""; position: absolute; right: -45px; top: -55px; width: 180px; height: 180px;
  border: 34px solid rgba(227,6,19,.055); border-radius: 50%;
}
.neutral-illustration-label {
  position: relative; z-index: 2; display: inline-block; margin-bottom: 18px;
  color: var(--red-dark); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em;
}
.neutral-device {
  position: relative; z-index: 2; min-height: 188px; display: grid; place-items: center; align-content: center;
  padding: 28px; background: #fff; border: 8px solid var(--ink); border-radius: 24px;
  box-shadow: 0 18px 38px rgba(23,32,51,.12);
}
.neutral-device::after {
  content: ""; position: absolute; left: 44%; right: 44%; bottom: -25px; height: 25px;
  background: var(--ink); border-radius: 0 0 6px 6px;
}
.neutral-device span { width: 46px; height: 6px; margin-bottom: 20px; background: var(--red); border-radius: 20px; }
.neutral-device strong { font-size: 25px; }
.neutral-device small { margin-top: 4px; color: var(--muted); }
.neutral-flow { position: relative; z-index: 2; display: grid; gap: 9px; margin-top: 38px; }
.neutral-flow span {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; font-size: 13px; font-weight: 750;
}
.neutral-flow span::before { content: "✓"; color: var(--green); font-weight: 900; }
.answer-panel {
  display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 64px;
  padding: 42px; background: #fff8f8; border: 1px solid #f1dadd; border-radius: 28px;
}
.answer-panel h2 { font-size: clamp(32px,4vw,48px); }
.answer-panel > p { margin: 0; color: var(--muted); font-size: 19px; }
.content-steps {
  display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px;
  margin: 0; padding: 0; list-style: none;
}
.content-steps li {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 27px; background: #fff; border: 1px solid var(--line); border-radius: 22px;
}
.content-steps li > span {
  display: grid; place-items: center; width: 44px; height: 44px;
  color: #fff; background: var(--red); border-radius: 13px; font-weight: 900;
}
.content-steps h3 { font-size: 21px; }
.content-steps p { margin: 8px 0 0; color: var(--muted); }
.cluster-issues { grid-template-columns: repeat(3,1fr); }
.cluster-related { grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); }
.neutral-mini-visual {
  display: grid; grid-template-columns: 1fr repeat(3,24px); align-items: center; gap: 8px;
  margin-top: 24px; padding: 13px 14px; background: #fff8f8; border: 1px solid #f2d7da; border-radius: 13px;
}
.neutral-mini-visual span { overflow: hidden; font-size: 12px; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.neutral-mini-visual i { width: 24px; height: 8px; background: var(--red); border-radius: 10px; opacity: .25; }
.neutral-mini-visual i:nth-of-type(2) { opacity: .5; }
.neutral-mini-visual i:nth-of-type(3) { opacity: 1; }
.cta-actions { position: relative; z-index: 2; display: flex; gap: 10px; flex-wrap: wrap; }
.final-cta .button-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.55); }
.final-cta .button-light:hover { border-color: #fff; }

/* Reseller */
.reseller-dashboard-card { overflow: hidden; padding: 0; }
.dashboard-top {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.dashboard-top .status { width: 9px; height: 9px; background: var(--green); border-radius: 50%; }
.dashboard-top span:last-child { color: var(--muted); font-size: 12px; }
.dashboard-metrics { display: grid; grid-template-columns: 1fr 1fr; }
.dashboard-metrics div { padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dashboard-metrics div:nth-child(2n) { border-right: 0; }
.dashboard-metrics div:nth-last-child(-n+2) { border-bottom: 0; }
.dashboard-metrics strong, .dashboard-metrics span { display: block; }
.dashboard-metrics span { margin-top: 5px; color: var(--muted); font-size: 13px; }
.process-line { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-line article {
  position: relative; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 22px;
}
.process-line span {
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 34px;
  color: #fff; background: var(--red); border-radius: 13px; font-weight: 900;
}
.process-line h3 { font-size: 22px; }
.process-line p { color: var(--muted); }
.reseller-plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.reseller-plan {
  padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: 24px;
}
.reseller-plan.featured { border: 2px solid var(--red); box-shadow: 0 18px 45px rgba(227,6,19,.10); }
.plan-tag { display: inline-flex; padding: 5px 9px; color: var(--red-dark); background: var(--red-soft); border-radius: 999px; font-size: 11px; font-weight: 850; }
.reseller-plan h3 { margin-top: 22px; font-size: 28px; }
.reseller-plan p { color: var(--muted); }
.reseller-plan ul { display: grid; gap: 10px; padding: 0; list-style: none; color: var(--muted); }
.reseller-plan li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 900; }
.center-action { margin-top: 34px; text-align: center; }
.faq-more { margin-top: 28px; }

/* Legal and long-form content */
.legal-updated { margin: 0; color: var(--muted); font-size: 13px; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 72px; align-items: start; }
.legal-nav {
  position: sticky; top: 105px; display: grid; gap: 11px; padding: 22px;
  background: var(--canvas); border: 1px solid var(--line); border-radius: 18px;
}
.legal-nav strong { margin-bottom: 6px; }
.legal-nav a { color: var(--muted); font-size: 13px; }
.legal-nav a:hover { color: var(--red); }
.prose { color: var(--muted); font-size: 17px; }
.prose h2, .prose h3 { color: var(--ink); }
.prose h2 { margin: 48px 0 16px; font-size: clamp(28px,3vw,38px); }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 17px; }
.legal-content > section { scroll-margin-top: 110px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.legal-contact { margin-top: 48px; padding: 30px; background: #fff8f8; border-radius: 22px; }
.legal-contact h2 { margin-top: 0; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 38px; align-items: start; }
.contact-options { display: grid; gap: 16px; }
.contact-option {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 24px;
  background: var(--canvas); border: 1px solid var(--line); border-radius: 20px;
}
.contact-option .feature-icon { margin: 0; }
.contact-option h2 { font-size: 23px; }
.contact-option p { margin: 7px 0 14px; color: var(--muted); }
.contact-option > a { grid-column: 2; color: var(--red); font-weight: 800; }
.contact-form-card { padding: 36px; background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.contact-form-card h2 { margin-bottom: 24px; font-size: 34px; }
.contact-form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--ink); font-size: 14px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 14px; color: var(--ink); background: #fff;
  border: 1px solid #d9dde4; border-radius: 12px; outline: 0;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,6,19,.09);
}
.consent-field { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px !important; color: var(--muted) !important; font-weight: 500 !important; }
.consent-field input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--red); }
.form-privacy { margin: 0; color: var(--muted); font-size: 12px; }
.form-privacy a { color: var(--red); text-decoration: underline; }
.form-notice { margin-bottom: 18px; padding: 13px 15px; border-radius: 12px; font-size: 14px; }
.form-notice.error { color: #8d1620; background: #fff0f1; border: 1px solid #f6cfd3; }
.form-honeypot {
  position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important;
  overflow: hidden !important; opacity: 0 !important; pointer-events: none !important;
}

/* FAQ page and steps */
.faq-page-layout { display: grid; grid-template-columns: 310px minmax(0,1fr); gap: 40px; align-items: start; }
.faq-side-card {
  position: sticky; top: 105px; padding: 28px; background: #fff8f8; border: 1px solid #f2dfe1; border-radius: 22px;
}
.faq-side-card h2 { margin-top: 22px; font-size: 28px; }
.faq-side-card p { color: var(--muted); }
.faq-side-card .button { width: 100%; margin-top: 10px; }
.next-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.next-steps article { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.next-steps span { color: var(--red); font-weight: 900; }
.next-steps h2 { margin-top: 30px; font-size: 24px; }
.next-steps p { color: var(--muted); }
.next-steps a { color: var(--red); font-weight: 800; }

/* Catalogue */
.catalogue-summary { display: grid; gap: 4px; }
.catalogue-summary > div {
  display: grid; grid-template-columns: auto 1fr; gap: 2px 12px; padding: 17px 0; border-bottom: 1px solid var(--line);
}
.catalogue-summary > div:last-child { border-bottom: 0; }
.catalogue-summary small { grid-column: 2; color: var(--muted); }
.category-dot { width: 13px; height: 13px; margin-top: 5px; border-radius: 50%; }
.category-dot.red { background: var(--red); }
.category-dot.rose { background: #e66874; }
.category-dot.green { background: var(--green); }
.category-dot.gold { background: #d49528; }
.category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.category-grid article {
  min-height: 220px; padding: 25px; background: #fff; border: 1px solid var(--line); border-radius: 21px;
}
.category-grid span { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.category-grid h3 { margin-top: 48px; font-size: 23px; }
.category-grid p { color: var(--muted); }
.compatibility-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
  padding: 42px; background: #fff8f8; border: 1px solid #f1dadd; border-radius: 28px;
}
.compatibility-banner h2 { font-size: clamp(32px,4vw,48px); }
.compatibility-banner p { max-width: 720px; color: var(--muted); }
.compatibility-banner .button { flex: 0 0 auto; }
.transparency-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.transparency-grid article { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.transparency-grid h3 { font-size: 23px; }
.transparency-grid p { color: var(--muted); }

/* Editorial, languages, thank-you */
.editorial-card > span { display: inline-flex; margin-bottom: 34px; color: var(--red); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.editorial-card p { color: var(--muted); }
.editorial-topics { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.editorial-topics article { padding: 27px; background: #fff; border: 1px solid var(--line); border-radius: 21px; }
.editorial-topics span { color: var(--red); font-weight: 900; }
.editorial-topics h3 { margin-top: 45px; font-size: 23px; }
.editorial-topics p { color: var(--muted); }
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.post-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.post-card-image { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--canvas); }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 24px; }
.post-card-body > span { color: var(--muted); font-size: 12px; }
.post-card-body h2, .post-card-body h3 { margin-top: 14px; font-size: 23px; }
.post-card-body p { color: var(--muted); }
.post-card-body > a { color: var(--red); font-weight: 800; }
.empty-editorial { padding: 38px; text-align: center; background: var(--canvas); border-radius: 24px; }
.empty-editorial h3 { font-size: 28px; }
.empty-editorial p { color: var(--muted); }
.compliance-note { display: flex; align-items: flex-start; gap: 20px; max-width: 850px; }
.compliance-note .feature-icon { flex: 0 0 52px; margin: 0; }
.compliance-note h2 { font-size: 28px; }
.compliance-note p { color: var(--muted); }
.language-panel { padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.language-fallback { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.language-card, .language-coming {
  display: grid; grid-template-columns: auto 1fr; gap: 3px 14px; padding: 20px;
  background: var(--canvas); border: 1px solid var(--line); border-radius: 17px;
}
.language-card > span, .language-coming > span {
  grid-row: 1/3; display: grid; place-items: center; width: 46px; height: 46px;
  color: var(--red); background: var(--red-soft); border-radius: 13px; font-weight: 900;
}
.language-card small, .language-coming small { color: var(--muted); }
.language-card:hover { border-color: var(--red); }
.language-coming { opacity: .65; }
.language-help { margin: 26px 0 0; text-align: center; color: var(--muted); }
.language-help a { color: var(--red); font-weight: 800; }
.language-shortcode { display: flex; justify-content: center; }
.thank-you-section { padding: 100px 0; background: linear-gradient(135deg,#fff,#fff7f8); }
.thank-you-card { padding: 54px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 32px; box-shadow: var(--shadow); }
.success-mark {
  display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 26px;
  color: #fff; background: var(--green); border-radius: 50%; font-size: 30px; font-weight: 900;
}
.thank-you-card h1 { font-size: clamp(40px,5vw,62px); }
.thank-you-card > p:not(.kicker) { max-width: 650px; margin: 20px auto; color: var(--muted); font-size: 18px; }
.thank-you-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.thank-you-details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 38px;
  overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: 17px;
}
.thank-you-details div { padding: 18px; background: var(--canvas); }
.thank-you-details strong, .thank-you-details a { display: block; }
.thank-you-details a { color: var(--red); font-size: 14px; }
.article-hero { padding: 82px 0 60px; background: linear-gradient(135deg,#fff,#fff7f8); border-bottom: 1px solid #f3e1e3; }
.article-hero h1 { font-size: clamp(42px,5.5vw,70px); }
.article-meta { color: var(--red); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.article-image { margin-top: 48px; }
.article-image img { width: 100%; max-height: 650px; object-fit: cover; border-radius: 30px; }
.article-content { padding-top: 58px; padding-bottom: 72px; }
.article-content img { height: auto; border-radius: 18px; }
.article-content a { color: var(--red); text-decoration: underline; }
.pagination { margin-top: 42px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.pagination .page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; background: var(--canvas); border-radius: 11px; }
.pagination .current { color: #fff; background: var(--red); }
.not-found-section { padding: 110px 0; background: linear-gradient(135deg,#fff,#fff5f6); }
.not-found-card { text-align: center; }
.not-found-card > span { display: block; color: #f4c9cd; font-size: clamp(90px,18vw,190px); font-weight: 950; line-height: .8; letter-spacing: -.08em; }
.not-found-card h1 { margin-top: 20px; font-size: clamp(42px,6vw,68px); }
.not-found-card > p:not(.kicker) { max-width: 620px; margin: 20px auto; color: var(--muted); font-size: 18px; }
.not-found-card .hero-actions { justify-content: center; margin-top: 28px; }

@media (max-width: 1000px) {
  .hero-grid, .lifestyle, .text-only-lifestyle { grid-template-columns: 1fr; }
  .hero-media { min-height: 520px; max-width: 650px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-summary { min-height: 390px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .guides, .locale-guides { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .page-hero-grid > aside { max-width: 720px; }
  .answer-panel { grid-template-columns: 1fr; gap: 24px; }
  .cluster-issues { grid-template-columns: repeat(2,1fr); }
  .process-line, .category-grid, .editorial-topics { grid-template-columns: repeat(2,1fr); }
  .legal-layout, .faq-page-layout { grid-template-columns: 1fr; gap: 36px; }
  .legal-nav, .faq-side-card { position: static; }
  .legal-nav { grid-template-columns: repeat(2,1fr); }
  .legal-nav strong { grid-column: 1/-1; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 68px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; left: 14px; right: 14px; top: 76px; display: none; align-items: stretch;
    padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .main-nav .button { width: 100%; }
  .nav-language { width: 100%; height: 42px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero { padding-top: 44px; }
  .hero-grid { gap: 36px; }
  h1 { font-size: clamp(39px, 12vw, 58px); }
  .hero-media { min-height: 430px; }
  .hero-photo { left: 0; width: 100%; border-radius: 24px 24px 72px 24px; }
  .hero-card { left: 14px; bottom: 20px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 72px 0; }
  .steps, .feature-grid, .pricing-grid, .guides { grid-template-columns: 1fr; }
  .lifestyle { gap: 24px; padding: 14px; }
  .lifestyle img { height: 440px; }
  .lifestyle-copy { padding: 18px 10px 24px; }
  .text-only-lifestyle .lifestyle-copy { padding-left: 10px; }
  .test-checklist { padding: 28px 22px; }
  .review-cards { grid-template-columns: 1fr; }
  .review-card:last-child { grid-column: auto; min-height: 240px; }
  .review-card-top { align-items: flex-start; flex-direction: column; gap: 12px; }
  .price-card.featured { order: -1; }
  .final-cta { display: block; padding: 34px 26px; }
  .final-cta .button { width: 100%; margin-top: 24px; }
  .faq-item { padding-inline: 18px; }
  .faq-answer { padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { display: block; }
  .page-hero { padding: 62px 0; }
  .page-hero-compact { padding: 54px 0; }
  .page-hero h1, .page-hero-compact h1 { font-size: clamp(38px,11vw,52px); }
  .device-picker, .process-line, .reseller-plans, .category-grid, .editorial-topics,
  .post-grid, .next-steps, .transparency-grid { grid-template-columns: 1fr; }
  .locale-guides { grid-template-columns: 1fr; }
  .content-steps, .cluster-issues { grid-template-columns: 1fr; }
  .answer-panel { padding: 30px 23px; }
  .neutral-illustration { padding: 22px; }
  .cta-actions { display: block; }
  .cta-actions .button { width: 100%; }
  .guide-detail { padding: 26px 18px; }
  .guide-detail-heading { grid-template-columns: 1fr; gap: 14px; }
  .guide-index { width: 50px; height: 50px; }
  .guide-help, .compatibility-banner { display: block; }
  .guide-help a { display: inline-flex; margin-top: 14px; }
  .compatibility-banner { padding: 30px 24px; }
  .compatibility-banner .button { width: 100%; margin-top: 18px; }
  .dashboard-metrics { grid-template-columns: 1fr; }
  .dashboard-metrics div { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .dashboard-metrics div:last-child { border-bottom: 0 !important; }
  .legal-nav { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 27px 20px; }
  .contact-option { grid-template-columns: 1fr; }
  .contact-option > a { grid-column: 1; }
  .language-panel { padding: 26px 18px; }
  .language-fallback, .thank-you-details { grid-template-columns: 1fr; }
  .thank-you-section { padding: 62px 0; }
  .thank-you-card { padding: 38px 20px; }
  .thank-you-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
