/* AdGuard VPN Review — style.css
   Tokens mapped directly from designlang extraction of adguard-vpn.com
   (design-source/adguard-vpn-com-DESIGN.md): primary #74a352, secondary #b2cc9e,
   accent #67b279, bg #ffffff, fg #000000, neutrals #131313/#5b5b5b/#e4e4e4, Roboto
   typeface, radii 2/8/16/50, shadow md "4px 4px 8px rgba(0,0,0,.1)" + "8px 8px 24px
   rgba(0,0,0,.2)". `designlang drift` verdict: in-sync (0 drift, 15/15 color tokens
   matched). This is an independent PRIVACY-FOCUSED review site (not a mirror) — the
   light, green shell mirrors adguard-vpn.com's real palette for brand
   recognizability, while all copy, structure and review data are our own. */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --primary: #74a352;
  --primary-dark: #67b279;
  --brand-green: #74a352;
  --secondary: #74a352;
  --accent: #67b279;
  --dark: #14170f;
  --header-bg: #ffffff;
  --bg: #ffffff;
  --surface: #f4f7f1;
  --surface-2: #e4e4e4;
  --text: #131313;
  --text-muted: #5b5b5b;
  --green: #67b279;
  --red: #bf4829;
  --border: #e4e4e4;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 4px 8px rgba(0,0,0,.1), 0 8px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 14px rgba(0,0,0,.14);
  --transition: 0.2s ease;
  --dur-fast: 0.15s;
  --dur-md: 0.3s;
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-inout: cubic-bezier(.77,0,.175,1);
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 96px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body { font-family: 'Roboto', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); 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.25; font-weight: 700; color: var(--text); }

/* ─── HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 var(--space-sm);
  height: 64px; gap: var(--space-sm);
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
/* logo.svg viewBox is 210x40 (ratio 5.25); max-width must clear height*ratio (168px) or the
   box gets capped narrower than the intrinsic ratio and qa_browser.py's [§11] logo-distortion
   check (comparing natural vs rendered box aspect ratio) fails even though object-fit:contain
   itself never stretches the pixels — see adguardvpnreview.com/DEPLOYMENT.md. */
.logo { height: 32px; width: auto; max-width: 200px; object-fit: contain; }
.brand-name { color: var(--text); font-weight: 700; font-size: 17px; white-space: nowrap; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--text); opacity: .8; font-size: 14px; font-weight: 500;
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition), opacity var(--transition);
  white-space: nowrap; display: inline-flex; align-items: center; gap: 6px;
}
.nav-links > li > a:hover { opacity: 1; color: var(--primary); background: var(--surface); text-decoration: none; }
.nav-links > li > a i.fa-chevron-down { font-size: 10px; transition: transform var(--transition); }
.nav-links > li.dropdown:hover > a i.fa-chevron-down { transform: rotate(180deg); }

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

/* mobile-only language row inside the menu; hidden on desktop */
.mobile-lang { display: none; }

/* ─── DROPDOWN (language switcher + "Compare" nav item share this) ─── */
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: 100%; left: 0;
  margin-top: 0; padding-top: 8px;
  display: none; min-width: 200px; z-index: 1000;
  opacity: 0; transform: translateY(-4px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.nav-right .dropdown-panel { left: auto; right: 0; }
.dropdown-panel-inner {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel,
.dropdown.open .dropdown-panel { display: block; opacity: 1; transform: translateY(0); }
.dropdown-panel a {
  display: block; padding: 10px 16px;
  color: var(--text); font-size: 14px;
  transition: background var(--transition);
  white-space: nowrap;
}
.dropdown-panel a:hover { background: var(--surface); text-decoration: none; }

.lang-btn {
  background: none; border: 1px solid var(--border);
  color: var(--text); padding: 6px 12px;
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: 13px; display: flex; align-items: center; gap: 6px;
  transition: border-color var(--transition);
}
.lang-btn:hover { border-color: var(--primary); }
.lang-btn i { font-size: 11px; }

/* ─── CTA BUTTON ─── */
.btn-cta {
  background: linear-gradient(135deg, var(--primary), var(--brand-green)); color: #fff;
  padding: 10px 20px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 700;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap; display: inline-block; border: none; cursor: pointer;
}
.btn-cta:hover { filter: brightness(1.08); text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(76,122,53,.35); }
.btn-cta:active { transform: translateY(0); filter: brightness(.96); }

.btn-cta-lg {
  background: linear-gradient(135deg, var(--primary), var(--brand-green)); color: #fff;
  padding: 16px 36px; border-radius: var(--radius-md);
  font-size: 18px; font-weight: 700;
  display: inline-block;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-cta-lg:hover { filter: brightness(1.08); text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(76,122,53,.4); }
.btn-cta-lg:active { transform: translateY(0); }

.btn-outline {
  border: 2px solid var(--border); color: var(--text);
  padding: 10px 20px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; display: inline-block;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--primary); border-color: var(--primary); color: #fff; text-decoration: none; }

/* ─── HAMBURGER ─── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 22px; padding: 6px;
  order: 99;
}

/* ─── HERO ─── */
.hero {
  background: radial-gradient(ellipse at top, #eaf3e3 0%, var(--bg) 55%), var(--bg);
  color: var(--text); text-align: center;
  padding: var(--space-xl) var(--space-sm) var(--space-lg);
  position: relative; overflow: hidden;
}
.hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(103,178,121,.12); border: 1px solid rgba(103,178,121,.4);
  color: #3c6129; padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: var(--space-md);
}
.hero h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 900; margin-bottom: var(--space-sm); color: var(--text); }
.hero p { font-size: clamp(16px, 2.5vw, 20px); color: var(--text-muted); margin-bottom: var(--space-lg); max-width: 660px; margin-left: auto; margin-right: auto; }
.hero-cta-group { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }
.hero-price { margin-top: var(--space-md); font-size: 14px; color: var(--text-muted); }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: var(--space-md) var(--space-sm);
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-lg); flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-num {
  font-size: 28px; font-weight: 800; color: var(--primary);
  display: block; line-height: 1;
}
.trust-label {
  font-size: 12px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: .5px; margin-top: 8px; display: block;
}
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── SECTIONS ─── */
.section { padding: var(--space-xl) var(--space-sm); }
.section-alt { background: var(--surface); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--primary); margin-bottom: var(--space-xs);
}
.section-title { font-size: clamp(24px, 4vw, 40px); 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; }

/* ─── FEATURE GRID ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 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(--transition), transform var(--transition), border-color var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); border-color: rgba(76,122,53,.35); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--surface-2); display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: var(--space-sm); color: var(--primary);
}
.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.6; }

/* Positive / negative theme cards (review-analysis synthesis) */
.theme-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-md); }
.theme-card { background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: var(--radius-md); padding: var(--space-md); transition: transform var(--transition); }
.theme-card:hover { transform: translateY(-2px); }
.theme-card.neg { border-left-color: var(--red); }
.theme-card h4 { font-size: 15px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.theme-card h4 i { color: var(--accent); }
.theme-card.neg h4 i { color: var(--red); }
.theme-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ─── SPLIT ROW ─── */
.split-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-lg); align-items: center;
}
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }
.split-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-image img { width: 100%; height: 320px; object-fit: cover; }
.split-content .section-title { font-size: clamp(22px, 3vw, 34px); }
.check-list { margin: var(--space-sm) 0 var(--space-md); }
.check-list li { padding: 8px 0; display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.check-list li::before { content: '\2713'; color: var(--green); font-weight: 700; font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.pricing-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-md);
  position: relative; transition: box-shadow var(--transition);
}
.pricing-card.popular {
  border-color: var(--primary); border-width: 2px;
  box-shadow: 0 0 0 4px rgba(76,122,53,.1);
}
.pricing-card:hover { box-shadow: var(--shadow-card); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--brand-green)); color: #fff; padding: 4px 16px;
  border-radius: 100px; font-size: 12px; font-weight: 700;
  white-space: nowrap;
}
.pricing-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: var(--space-xs); }
.pricing-price { font-size: 42px; font-weight: 800; color: var(--text); line-height: 1; }
.pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-period { font-size: 14px; color: var(--text-muted); margin-bottom: var(--space-sm); margin-top: 6px; }
.pricing-divider { height: 1px; background: var(--border); margin: var(--space-sm) 0; }
.pricing-features li { padding: 6px 0; display: flex; gap: 8px; align-items: flex-start; font-size: 14px; }
.pricing-features li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-features li.no::before { content: '\2715'; color: var(--border); }
.pricing-cta { width: 100%; padding: 13px; border-radius: var(--radius-md); font-size: 15px; font-weight: 700; cursor: pointer; margin-top: var(--space-sm); display: block; text-align: center; transition: all var(--transition); background: linear-gradient(135deg, var(--primary), var(--brand-green)); color: #fff; border: none; }
.pricing-cta:hover { filter: brightness(1.08); text-decoration: none; }

/* ─── IMAGE STRIP ─── */
.image-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm);
}
.image-strip-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.image-strip-item img { width: 100%; height: 100%; object-fit: cover; }

/* ─── STAT STRIP ─── */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-md); max-width: 900px; margin: 0 auto; }
.stat-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); text-align: center; }
.stat-num { font-size: 34px; font-weight: 800; color: var(--primary); display: block; line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 12px; display: block; line-height: 1.5; }

/* ─── REVIEW CAROUSEL ─── */
.review-carousel { position: relative; max-width: 920px; margin: 0 auto; }
.review-track {
  display: flex; gap: var(--space-md); overflow: hidden;
  transition: transform var(--dur-md) var(--ease-inout);
}
.review-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-md); flex: 0 0 100%; min-width: 0;
  transition: transform var(--dur-md) var(--ease), opacity var(--dur-md) var(--ease);
}
.review-stars { color: var(--brand-green); font-size: 15px; letter-spacing: 2px; margin-bottom: var(--space-sm); }
.review-quote { font-size: 16px; line-height: 1.7; color: var(--text); margin-bottom: var(--space-md); }
.review-quote::before { content: '\201C'; } .review-quote::after { content: '\201D'; }
.review-meta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; gap: 6px; }
.review-platform { background: var(--surface-2); padding: 3px 10px; border-radius: 100px; font-weight: 600; }
.carousel-controls { display: flex; justify-content: center; gap: var(--space-sm); margin-top: var(--space-md); }
.carousel-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: #fff;
  color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.carousel-btn:hover { background: var(--surface); border-color: var(--primary); transform: translateY(-1px); }
.carousel-dots { display: flex; gap: 6px; align-items: center; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); transition: background var(--transition), transform var(--transition); }
.carousel-dot.active { background: var(--primary); transform: scale(1.3); }

/* ─── REVIEW DATABASE (filterable) ─── */
.review-filters { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; margin-bottom: var(--space-lg); }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.filter-chip {
  background: #fff; border: 1px solid var(--border); color: var(--text-muted);
  padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.filter-chip:hover { transform: translateY(-1px); border-color: var(--primary); }
.filter-chip.active { background: linear-gradient(135deg, var(--primary), var(--brand-green)); color: #fff; border-color: transparent; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-md); }
.review-grid .review-card { flex: initial; }
.review-grid .review-card {
  animation: fadeIn var(--dur-md) var(--ease);
  transition: opacity var(--dur-md) var(--ease), transform var(--dur-md) var(--ease), max-height var(--dur-md) var(--ease);
}
.review-grid .review-card.filtering-out { opacity: 0; transform: scale(.96); }
.review-empty { text-align: center; color: var(--text-muted); padding: var(--space-xl) 0; display: none; }
.review-empty.show { display: block; animation: fadeIn var(--dur-md) var(--ease); }
.review-count { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: var(--space-md); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ─── COMPARISON TABLE ─── */
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }
table.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
table.compare-table th, table.compare-table td { padding: 14px 16px; text-align: center; font-size: 14px; border-bottom: 1px solid var(--border); }
table.compare-table th { background: var(--surface-2); font-weight: 700; color: var(--text); }
table.compare-table td:first-child, table.compare-table th:first-child { text-align: left; font-weight: 600; }
table.compare-table tr:last-child td { border-bottom: none; }
table.compare-table td.win { color: var(--accent); font-weight: 700; }
table.compare-table col.us, table.compare-table th.us, table.compare-table td.us { background: rgba(76,122,53,.08); }
.vs-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-md); }
.vs-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-md); text-align: center; transition: transform var(--transition), box-shadow var(--transition);
}
.vs-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.vs-card h3 { font-size: 17px; margin-bottom: 8px; }
.vs-card .vs-price-line { font-size: 13px; color: var(--text-muted); margin-bottom: var(--space-sm); }
.vs-card a.vs-link { font-size: 14px; font-weight: 600; }
.verdict-banner { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); display: flex; gap: var(--space-sm); align-items: flex-start; margin: var(--space-lg) 0; }
.verdict-banner i { color: var(--accent); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.pros-cons .box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); }
.pros-cons h4 { display: flex; align-items: center; gap: 8px; margin-bottom: var(--space-sm); }
.pros-cons .box.pros h4 { color: var(--accent); }
.pros-cons .box.cons h4 { color: var(--red); }
.pros-cons li { padding: 6px 0; display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: var(--text-muted); }
.pros-cons .box.pros li::before { content: '\2713'; color: var(--green); font-weight: 700; }
.pros-cons .box.cons li::before { content: '\2715'; color: var(--red); font-weight: 700; }

/* Honesty / inconsistency callout */
.honest-note { background: rgba(214,69,69,.07); border: 1px solid rgba(214,69,69,.28); border-radius: var(--radius-md); padding: var(--space-sm) var(--space-md); font-size: 14px; color: var(--text); margin: var(--space-md) 0; display: flex; gap: 10px; }
.honest-note i { color: var(--red); flex-shrink: 0; margin-top: 3px; }

/* ─── AWARDS / RATING SUMMARY ─── */
.awards-row {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-lg); flex-wrap: wrap;
}
.award-item { text-align: center; }
.award-icon { font-size: 40px; color: var(--brand-green); margin-bottom: 8px; }
.award-title { font-size: 14px; font-weight: 700; }
.award-sub { font-size: 12px; color: var(--text-muted); }

/* ─── FAQ ─── */
.faq-list { max-width: 780px; margin: 0 auto; }
.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;
  color: var(--text); gap: var(--space-sm);
}
.faq-q i { color: var(--primary); flex-shrink: 0; transition: transform var(--dur-md) var(--ease); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item { display: grid; grid-template-rows: auto 0fr; transition: grid-template-rows var(--dur-md) var(--ease); }
.faq-a { overflow: hidden; min-height: 0; }
.faq-a p { padding: 0 0 var(--space-sm); font-size: 15px; color: var(--text-muted); line-height: 1.7; margin: 0; }
.faq-item.open { grid-template-rows: auto 1fr; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.65);
  padding: var(--space-xl) var(--space-sm) var(--space-md);
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg); margin-bottom: var(--space-xl);
}
.footer-brand .logo-footer { height: 32px; width: auto; margin-bottom: var(--space-sm); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: var(--space-sm); text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: var(--space-sm);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; margin: 0; }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,.4); max-width: 1100px; margin: var(--space-sm) auto 0; line-height: 1.6; }
.social-links { display: flex; gap: 12px; }
.social-links a { color: rgba(255,255,255,.5); font-size: 18px; transition: color var(--transition); }
.social-links a:hover { color: #fff; text-decoration: none; }

/* ─── PLATFORM ICONS ─── */
.platform-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
}
.platform-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm); text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.platform-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.platform-card i { font-size: 36px; color: var(--primary); margin-bottom: var(--space-sm); }
.platform-card span { font-size: 14px; font-weight: 600; display: block; }

/* ─── GUARANTEE / CTA BANNER ─── */
.guarantee-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #2f4d20 100%);
  color: #fff; text-align: center;
  padding: var(--space-lg) var(--space-sm); border-radius: var(--radius-xl);
  margin: var(--space-lg) 0;
}
.guarantee-banner h2 { font-size: clamp(22px, 4vw, 36px); margin-bottom: var(--space-sm); color: #fff; }
.guarantee-banner p { font-size: 16px; color: rgba(255,255,255,.9); margin-bottom: var(--space-md); max-width: 560px; margin-left: auto; margin-right: auto; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: radial-gradient(ellipse at top, #eaf3e3 0%, var(--bg) 60%), var(--bg);
  color: var(--text); text-align: center;
  padding: 56px var(--space-sm) var(--space-lg);
}
.page-hero .crumb { font-size: 13px; color: var(--text-muted); margin-bottom: var(--space-sm); }
.page-hero .crumb a { color: var(--text-muted); }
.page-hero .crumb a:hover { color: var(--primary); }
.page-hero h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; margin-bottom: var(--space-sm); color: var(--text); }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 640px; margin: 0 auto; }

/* ─── PROSE (review body / legal-style) ─── */
.prose { max-width: 800px; margin: 0 auto; font-size: 15px; line-height: 1.8; }
.prose h2 { font-size: 24px; margin-top: 44px; margin-bottom: 14px; }
.prose h3 { font-size: 18px; margin-top: 30px; margin-bottom: 8px; }
.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; }
.prose img { border-radius: var(--radius-lg); margin: var(--space-md) 0; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav { padding: 0 8px; }
  .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,.12);
    padding: 12px 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; text-align: center; }
  .nav-links > li > a { display: flex; width: 100%; padding: 14px 0; font-size: 17px; justify-content: center; }
  .nav-links .dropdown-panel { position: static; display: none; box-shadow: none; padding-top: 0; margin-top: 8px; }
  .nav-links .dropdown-panel-inner { background: transparent; border: none; border-radius: 0; }
  .nav-links .dropdown.open .dropdown-panel,
  .nav-links .dropdown:focus-within .dropdown-panel { display: block; }
  .nav-links .dropdown-panel a { text-align: center; padding: 10px 0; font-size: 15px; }

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

  /* Lang switcher INSIDE mobile menu */
  .mobile-lang {
    display: flex; justify-content: center; gap: 16px;
    padding: 14px 0; border-top: 1px solid var(--border);
    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: var(--text-muted);
  }
  .nav-links li.mobile-lang a.active { color: var(--primary); font-weight: 700; }

  .split-row { grid-template-columns: 1fr; }
  .split-row.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-divider { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .image-strip { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }

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

  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .awards-row { flex-direction: column; gap: var(--space-md); }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}

/* ─── SCROLL REVEAL (source site measured scrollLinked:true motion) ─── */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--dur-md) var(--ease), transform var(--dur-md) var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── REDUCED MOTION ─── */
@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;
  }
}

/* ─── UTILITY ─── */
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }
.tag {
  display: inline-block; background: var(--surface-2); color: var(--primary);
  font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .5px;
}
