/* hidemevpnreview.com — style.css
   Tokens measured from https://hide.me/ via designlang (see ../../design-source/hide-me-DESIGN.md).
   primary(yellow CTA) #fad033 · secondary/accent(teal-blue) #15749d · accent-light #2aa9e0
   navy hero/header bg #142e58 -> #0b3754 · neutrals #edf3f5 / #e1e8ed / #555555 / #1c2022 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --primary: #fad033;         /* hide.me CTA yellow */
  --primary-dark: #e0ba17;
  --navy: #142e58;            /* header / hero background */
  --navy-2: #0b3754;          /* hero gradient end */
  --navy-3: #0d213f;          /* footer, slightly darker */
  --accent: #15749d;          /* dominant teal-blue (links/icons) */
  --accent-light: #2aa9e0;
  --gold: #fad033;
  --dark: #0d213f;
  --header-bg: #142e58;
  --bg: #FFFFFF;
  --surface: #edf3f5;
  --surface-2: #e1e8ed;
  --text: #1c2022;
  --text-muted: #555555;
  --green: #1aae5b;
  --red: #e0473c;
  --border: #e1e8ed;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  --shadow-card: 0 2px 12px rgba(20,46,88,.08), 0 1px 3px rgba(20,46,88,.06);
  --shadow-lg: 0 10px 28px rgba(20,46,88,.18);
  --transition: 0.2s ease;
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  /* motion tokens — measured on hide.me via designlang (design-source/hide-me-motion-tokens.json:
     duration xs=120ms sm=200ms md=300ms lg=450ms, easing family "ease-in-out", feel="smooth").
     Curves are the standard strong UI curves (built-in `ease`/`ease-out` read as too weak). */
  --dur-press: 0.12s;   /* xs — button/press feedback */
  --dur-fast: 0.2s;     /* sm — dropdowns, tooltips */
  --dur-md: 0.3s;       /* md — accordion, mobile menu */
  --dur-reveal: 0.45s;  /* lg — scroll-reveal entrances */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);        /* entering/exiting */
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);    /* moving/morphing on screen */
  --ease-standard: cubic-bezier(0.23, 1, 0.32, 1);   /* alias kept for existing references */
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.65; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin-top: 0; line-height: 1.2; font-family: 'Poppins', 'Inter', Arial, sans-serif; font-weight: 700; color: var(--navy); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--space-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ─── SCROLL REVEAL (source is scroll-linked per designlang; applied only to below-the-fold
   content blocks — never .hero/.nav-links/.btn-cta, which the behavioral QA gate measures).
   Gated behind .js on <html> (set immediately by main.js) so content stays fully visible
   if JS fails to load — this is progressive enhancement, not a requirement to see the page. */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out); }
.js .reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ─── HEADER ─── */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--header-bg); border-bottom: 2px solid var(--gold); }
.nav { max-width: 1220px; margin: 0 auto; display: flex; align-items: center; padding: 0 var(--space-sm); height: 68px; gap: var(--space-sm); }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo { height: 30px; width: auto; max-width: 160px; object-fit: contain; }
.brand-name { color: #fff; font-weight: 700; font-size: 16px; letter-spacing: .2px; }
.brand-name small { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 10.5px; color: rgba(255,255,255,.55); letter-spacing: .2px; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; position: relative; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600;
  padding: 9px 13px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap; display: inline-block;
}
.nav-links > li > a:hover { color: #fff; background: rgba(255,255,255,.1); text-decoration: none; }
.nav-links > li > a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.14); }

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

/* ─── DROPDOWN (nav "Compare" + lang switcher share this pattern) ─── */
.dropdown { position: relative; }
.dropdown-btn {
  background: none; border: none; cursor: pointer; font: inherit;
  color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600;
  padding: 9px 13px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 6px;
  transition: color var(--transition), background var(--transition);
}
.dropdown-btn:hover { color: #fff; background: rgba(255,255,255,.1); }
.dropdown-btn i.chev { font-size: 10px; transition: transform var(--dur-fast) var(--ease-out); }
.dropdown.open .dropdown-btn i.chev, .dropdown:hover .dropdown-btn i.chev { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute; top: 100%; left: 0; margin-top: 0; padding-top: 8px;
  display: none; min-width: 240px; z-index: 1000;
  opacity: 0; transform: translateY(-4px);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.lang-switcher .dropdown-panel { left: auto; right: 0; min-width: 160px; }
.dropdown:hover .dropdown-panel, .dropdown:focus-within .dropdown-panel, .dropdown.open .dropdown-panel {
  display: block; opacity: 1; transform: translateY(0);
}
.dropdown-panel-inner {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-lg); padding: 6px;
}
.dropdown-panel a {
  display: block; padding: 10px 14px; color: var(--text); font-size: 14px; font-weight: 500;
  border-radius: var(--radius-sm); transition: background var(--transition); white-space: nowrap;
}
.dropdown-panel a:hover { background: var(--surface); text-decoration: none; }

.lang-btn {
  background: none; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85);
  padding: 7px 12px; border-radius: var(--radius-sm); cursor: pointer;
  font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px;
  transition: border-color var(--transition);
}
.lang-btn:hover { border-color: rgba(255,255,255,.7); }
.lang-btn i { font-size: 11px; }

/* ─── CTA BUTTONS (canonical class: .btn-cta — required by qa_browser.py) ─── */
.btn-cta {
  background: var(--primary); color: var(--navy);
  padding: 11px 22px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 700;
  transition: background-color var(--dur-fast) var(--ease-out), transform var(--dur-press) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap; display: inline-block; border: none; cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .btn-cta:hover { background: var(--primary-dark); text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(250,208,51,.35); }
}
.btn-cta:active { transform: translateY(0) scale(0.97); box-shadow: none; transition-duration: var(--dur-press); }
.btn-cta.btn-lg { padding: 16px 34px; font-size: 17px; border-radius: var(--radius-md); }
.btn-cta.btn-sm { padding: 8px 16px; font-size: 13px; }

.btn-outline {
  border: 2px solid var(--accent); color: var(--accent); background: none;
  padding: 9px 20px; border-radius: var(--radius-md); font-size: 14px; font-weight: 700;
  display: inline-block; transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-press) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover { background: var(--accent); color: #fff; text-decoration: none; }
}
.btn-outline:active { transform: scale(0.97); transition-duration: var(--dur-press); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: #fff; font-size: 22px; padding: 6px; order: 99; }

/* ─── TRUSTBAR / BREADCRUMB ─── */
.trustbar { background: var(--navy-2); color: rgba(255,255,255,.88); font-size: 13.5px; font-weight: 500; text-align: center; padding: 9px 0; }
.trustbar strong { color: var(--gold); }
.breadcrumb { padding: 14px 0 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--accent); }

/* ─── HERO (shared across every page — text-align consistency is a hard QA rule) ─── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.hero-home { padding: 58px var(--space-sm) 46px; }
.hero-page { padding: 44px var(--space-sm) 40px; }
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .4px; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.hero h1 { font-size: clamp(28px, 4.6vw, 50px); font-weight: 800; margin-bottom: 14px; color: #fff; max-width: 22ch; margin-left: auto; margin-right: auto; }
.hero p { font-size: clamp(15.5px, 2.2vw, 18.5px); color: rgba(255,255,255,.82); margin-bottom: var(--space-md); max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* seal / hero visual (SVG) */
.hero-visual { margin: 28px auto 0; max-width: 220px; }
.hero-visual svg { width: 100%; height: auto; }

/* ─── STAT GRID (§9: clear vertical spacing between number and label) ─── */
.section-tight { padding: 34px var(--space-sm); background: var(--surface); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); max-width: 1000px; margin: 0 auto; text-align: center; }
.stat-cell .val { font-size: 30px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.stat-cell .lbl { font-size: 13px; color: var(--text-muted); margin-top: 12px; line-height: 1.5; }

/* ─── GENERIC SECTIONS ─── */
.section { padding: var(--space-xl) var(--space-sm); }
.bg-alt { background: var(--surface); }
.section-head { max-width: 720px; margin: 0 auto var(--space-lg); text-align: center; }
.section-head h2 { font-size: clamp(24px, 3.6vw, 36px); margin-bottom: 10px; }
.section-head .sub { font-size: 16px; color: var(--text-muted); }
article > .container { padding-top: 8px; padding-bottom: 56px; }
.article-intro { font-size: 17px; color: var(--text-muted); max-width: 760px; margin: 14px 0 8px; line-height: 1.75; }

/* ─── VERDICT BOX ─── */
.verdict-box { background: #fff; border: 1px solid var(--border); border-left: 5px solid var(--gold); border-radius: var(--radius-lg); padding: var(--space-md) var(--space-lg); box-shadow: var(--shadow-card); max-width: 880px; margin: 0 auto; }
.stamp-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(26,174,91,.1); color: var(--green); font-weight: 700; font-size: 13px; padding: 5px 12px; border-radius: var(--radius-full); margin-bottom: 12px; }
.verdict-box p { font-size: 16px; color: var(--text); line-height: 1.75; margin: 0; }

/* ─── REVIEW CAROUSEL ─── */
.carousel-wrap { position: relative; display: flex; align-items: center; gap: 10px; }
.carousel { display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth; padding: 6px 2px 18px; scrollbar-width: none; }
.carousel::-webkit-scrollbar { display: none; }
.carousel-btn {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; color: var(--navy); font-size: 20px; cursor: pointer; display: flex;
  align-items: center; justify-content: center; box-shadow: var(--shadow-card);
  transition: background-color var(--dur-fast) var(--ease-out), transform var(--dur-press) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .carousel-btn:hover { background: var(--surface); transform: scale(1.06); }
}
.carousel-btn:active { transform: scale(0.94); transition-duration: var(--dur-press); }
.review-card {
  flex: 0 0 300px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow var(--dur-md) var(--ease-out), transform var(--dur-md) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
}
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.review-title { font-weight: 700; font-size: 14.5px; color: var(--navy); margin: 0; }
.quote { font-size: 14.5px; color: var(--text); line-height: 1.65; margin: 0; flex: 1; }
.review-card .meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.platform-pill { background: var(--surface); color: var(--accent); font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); }
.translated-tag { font-size: 11px; color: var(--text-muted); font-style: italic; }

/* ─── REVIEWS DIRECTORY (filter tabs + rating filter + grid) ─── */
.filter-block { margin: 18px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-row .filter-label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--text-muted); margin-right: 4px; }
.tab-btn, .rating-btn {
  background: #fff; border: 1px solid var(--border); color: var(--text);
  padding: 8px 15px; border-radius: var(--radius-full); font-size: 13.5px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-press) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .tab-btn:hover, .rating-btn:hover { border-color: var(--accent); color: var(--accent); }
}
.tab-btn:active, .rating-btn:active { transform: scale(0.96); transition-duration: var(--dur-press); }
.tab-btn[aria-selected="true"], .rating-btn[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.review-grid .review-card { flex: none; }
.review-grid .review-card.is-hidden { display: none; }
.review-count-note { font-size: 13.5px; color: var(--text-muted); margin: 4px 0 0; }

/* ─── COMPARISON TABLE ─── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table.cmp { width: 100%; border-collapse: collapse; font-size: 14.5px; background: #fff; }
table.cmp th, table.cmp td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
table.cmp thead th { background: var(--navy); color: #fff; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .3px; }
table.cmp tbody tr:last-child td { border-bottom: none; }
table.cmp td.hide-col, table.cmp th.hide-col { background: rgba(250,208,51,.12); font-weight: 700; }
.hide-flag { display: inline-block; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: var(--radius-full); margin-left: 8px; letter-spacing: .3px; }
.check-yes { color: var(--green); font-weight: 800; }
.check-no { color: var(--red); font-weight: 800; }

/* ─── VS GRID (comparison hub cards) ─── */
.vs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 8px; }
.vs-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; transition: box-shadow var(--dur-md) var(--ease-out), transform var(--dur-md) var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .vs-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); text-decoration: none; }
}
.vs-card:active { transform: scale(0.98); transition-duration: var(--dur-press); }
.vs-title { font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.vs-price { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.vs-arrow { font-size: 13.5px; font-weight: 700; color: var(--accent); }

/* ─── WHY GRID (vs/[competitor] pages) ─── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.why-card { border-radius: var(--radius-lg); padding: var(--space-md); border: 1px solid var(--border); }
.why-card.hide-win { background: rgba(250,208,51,.08); border-color: rgba(250,208,51,.5); }
.why-card.other-win { background: var(--surface); }
.why-card h3 { font-size: 17px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ─── FAQ ACCORDION ─── */
.faq-cat { margin-bottom: 34px; }
.faq-cat h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .4px; color: var(--accent); margin-bottom: 6px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 16px 0; font-size: 15.5px; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q .plus { color: var(--accent); flex-shrink: 0; font-size: 20px; font-weight: 400; transition: transform var(--dur-fast) var(--ease-out); line-height: 1; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-md) var(--ease-standard), opacity var(--dur-md) var(--ease-standard); opacity: 0; }
.faq-item.open .faq-a { opacity: 1; }
.faq-a p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin: 0 0 16px; }

/* ─── 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); }
.review-section { margin-bottom: 30px; }
.review-section h2 { font-size: 21px; margin-bottom: 10px; }
.review-section p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin: 0; }

/* ─── CTA BAND ─── */
.cta-band { text-align: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); border-radius: var(--radius-xl); padding: 44px var(--space-md); color: #fff; }
.cta-band h2 { color: #fff; font-size: clamp(22px, 3.4vw, 32px); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.82); margin-bottom: 22px; font-size: 15.5px; }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy-3); color: rgba(255,255,255,.7); padding: var(--space-xl) var(--space-sm) var(--space-md); }
.footer-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-lg); margin-bottom: var(--space-lg); }
.footer-heading { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: var(--space-sm); text-transform: uppercase; letter-spacing: .5px; }
.footer-about { font-size: 13.5px; line-height: 1.7; max-width: 280px; margin-bottom: 10px; }
.footer-grid a { display: block; color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 9px; transition: color var(--transition); }
.footer-grid a:hover { color: #fff; text-decoration: none; }
.footer-bottom { max-width: 1140px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.1); padding-top: var(--space-sm); display: flex; flex-direction: column; gap: 6px; }
.footer-bottom span { font-size: 12.5px; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav { padding: 0 8px; }
  /* [§11] the tagline made .brand ~350px wide with flex-shrink:0, pushing the hamburger off
     the visible viewport (clipped by overflow-x:hidden, not caught by the generic overflow
     check but caught by the hamburger-position check). Drop the tagline and let brand shrink. */
  .brand { flex-shrink: 1; min-width: 0; overflow: hidden; }
  .brand-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand-name small { display: none; }
  .nav-links {
    display: none; position: absolute; top: 100%; 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,.24);
    padding: 12px 0; z-index: 999;
    /* entrance: fades/slides in from the header edge it drops from (§10: still drops below
       header, still no internal scrollbar — only opacity/transform + a discrete display swap
       are animated). Kept short (150ms) so it settles well inside the 250ms window the
       automated open/auto-close-on-scroll checks wait on. */
    opacity: 0; transform: translateY(-6px);
    transition: opacity 0.15s var(--ease-out), transform 0.15s var(--ease-out), display 0.15s allow-discrete;
  }
  .nav-links.open { display: flex; opacity: 1; transform: translateY(0); }
  @starting-style {
    .nav-links.open { opacity: 0; transform: translateY(-6px); }
  }
  .nav-links > li { width: 100%; text-align: center; }
  .nav-links > li > a { display: block; width: 100%; padding: 14px 0; font-size: 17px; }
  .nav-links .dropdown-btn { width: 100%; justify-content: center; padding: 14px 0; font-size: 17px; }
  .nav-links .dropdown-panel { position: static; padding-top: 0; min-width: 0; display: none; }
  .nav-links .dropdown.open .dropdown-panel, .nav-links .dropdown:focus-within .dropdown-panel { display: block; }
  .nav-links .dropdown-panel-inner { box-shadow: none; border: none; background: rgba(255,255,255,.04); border-radius: 0; }
  .nav-links .dropdown-panel a { color: rgba(255,255,255,.85); text-align: center; }
  .nav-links .dropdown-panel a:hover { background: rgba(255,255,255,.08); }

  .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 rgba(255,255,255,.12); 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; }

  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md) var(--space-sm); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
