/* letsvpnreview.com — style.css
   Tokens mapped from designlang extraction of https://letsvpn.world
   (design-source/letsvpn-world-DESIGN.md): primary #0000ff, secondary #6b86fd,
   accent #8956f7, background #f7f7f7, foreground #333333, spacing scale
   [3,20,24,28,35,50,55,64,70,76], radii sm4/lg16/xl20/full50, shadow
   rgba(0,0,0,.2) 0 5px 10px, motion duration 400ms (scroll-linked reveals). */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --primary: #443ee4;          /* re-measured live primary (designlang drift pass) */
  --primary-dark: #322fb0;
  --secondary: #6b86fd;        /* measured secondary — hero gradient start */
  --accent: #8956f7;           /* measured accent — hero gradient end */
  --gold: #ffb020;             /* utility (star ratings) — no source equivalent, allowed to drift */
  --dark: #202939;             /* re-measured live dark neutral */
  --header-bg: #202939;
  --bg: #ffffff;                /* re-measured live background */
  --surface: #f7f7fb;           /* near-white surface tint, close to live */
  --surface-2: #f0eefc;
  --text: #333333;              /* measured foreground */
  --text-muted: #666666;        /* measured neutral */
  --green: #1aae5b;            /* utility (pros) — no source equivalent, allowed to drift */
  --red: #e0433c;              /* utility (cons) — no source equivalent, allowed to drift */
  --border: #d7d6de;            /* re-measured live neutral */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50px;
  --shadow-card: 0 2px 12px rgba(20,16,43,.08), 0 1px 3px rgba(20,16,43,.06);
  --shadow-lg: 0 10px 30px rgba(20,16,43,.18);
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --dur-fast: 150ms;
  --dur-md: 250ms;
  --dur-slow: 400ms;            /* measured motion duration */
  --ease: cubic-bezier(.4,0,.2,1);
  --space-xs: 12px;
  --space-sm: 20px;             /* measured scale member */
  --space-md: 28px;             /* measured scale member */
  --space-lg: 55px;             /* measured scale member */
  --space-xl: 76px;             /* measured scale member */
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body { font-family: -apple-system, "Helvetica Neue", Helvetica, Arial, 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(--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; }

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

/* ─── HEADER ─── */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--header-bg); border-bottom: 2px solid var(--accent); }
.nav { max-width: 1240px; 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: 8px; flex-shrink: 0; }
.logo { height: 30px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-links > li > a, .nav-links > li > .nav-drop-btn {
  color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500;
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap; background: none; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links > li > a:hover, .nav-links > li > .nav-drop-btn:hover { color: #fff; background: rgba(255,255,255,.1); text-decoration: none; }
.nav-drop-btn i { font-size: 10px; transition: transform var(--transition); }
.nav-compare.open .nav-drop-btn i { transform: rotate(180deg); }

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

/* ─── DROPDOWN (lang switcher + compare menu) ─── */
.dropdown { position: relative; }
.dropdown-panel { position: absolute; top: 100%; right: 0; margin-top: 0; padding-top: 10px; display: none; min-width: 180px; z-index: 1000; opacity: 0; transform: translateY(-6px); transition: opacity var(--dur-md) var(--ease), transform var(--dur-md) var(--ease); }
.nav-compare .dropdown-panel { right: auto; left: 0; min-width: 240px; }
.dropdown:hover .dropdown-panel, .dropdown:focus-within .dropdown-panel, .dropdown.open .dropdown-panel { display: block; }
.dropdown.open .dropdown-panel, .dropdown:hover .dropdown-panel, .dropdown:focus-within .dropdown-panel { 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); }
.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 rgba(255,255,255,.3); color: rgba(255,255,255,.85); 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); font-family: inherit; }
.lang-btn:hover { border-color: rgba(255,255,255,.7); }
.lang-btn i { font-size: 11px; }

/* ─── CTA BUTTON ─── */
.btn-cta { background: linear-gradient(135deg, var(--secondary), var(--accent)); color: #fff; padding: 10px 22px; border-radius: var(--radius-full); font-size: 14px; font-weight: 700; transition: transform var(--transition), box-shadow var(--transition); white-space: nowrap; display: inline-block; box-shadow: 0 4px 14px rgba(137,86,247,.35); }
.btn-cta:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(137,86,247,.45); }
.btn-cta:active { transform: translateY(0); }
.btn-cta.btn-lg { padding: 16px 38px; font-size: 17px; border-radius: var(--radius-full); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); padding: 9px 20px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600; display: inline-block; transition: all var(--transition); background: #fff; }
.btn-outline:hover { background: var(--primary); color: #fff; text-decoration: none; }

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

/* ─── HERO ─── */
.hero { background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 65%, #b06ef0 100%); color: #fff; text-align: center; padding: var(--space-xl) var(--space-sm); position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 15% 25%, rgba(255,255,255,.14), transparent 45%), radial-gradient(circle at 85% 75%, rgba(255,255,255,.12), transparent 45%); }
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.badge, .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35); color: #fff; padding: 6px 16px; border-radius: var(--radius-full); font-size: 13px; font-weight: 600; margin-bottom: var(--space-md); }
.hero h1 { font-size: clamp(28px, 5vw, 50px); font-weight: 800; margin-bottom: var(--space-sm); color: #fff; }
.hero p, .hero .subtitle { font-size: clamp(16px, 2.5vw, 20px); color: rgba(255,255,255,.9); margin-bottom: var(--space-lg); max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-cta, .hero-cta-group { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

/* ─── STAT STRIP ─── */
.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: 30px; 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: 12px; 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-head, .section-label-wrap { margin-bottom: var(--space-lg); }
.section-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: var(--space-xs); }
.section-title, .section-head h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 800; margin-bottom: var(--space-sm); }
.section-sub, .section-head p { font-size: 17px; color: var(--text-muted); max-width: 640px; margin-bottom: 0; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* reveal-on-scroll (only because the source is scroll-linked; compositor-friendly props only) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── FEATURE GRID ─── */
.features { padding: var(--space-xl) var(--space-sm); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-md); max-width: 1100px; margin: 0 auto; }
.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); }
.feature-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.feature-card i { width: 48px; height: 48px; 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(--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.65; }

/* ─── RATING / STARS ─── */
.stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; white-space: nowrap; }
.rating-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-full); padding: 8px 18px; font-weight: 700; }
.rating-big { font-size: 44px; font-weight: 800; color: var(--text); line-height: 1; }
.rating-big-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* ─── REVIEW CARDS / CAROUSEL ─── */
.review-carousel-wrap { position: relative; max-width: 1140px; margin: 0 auto; }
.review-carousel { display: flex; gap: var(--space-md); overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 24px; scrollbar-width: none; }
.review-carousel::-webkit-scrollbar { display: none; }
.review-card { scroll-snap-align: start; flex: 0 0 320px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); display: flex; flex-direction: column; gap: 10px; transition: box-shadow var(--transition), transform var(--transition); }
.review-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.review-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.review-platform { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); background: var(--surface); padding: 3px 10px; border-radius: var(--radius-full); white-space: nowrap; }
.review-title { font-weight: 700; font-size: 15px; margin: 2px 0 0; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.review-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
.review-author { font-weight: 600; color: var(--text); }

.carousel-nav { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
.carousel-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--primary); transition: background var(--transition), transform var(--dur-fast) var(--ease); }
.carousel-btn:hover { background: var(--surface); }
.carousel-btn:active { transform: scale(.92); }

/* ─── REVIEW DATABASE / FILTERS ─── */
.review-db-stats { display: flex; flex-wrap: wrap; gap: var(--space-lg); justify-content: center; margin-bottom: var(--space-lg); }
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; justify-content: center; margin-bottom: var(--space-lg); padding: var(--space-sm); background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); max-width: 1100px; margin-left: auto; margin-right: auto; }
.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-group-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-right: 4px; }
.filter-chip { border: 1px solid var(--border); background: #fff; color: var(--text); font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: var(--radius-full); cursor: pointer; transition: all var(--dur-fast) var(--ease); font-family: inherit; }
.filter-chip:hover { border-color: var(--primary); }
.filter-chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.filter-count { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: var(--space-md); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-md); max-width: 1140px; margin: 0 auto; }
.review-grid .review-card { flex: none; }
.review-grid .review-card.hidden, .review-empty.hidden { display: none; }
.review-empty { text-align: center; color: var(--text-muted); padding: var(--space-lg) 0; }
.load-more-wrap { text-align: center; margin-top: var(--space-lg); }
.btn-loadmore { border: 1px solid var(--border); background: #fff; color: var(--primary); font-weight: 700; padding: 12px 28px; border-radius: var(--radius-full); cursor: pointer; font-family: inherit; font-size: 14px; transition: all var(--dur-fast) var(--ease); }
.btn-loadmore:hover { background: var(--surface); }
.btn-loadmore.hidden { display: none; }

/* ─── SYNTHESIS / QUOTE BLOCK ─── */
.synthesis-block { max-width: 820px; margin: 0 auto; }
.synthesis-block p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: var(--space-sm); }
.pull-quote { border-left: 4px solid var(--accent); padding: 4px 0 4px var(--space-sm); font-style: italic; color: var(--text); margin: var(--space-md) 0; font-size: 16px; }

/* ─── PROS / CONS ─── */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); max-width: 1000px; margin: 0 auto; }
.proscons-col { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); }
.proscons-col h3 { font-size: 16px; margin-bottom: var(--space-sm); display: flex; align-items: center; gap: 8px; }
.proscons-col ul li { padding: 7px 0; display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-muted); }
.proscons-col.pros h3 { color: var(--green); }
.proscons-col.cons h3 { color: var(--red); }
.proscons-col.pros li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.proscons-col.cons li::before { content: '\2715'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ─── COMPARISON TABLE / VS GRID ─── */
.vs-hero-badge-row { display: flex; align-items: center; justify-content: center; gap: var(--space-md); margin-bottom: var(--space-md); flex-wrap: wrap; }
.vs-pill { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35); border-radius: var(--radius-full); padding: 10px 22px; font-weight: 700; color: #fff; }
.vs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--space-md); max-width: 1100px; margin: 0 auto; }
.vs-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); text-align: center; transition: box-shadow var(--transition), transform var(--transition); }
.vs-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.vs-card h3 { font-size: 17px; margin-bottom: 6px; }
.vs-card p { font-size: 13px; color: var(--text-muted); margin-bottom: var(--space-sm); }
.vs-card a { font-weight: 700; font-size: 14px; }

.compare-table-wrap { max-width: 900px; margin: 0 auto var(--space-lg); overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--surface); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: .5px; color: var(--text-muted); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--text-muted); }

/* ─── FAQ ─── */
.faq { padding: var(--space-xl) var(--space-sm); }
.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: 12px; font-family: inherit; }
.faq-q::after { content: '\002B'; color: var(--primary); font-size: 20px; flex-shrink: 0; transition: transform var(--dur-md) var(--ease); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height var(--dur-slow) var(--ease), opacity var(--dur-md) var(--ease); }
.faq-a p { padding: 0 0 var(--space-sm); font-size: 15px; color: var(--text-muted); line-height: 1.75; margin: 0; }
.faq-item.open .faq-a { opacity: 1; }

/* ─── FOOTER ─── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); 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: 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: 280px; }
.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,.7); 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; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero { background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%); color: #fff; text-align: center; padding: 64px var(--space-sm) var(--space-lg); }
.page-hero h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; margin-bottom: var(--space-sm); color: #fff; }
.page-hero p, .page-hero .subtitle { font-size: 18px; color: rgba(255,255,255,.9); 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: 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; }

/* ─── 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,.24);
    padding: 12px 0; z-index: 999;
    opacity: 0; transform: translateY(-8px); transition: opacity var(--dur-md) var(--ease), transform var(--dur-md) var(--ease);
  }
  .nav-links.open { display: flex; opacity: 1; transform: translateY(0); }
  .nav-links > li { width: 100%; text-align: center; }
  .nav-links > li > a, .nav-links > li > .nav-drop-btn { display: flex; width: 100%; justify-content: center; padding: 14px 0; font-size: 17px; }
  .nav-compare .dropdown-panel { position: static; display: none; opacity: 1; transform: none; padding-top: 0; min-width: 0; }
  .nav-compare.open .dropdown-panel { display: block; }
  .nav-compare .dropdown-panel-inner { background: rgba(255,255,255,.06); border: none; border-radius: 0; box-shadow: none; }
  .nav-compare .dropdown-panel-inner a { color: rgba(255,255,255,.75); text-align: center; }

  .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; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-divider { display: none; }
  .proscons { grid-template-columns: 1fr; }
  .review-card { flex-basis: 82vw; }

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

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

/* ─── 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: var(--radius-full); text-transform: uppercase; letter-spacing: .5px; }
