/* CyberGhostReview.com — style.css
   Tokens measured from https://www.cyberghostvpn.com/ via designlang (primary #ffcc00,
   secondary/verified #4ba920, accent #edf6e8, Montserrat, radii 3/8/12/50, see
   design-source/cyberghostvpn-com-DESIGN.md). Header/menu/CTA-centering structure is the
   proven scaffold system (website-quality-standards.md) — do not restructure those selectors.
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --primary: #ffcc00;
  --primary-dark: #d9ad00;
  --verified: #4ba920;
  --verified-dark: #3d8a1c;
  --accent: #edf6e8;
  --gold: #ffcc00;
  --ink: #212529;
  --dark: #001d2f;
  --header-bg: #001d2f;
  --header-bg-2: #242538;
  --bg: #ffffff;
  --surface: #f7f9f8;
  --surface-2: #edf6e8;
  --text: #212529;
  --text-muted: #747474;
  --green: #4ba920;
  --red: #ff3e3e;
  --border: #cdd1d7;
  --line-dark: #242538;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 24px;
  --shadow-card: 0 2px 12px rgba(15,20,32,.08), 0 1px 3px rgba(15,20,32,.06);
  --shadow-lg: 0 10px 32px rgba(15,20,32,.16);
  --transition: 0.2s ease;
  --dur-fast: 0.15s;
  --dur-md: 0.22s;
  --ease: ease;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', monospace;
  --container: 1200px;
}

:root[lang^="zh"] {
  --font-display: 'Montserrat', "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: 'Montserrat', "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin-top: 0; line-height: 1.2; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }

/* ─── HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--header-bg);
  border-bottom: 2px solid var(--gold);
}
.nav {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 var(--space-sm);
  height: 66px; gap: var(--space-sm);
}
.brand { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo { height: 30px; width: auto; max-width: 180px; object-fit: contain; }
.brand-suffix { font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #9aa5bd; padding: 3px 8px; border: 1px solid var(--line-dark); border-radius: 20px; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-links > li > a {
  color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500;
  padding: 8px 13px; border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap; display: block;
}
.nav-links > li > a:hover,
.nav-links > li > a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.08); }

.nav-right { display: flex; align-items: center; gap: var(--space-sm); flex-shrink: 0; margin-left: auto; }
.mobile-lang { display: none; }

/* ─── DROPDOWN / LANGUAGE SWITCHER ─── */
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: 100%; right: 0;
  padding-top: 8px; display: none; min-width: 168px; z-index: 1000;
}
.dropdown-panel-inner {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* No entrance animation here on purpose: this toggles via display:none/block (required for the
   hover-contiguous-area trick that keeps it open during slow cursor travel — see .dropdown-panel),
   and a language switcher opened many times a session is exactly the tier where the right call is
   "fast and subtle, or nothing" — keyframes would also restart from zero on rapid re-hover. */
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel,
.dropdown.open .dropdown-panel { display: block; }
.dropdown-panel a { display: block; padding: 10px 16px; color: var(--text); font-size: 14px; transition: background var(--dur-fast) var(--ease); white-space: nowrap; }
.dropdown-panel a:hover { background: var(--surface); }
.dropdown-panel a[aria-current="true"] { color: var(--verified-dark); font-weight: 600; }

.lang-btn {
  background: none; border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.9); padding: 7px 12px;
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: 13px; display: flex; align-items: center; gap: 6px;
  transition: border-color var(--dur-fast) var(--ease);
  font-family: var(--font-body);
}
.lang-btn:hover { border-color: rgba(255,255,255,.7); }
.lang-btn i { font-size: 11px; }

/* ─── CTA BUTTON ─── */
.btn-cta {
  background: var(--primary); color: var(--ink);
  padding: 10px 20px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 700;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap; display: inline-block; border: none; cursor: pointer;
}
.btn-cta:hover { background: var(--primary-dark); box-shadow: var(--shadow-card); }
.btn-cta:active { transform: translateY(0); }

.btn-cta-lg {
  background: var(--primary); color: var(--ink);
  padding: 16px 38px; border-radius: var(--radius-md);
  font-size: 18px; font-weight: 800; display: inline-block;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.btn-cta-lg:hover { background: var(--primary-dark); box-shadow: var(--shadow-lg); }

.btn-outline { border: 2px solid var(--ink); color: var(--ink); padding: 10px 20px; border-radius: var(--radius-md); font-size: 14px; font-weight: 700; display: inline-block; transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { border: 1px solid var(--border); color: var(--ink); padding: 10px 20px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; display: inline-block; transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.btn-ghost:hover { background: var(--surface); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: #fff; font-size: 22px; padding: 6px; order: 99; transition: transform var(--dur-fast) var(--ease); }
.nav-toggle:active { transform: scale(0.9); }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 10px var(--space-sm); }
.trust-bar-inner { max-width: var(--container); margin: 0 auto; text-align: center; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.01em; }

/* ─── HERO ─── */
.hero { background: linear-gradient(150deg, var(--header-bg) 0%, var(--header-bg-2) 100%); color: #fff; padding: var(--space-xl) var(--space-sm) var(--space-lg); position: relative; overflow: hidden; }
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,204,0,.14); border: 1px solid rgba(255,204,0,.4); color: var(--gold); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: var(--space-md); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em; }
.hero h1 { font-size: clamp(28px, 5vw, 50px); font-weight: 800; margin-bottom: var(--space-sm); color: #fff; }
.hero p { font-size: clamp(16px, 2.3vw, 19px); color: rgba(255,255,255,.82); margin-bottom: var(--space-lg); max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.hero-cta { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.hero .btn-ghost:hover { background: rgba(255,255,255,.08); }

/* stat grid */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin: var(--space-lg) auto 0; max-width: var(--container); }
.stat-cell { background: var(--bg); padding: 22px 16px; text-align: center; }
.stat-cell .val { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--ink); display: block; }
.stat-cell .lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; display: block; }

/* ─── SECTIONS ─── */
.section { padding: var(--space-xl) var(--space-sm); }
.section-alt { background: var(--surface); }
.section-tight { padding: 40px var(--space-sm); }
.container { max-width: var(--container); margin: 0 auto; }
.section-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--verified-dark); margin-bottom: var(--space-xs); }
.section-title { font-size: clamp(24px, 4vw, 38px); font-weight: 800; margin-bottom: var(--space-sm); }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 640px; margin-bottom: var(--space-lg); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* eyebrow / breadcrumb */
.eyebrow { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--verified-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--verified); display: inline-block; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-muted); padding: 16px var(--space-sm) 0; max-width: var(--container); margin: 0 auto; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .crumb-sep { margin: 0 8px; color: var(--border); }
.breadcrumb span:last-child { color: var(--ink); }

/* ─── FEATURE GRID ─── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-md); }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); transition: box-shadow var(--dur-md) var(--ease-out), transform var(--dur-md) var(--ease-out); }
.feature-card:hover { box-shadow: var(--shadow-card); }
.feature-icon { width: 50px; height: 50px; border-radius: var(--radius-md); background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: var(--space-sm); color: var(--verified-dark); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* verdict callout */
.verdict-box { background: #fff; border: 1px solid var(--border); border-left: 6px solid var(--verified); border-radius: var(--radius-lg); padding: 28px 30px; box-shadow: var(--shadow-card); }
.verdict-box .stamp-tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--verified-dark); background: var(--accent); padding: 4px 10px; border-radius: 20px; margin-bottom: 12px; }
.verdict-box p { color: var(--text); }
.verdict-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }

/* caution / caveat callout (honest-review notes) */
.caveat-box { border-radius: var(--radius-lg); padding: 22px 24px; margin: 24px 0; border: 1px solid #ead9b8; background: #fbf6ec; }
.caveat-box h3 { font-size: 1rem; margin-bottom: 10px; color: var(--ink); }
.caveat-box p:last-child { margin-bottom: 0; }
.caveat-box .icon { font-size: 1.3rem; margin-right: 8px; }

/* ─── REVIEW CAROUSEL ─── */
.carousel-wrap { position: relative; }
.carousel { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 6px 22px; -webkit-overflow-scrolling: touch; }
.carousel::-webkit-scrollbar { height: 8px; }
.carousel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 8px; }
.review-card { scroll-snap-align: start; flex: 0 0 320px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 12px; transition: box-shadow var(--dur-md) var(--ease); }
.review-card:hover { box-shadow: var(--shadow-lg); }
.review-grid .review-card { flex: none; }
/* Carousel entrance (homepage + full-review page only — occasional-view marketing carousels,
   not the dense /reviews data grid, which never gets a decorative entrance): staggered
   fade+rise on scroll into view, driven by main.js adding .in-view via IntersectionObserver. */
.carousel .review-card { opacity: 0; transform: translateY(14px); transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out), box-shadow var(--dur-md) var(--ease); }
.carousel .review-card.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .carousel .review-card { opacity: 1; transform: none; }
}
/* Review-database filter feedback: one cheap opacity dip on the whole grid (not per-card —
   100+ cards re-laying out per keystroke would be wasteful), toggled by main.js around the
   show/hide pass so a filter click reads as a state change instead of an instant jump-cut. */
.review-grid { transition: opacity 120ms var(--ease-out); }
.review-grid.is-filtering { opacity: 0.45; }
.review-card .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; text-shadow: 0 0 0.5px rgba(0,0,0,.35); }
.review-card .quote { font-size: 0.95rem; flex: 1; color: var(--text); }
.review-card .meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); border-top: 1px dashed var(--border); padding-top: 10px; }
.platform-pill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 20px; background: var(--surface); font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink); }
.translated-tag { font-style: italic; color: var(--text-muted); font-size: 0.7rem; }
.review-author { color: var(--text-muted); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: #fff; border: 1px solid var(--border); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; box-shadow: var(--shadow-card); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; z-index: 5; transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out); }
.carousel-btn:hover { box-shadow: var(--shadow-lg); }
.carousel-btn.prev { left: -8px; } .carousel-btn.next { right: -8px; }
@media (max-width: 720px) { .carousel-btn { display: none; } }

/* ─── REVIEW FILTER TABS (platform + rating) ─── */
.filter-row { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab-btn { font-family: var(--font-mono); font-size: 0.8rem; padding: 9px 16px; border-radius: 20px; border: 1px solid var(--border); background: #fff; cursor: pointer; color: var(--ink); transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
.tab-btn:hover { border-color: var(--ink); }
.tab-btn[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.tab-btn .star-ico { color: var(--gold); }
.filter-count { font-size: 0.85rem; color: var(--text-muted); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.review-empty { padding: 40px 0; text-align: center; color: var(--text-muted); display: none; }

/* ─── TABLES (comparison) ─── */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-card); }
table.cmp { width: 100%; border-collapse: collapse; font-size: 0.93rem; min-width: 600px; }
table.cmp th, table.cmp td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
table.cmp thead th { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); background: var(--surface); border-bottom: 2px solid var(--border); }
table.cmp tbody tr:last-child td { border-bottom: none; }
table.cmp td.cg-col, table.cmp th.cg-col { background: var(--accent); font-weight: 600; }
.check-yes { color: var(--verified-dark); font-weight: 700; }
.check-no { color: var(--red); }
.cg-flag { display: inline-block; font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; background: var(--verified); color: #fff; padding: 2px 8px; border-radius: 12px; margin-left: 8px; letter-spacing: 0.05em; }

/* ─── vs cards (hub) ─── */
.vs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.vs-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-card); text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: 10px; transition: transform var(--dur-md) var(--ease-out), box-shadow var(--dur-md) var(--ease-out); }
.vs-card:hover { box-shadow: var(--shadow-lg); }
.vs-card .vs-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.vs-card .vs-price { font-family: var(--font-mono); color: var(--text-muted); font-size: 0.84rem; }
.vs-card .vs-arrow { margin-top: auto; color: var(--verified-dark); font-weight: 600; font-size: 0.9rem; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); }
.why-card.cg { background: var(--accent); border-color: #cfe7c1; }
.why-card.other { background: #fff; }
.why-card h3 { font-size: 1.02rem; margin-bottom: 10px; }

/* ─── evidence (real cited data from cyberghostvpn.com) ─── */
.evidence-block { margin: 0 0 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.evidence-block .ev-head { display: flex; align-items: center; gap: 10px; padding: 14px 20px; background: var(--surface); border-bottom: 1px solid var(--border); font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.evidence-block .ev-body { padding: 18px 20px; }
.evidence-callout { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; background: var(--header-bg); color: #d7e1ee; border-radius: var(--radius-lg); margin: 28px 0; }
.evidence-callout h3 { color: #fff; font-size: 1.02rem; margin-bottom: 8px; }
.evidence-callout p { margin-bottom: 0; font-size: 0.93rem; }
.evidence-callout .icon { font-size: 1.5rem; line-height: 1; flex: none; color: var(--gold); }
@media (max-width: 620px) { .evidence-callout { flex-direction: column; gap: 10px; } }

/* pricing snapshot (source-cited) */
.price-snap { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.price-cell { background: #fff; padding: 20px 16px; text-align: center; }
.price-cell.mid { background: var(--accent); }
.price-cell .plan { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.05em; }
.price-cell .amt { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--ink); margin-top: 8px; display: block; }
.price-cell .sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; display: block; }
@media (max-width: 640px) { .price-snap { grid-template-columns: 1fr; } }

/* checklist reproduced from source (cited) */
.spec-checklist { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px 24px; }
@media (max-width: 700px) { .spec-checklist { grid-template-columns: 1fr; } }
.spec-checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; padding: 4px 0; }
.spec-checklist li::before { content: '\2713'; color: var(--verified-dark); font-weight: 700; flex-shrink: 0; }

/* ─── FAQ ─── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-cat { margin-bottom: 34px; }
.faq-cat h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 4px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: var(--space-sm) 0; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--text); font-family: var(--font-body); }
.faq-q .plus { color: var(--verified-dark); flex-shrink: 0; transition: transform var(--dur-md) var(--ease-in-out); font-family: var(--font-mono); font-size: 1.2rem; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-md) var(--ease-out), opacity var(--dur-md) var(--ease-out), padding var(--dur-md) var(--ease-out); opacity: 0; padding: 0 0 0; }
.faq-a p { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 75ch; }
.faq-item.open .faq-a { max-height: 600px; opacity: 1; padding: 0 0 var(--space-sm); }

/* ─── article / long-form review ─── */
.article-intro { max-width: 74ch; margin: 0 auto 36px; font-size: 1.06rem; color: var(--text-muted); }
.review-section { max-width: 74ch; margin: 0 auto 40px; }
.review-section h2 { font-size: 1.35rem; border-bottom: 2px solid var(--border); padding-bottom: 10px; margin-bottom: 14px; }
.review-section p { color: var(--text); }
.article-col { max-width: 980px; }
.article-col .article-intro, .article-col .review-section { max-width: none; }
.article-col .article-intro, .article-col .review-section > p, .article-col .review-section > ul { max-width: 74ch; }
.article-col h1 { max-width: 24ch; margin-left: auto; margin-right: auto; }

/* ─── FOOTER ─── */
.site-footer { background: var(--header-bg); color: #b9c2d6; padding: var(--space-xl) var(--space-sm) var(--space-md); margin-top: var(--space-lg); }
.footer-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-lg); margin-bottom: var(--space-lg); }
.footer-brand .logo-footer { height: 30px; width: auto; filter: brightness(0) invert(1); margin-bottom: var(--space-sm); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; color: #9aa5bd; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: var(--space-sm); text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #b9c2d6; font-size: 14px; transition: color var(--dur-fast) var(--ease); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { max-width: var(--container); margin: 0 auto; border-top: 1px solid var(--line-dark); padding-top: var(--space-sm); display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; margin: 0; color: #7f8aa3; max-width: 620px; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero { background: linear-gradient(150deg, var(--header-bg) 0%, var(--header-bg-2) 100%); color: #fff; text-align: center; padding: 56px var(--space-sm) 40px; }
.page-hero h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; margin-bottom: var(--space-sm); color: #fff; max-width: 26ch; margin-left: auto; margin-right: auto; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto; }

/* ─── PROSE ─── */
.prose { max-width: 800px; margin: 0 auto; font-size: 15px; line-height: 1.8; }
.prose h2 { font-size: 22px; margin-top: 40px; margin-bottom: 12px; }
.prose p { margin-bottom: 16px; color: var(--text-muted); }
.prose ul { margin: 12px 0 16px 24px; list-style: disc; }
.prose ul li { color: var(--text-muted); margin-bottom: 6px; }

/* Hover-only lift, gated so a tap on touch doesn't leave the element stuck mid-transform */
@media (hover: hover) and (pointer: fine) {
  .feature-card:hover { transform: translateY(-3px); }
  .carousel-btn:hover { transform: translateY(-50%) scale(1.06); }
  .vs-card:hover { transform: translateY(-3px); }
  .btn-cta:hover { transform: translateY(-1px); }
  .btn-cta-lg:hover { transform: translateY(-2px); }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav { padding: 0 8px; }
  .nav-links {
    /* top: 100% resolves against .site-header's PADDING box (border excluded per spec), so the
       2px border-bottom on .site-header must be added explicitly or the menu sits 2px under the
       header's true visual edge — intermittently tripping the "drops below header" check. */
    display: none; position: absolute; top: calc(100% + 2px); left: 0; right: 0;
    flex-direction: column; align-items: center; height: auto; max-height: none; overflow: visible;
    background: var(--header-bg); box-shadow: 0 8px 16px rgba(0,0,0,.3); padding: 12px 0; z-index: 999;
    transition: none;
  }
  .nav-links.open { display: flex; animation: menuDrop var(--dur-md) var(--ease-out); }
  @keyframes menuDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
  .nav-links > li { width: 100%; text-align: center; }
  .nav-links > li > a { display: block; width: 100%; padding: 14px 0; font-size: 17px; }

  .nav-right .lang-switcher { display: none; }
  .nav-right .btn-cta { display: none; }
  .nav-toggle { display: block; }

  .mobile-lang { display: flex; justify-content: center; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line-dark); width: 100%; }
  .nav-links li.mobile-lang a { display: inline-block; width: auto; padding: 4px 10px; font-size: 15px; line-height: 1.4; white-space: nowrap; color: rgba(255,255,255,.75); }
  .nav-links li.mobile-lang a.active { color: var(--gold); font-weight: 700; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .price-snap { grid-template-columns: 1fr; }
  .spec-checklist { grid-template-columns: 1fr; }

  .btn-cta-lg, .btn-cta, .hero-cta a, .verdict-actions a {
    display: block; margin-left: auto; margin-right: auto; text-align: center; width: max-content; max-width: 90%;
  }
  .hero-cta { flex-direction: column; align-items: center; }
  .verdict-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.7rem; }
  .section-title { font-size: 1.4rem; }
}

/* ── Header overflow-proofing at narrower desktop widths ── */
@media (max-width: 1180px) {
  .nav { gap: 10px; }
  .nav-links { gap: 2px; }
  .nav-links > li > a { font-size: 0.82rem; padding: 8px 9px; }
  .brand-suffix { display: none; }
}
