/* hidemereviews.com — style.css
   Design tokens measured from https://hide.me/ via designlang (see ../../design-source/).
   hide.me is a light-themed brand: white background, near-black body text, a dominant
   teal-blue #15749d (used ~129x on the source — nav text/icons/links, dark hero/footer
   sections), a bright yellow-gold #fad033 CTA accent (used for primary buttons only — hide.me's
   own "Get hide.me VPN" button is dark-navy-text-on-yellow, replicated here), and a sky-blue
   #2aa9e0 secondary accent. System-ui sans, base 16px, spacing scale 4/8/15/24/30/38/48/58/70/80
   (measured — mapped onto --space-xs..xl below), radii 5/8/…/50-62 (pill buttons). Motion tokens
   (design-source/hide-me-motion-tokens.json): durations 120/200/300/450/750ms, feel "smooth",
   scrollLinked true — scroll reveals are appropriate for this source. */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --primary: #fad033;       /* CTA button backgrounds ONLY — real hide.me button color */
  --primary-dark: #dcb72d;
  --accent: #15749d;        /* dominant brand teal-blue — TEXT/icon accents, links */
  --accent2: #2aa9e0;       /* secondary sky-blue accent */
  --gold: #fad033;
  --dark: #0b3754;          /* measured live neutral (drift-checked against https://hide.me/) */
  --header-bg: #0b3754;
  --bg: #ffffff;
  --surface: #edf3f5;       /* measured live neutral */
  --surface-2: #e3ecf0;
  --text: #1c2022;          /* measured live neutral */
  --text-muted: #697882;    /* measured live neutral */
  --green: #1AAE5B;
  --red: #E03C31;
  --border: #dde5ea;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --shadow-card: 0 4px 14px rgba(16,42,66,.10), 0 1px 3px rgba(16,42,66,.08);
  --shadow-lg: 0 12px 32px rgba(16,42,66,.18);
  --transition: 0.2s ease;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur-md: 300ms;
  --dur-lg: 450ms;
  --space-xs: 8px;
  --space-sm: 15px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
}

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

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

.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
  transition: opacity var(--dur-md) var(--ease-out);
}
.nav-links > li > a {
  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;
}
.nav-links > li > a:hover { color: #fff; background: rgba(255,255,255,.1); text-decoration: none; }

.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 ─── */
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: 100%; right: 0;
  margin-top: 0; padding-top: 8px;
  display: none; min-width: 160px; 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);
}
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel { display: block; }
.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);
}
.lang-btn:hover { border-color: rgba(255,255,255,.7); }
.lang-btn i { font-size: 11px; }

/* ─── CTA BUTTON (real hide.me pattern: dark navy text on yellow bg) ─── */
.btn-cta {
  background: var(--primary); color: var(--dark);
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  white-space: nowrap; display: inline-block;
}
.btn-cta:hover { background: var(--primary-dark); color: var(--dark); text-decoration: none; transform: translateY(-1px); }

.btn-cta-lg {
  background: var(--primary); color: var(--dark);
  padding: 16px 36px; border-radius: var(--radius-pill);
  font-size: 18px; font-weight: 800;
  display: inline-block;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn-cta-lg:hover { background: var(--primary-dark); color: var(--dark); text-decoration: none; transform: translateY(-2px); }

.btn-outline {
  border: 2px solid var(--primary); color: var(--dark);
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; display: inline-block;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.btn-outline:hover { background: var(--primary); color: var(--dark); text-decoration: none; }

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

/* ─── HERO (dark navy band, matches the real hide.me hero screenshot) ─── */
.hero {
  background: linear-gradient(150deg, #0d2032 0%, #123a56 55%, #0f2c46 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-image: radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,.4) 50%, transparent 51%),
                     radial-gradient(1px 1px at 80% 30%, rgba(255,255,255,.3) 50%, transparent 51%),
                     radial-gradient(1.5px 1.5px at 40% 70%, rgba(255,255,255,.28) 50%, transparent 51%),
                     radial-gradient(1px 1px at 60% 15%, rgba(255,255,255,.3) 50%, transparent 51%),
                     radial-gradient(1.5px 1.5px at 92% 80%, rgba(255,255,255,.22) 50%, transparent 51%);
  opacity: 0.6;
}
.hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,169,224,.16); border: 1px solid rgba(42,169,224,.4);
  color: var(--gold); padding: 6px 16px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; margin-bottom: var(--space-md);
}
.hero h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 800; margin-bottom: var(--space-sm); color: #fff; }
.hero p { font-size: clamp(16px, 2.5vw, 20px); color: rgba(255,255,255,.82); margin-bottom: var(--space-lg); max-width: 640px; 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: rgba(255,255,255,.6); }

/* ─── 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(--accent);
  display: block; line-height: 1;
}
.trust-label {
  font-size: 12px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: .5px; margin-top: 6px; 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(--accent); 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: 600px; 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(--dur-md) var(--ease-out), transform var(--dur-md) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .feature-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
}
.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(--accent);
}
.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; }

/* ─── 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(--dur-md) var(--ease-out);
}
.pricing-card.popular {
  border-color: var(--primary); border-width: 2px;
  box-shadow: 0 0 0 4px rgba(250,208,51,.16);
}
.pricing-card:hover { box-shadow: var(--shadow-card); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--dark); padding: 4px 16px;
  border-radius: var(--radius-pill); 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-pill); font-size: 15px; font-weight: 700; cursor: pointer; margin-top: var(--space-sm); display: block; text-align: center; transition: background var(--transition); background: var(--primary); color: var(--dark); border: none; }
.pricing-cta:hover { background: var(--primary-dark); text-decoration: none; }
.pricing-card.popular .pricing-cta { background: var(--primary); }

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

/* ─── AWARDS ─── */
.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(--accent); margin-bottom: 8px; }
.award-title { font-size: 14px; font-weight: 700; }
.award-sub { font-size: 12px; color: var(--text-muted); }

/* ─── FAQ (height-animated accordion) ─── */
.faq-list { max-width: 760px; 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);
}
.faq-q i { color: var(--accent); flex-shrink: 0; transition: transform var(--dur-md) var(--ease-out); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item .faq-a {
  display: block; height: 0; padding: 0; overflow: hidden; opacity: 0;
  transition: height var(--dur-md) var(--ease-out), opacity var(--dur-md) var(--ease-out), padding var(--dur-md) var(--ease-out);
}
.faq-item.open .faq-a { height: var(--faq-h, auto); padding: 0 0 var(--space-sm); opacity: 1; }
.faq-a p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ─── 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: 36px; 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; }
.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(--dur-md) var(--ease-out), transform var(--dur-md) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .platform-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
}
.platform-card i { font-size: 36px; color: var(--accent); margin-bottom: var(--space-sm); }
.platform-card span { font-size: 14px; font-weight: 600; display: block; }

/* ─── GUARANTEE BANNER (dark-on-yellow inverted CTA, matches real hide.me button pattern) ─── */
.guarantee-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--dark); 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: var(--dark); }
.guarantee-banner p { font-size: 16px; color: rgba(16,42,66,.75); margin-bottom: var(--space-md); max-width: 560px; margin-left: auto; margin-right: auto; }
.guarantee-banner .btn-cta, .guarantee-banner .btn-cta-lg { background: var(--dark); color: var(--primary); }
.guarantee-banner .btn-cta:hover, .guarantee-banner .btn-cta-lg:hover { background: #0a2032; color: var(--primary); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(150deg, #0d2032 0%, #123a56 100%);
  color: #fff; text-align: center;
  padding: 72px var(--space-sm) var(--space-xl);
}
.page-hero h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; margin-bottom: var(--space-sm); color: #fff; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.contact-form { display: flex; flex-direction: column; gap: var(--space-sm); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-md);
  font-size: 15px; font-family: inherit; background: #fff;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: var(--primary); color: var(--dark); border: none; cursor: pointer;
  padding: 14px 32px; border-radius: var(--radius-pill); font-size: 16px; font-weight: 700;
  transition: background var(--transition);
}
.form-submit:hover { background: var(--primary-dark); }

/* ─── PROSE (review/faq body copy) ─── */
.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 h3 { font-size: 17px; margin-top: 28px; }
.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; }

/* ─── PRIVACY TRUST BADGES (site-specific — no-logs/jurisdiction/audit/kill-switch chips) ─── */
.privacy-badges { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }
.privacy-badge {
  display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px 20px; min-width: 200px;
  transition: box-shadow var(--dur-md) var(--ease-out), transform var(--dur-md) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .privacy-badge:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
}
.privacy-badge i { font-size: 22px; color: var(--accent); flex-shrink: 0; }
.privacy-badge-title { font-size: 14px; font-weight: 700; color: var(--text); display: block; }
.privacy-badge-sub { font-size: 12px; color: var(--text-muted); display: block; margin-top: 2px; }

/* ─── 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;
  }
  .nav-links.open { display: flex; }
  .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; }

  /* Lang switcher INSIDE mobile menu */
  .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; }

  .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; }
  .contact-grid { grid-template-columns: 1fr; }

  .btn-cta-lg, .btn-cta, .hero-cta-group a {
    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); }

  .sentiment-cols { grid-template-columns: 1fr; }
  .review-filters { flex-direction: column; }
  .review-grid { grid-template-columns: 1fr; }
  .carousel-track .review-card { min-width: 260px; }
  .vs-hub-grid { grid-template-columns: 1fr; }
}

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

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

/* ─── BREADCRUMB ─── */
.breadcrumb { max-width: 1100px; margin: 0 auto; padding: var(--space-sm) var(--space-sm) 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .crumb-sep { margin: 0 6px; opacity: .5; }

/* ─── STAR RATING (gold, conventional rating-star color) ─── */
.stars { display: inline-flex; gap: 2px; color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.stars .off { color: var(--border); }
.score-badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 14px 22px;
}
.score-badge .score-num { font-size: 30px; font-weight: 800; color: var(--accent); line-height: 1; }
.score-badge .score-meta { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ─── TRUST STRIP (platform scores) ─── */
.trust-strip { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }
.trust-strip .score-badge { min-width: 170px; }

/* ─── SENTIMENT SYNTHESIS ─── */
.sentiment-block {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-md); margin: var(--space-md) 0;
}
.sentiment-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-top: var(--space-sm); }
.sentiment-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.sentiment-col.loves h4 { color: var(--accent); }
.sentiment-col.complaints h4 { color: var(--red); }
.sentiment-col ul li { padding: 6px 0; font-size: 14px; color: var(--text-muted); display: flex; gap: 8px; }
.sentiment-col.loves ul li::before { content: '\2713'; color: var(--accent); font-weight: 700; }
.sentiment-col.complaints ul li::before { content: '\2715'; color: var(--red); font-weight: 700; }
.ai-note { font-size: 12px; color: var(--text-muted); margin-top: var(--space-sm); opacity: .75; }

/* ─── REVIEW CARDS + FILTER GRID ─── */
.review-filters {
  display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: flex-start; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md); margin-bottom: var(--space-md);
}
.filter-group { display: flex; flex-direction: column; gap: 8px; }
.filter-group-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); }
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pill {
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-muted);
  font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: var(--radius-pill); cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.filter-pill:hover { border-color: var(--accent); color: var(--text); }
.filter-pill.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.review-count { font-size: 13px; color: var(--text-muted); align-self: center; }

.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-sm); }
.review-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-sm); display: flex; flex-direction: column; gap: 10px;
  opacity: 1; transform: scale(1);
  transition: transform var(--dur-md) var(--ease-out), box-shadow var(--dur-md) var(--ease-out), opacity var(--dur-fast) ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
}
/* Filter show/hide: fade+scale out first (keeps the grid slot so nothing jumps mid-fade),
   then JS adds .is-hidden (display:none) once the transition ends so the grid reflows
   afterwards rather than snapping instantly. */
.review-card.is-filtering-out { opacity: 0; transform: scale(0.96); pointer-events: none; transition-duration: var(--dur-fast); }
.review-card.is-hidden { display: none; }
.review-card.is-featured { border-color: var(--accent); }
.review-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.review-author { font-size: 14px; font-weight: 700; }
.platform-pill {
  display: inline-flex; align-items: center; gap: 6px; background: var(--surface-2);
  color: var(--text-muted); font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .4px; padding: 4px 10px; border-radius: var(--radius-pill); white-space: nowrap;
}
.platform-pill i { font-size: 11px; }
.review-card h3 { font-size: 15px; margin: 0; }
.review-tag-privacy {
  display: inline-flex; align-items: center; gap: 4px; background: rgba(21,116,157,.1);
  color: var(--accent); font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .4px; padding: 3px 8px; border-radius: var(--radius-pill); width: fit-content;
}
.review-quote {
  font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.review-card.expanded .review-quote { -webkit-line-clamp: unset; }
.review-expand {
  align-self: flex-start; background: none; border: none; color: var(--accent);
  font-size: 12px; font-weight: 700; cursor: pointer; padding: 0;
}
.review-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); opacity: .8; }
.no-results { text-align: center; padding: var(--space-lg) 0; color: var(--text-muted); display: none; }
.no-results.show { display: block; }

/* ─── REVIEW CAROUSEL ─── */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: var(--space-sm); overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px var(--space-sm); scrollbar-width: thin; scrollbar-color: var(--border) transparent;
  scroll-behavior: smooth;
}
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.carousel-track .review-card { min-width: 300px; max-width: 340px; scroll-snap-align: start; flex-shrink: 0; }
.carousel-controls { display: flex; justify-content: center; gap: 10px; margin-top: var(--space-xs); }
.carousel-btn {
  width: 38px; height: 38px; border-radius: 50%; background: var(--surface-2);
  border: 1px solid var(--border); color: var(--text); cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .carousel-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-1px); }
}

/* ─── VS COMPARISON TABLE ─── */
.vs-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.vs-table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--surface); }
.vs-table th, .vs-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.vs-table th { background: var(--surface-2); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); }
.vs-table td:first-child, .vs-table th:first-child { color: var(--text-muted); font-weight: 600; }
.vs-table tr:last-child td { border-bottom: none; }
.vs-table .yes { color: var(--accent); font-weight: 700; }
.vs-table .no { color: var(--red); font-weight: 700; }
.vs-hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-sm); }
.vs-hub-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-sm); text-align: center; transition: transform var(--dur-md) var(--ease-out), box-shadow var(--dur-md) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .vs-hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
}
.vs-hub-card .vs-vs { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin: 6px 0; }
.vs-hub-card h3 { font-size: 18px; margin-bottom: 4px; }
.vs-verdict {
  background: var(--surface); border-left: 3px solid var(--accent); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-sm) var(--space-md); margin: var(--space-md) 0;
}

/* ─── EVIDENCE FIGURE (structured cited data from hide.me as review-proof) ─── */
.evidence-figure { margin: var(--space-md) 0; }
.evidence-figure img { border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.evidence-figure figcaption { font-size: 13px; color: var(--text-muted); margin-top: 8px; text-align: center; }
.evidence-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); margin: var(--space-md) 0; }
.evidence-table { width: 100%; border-collapse: collapse; background: #fff; }
.evidence-table th, .evidence-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.evidence-table th { background: var(--surface); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); }
.evidence-table tr:last-child td { border-bottom: none; }
.evidence-cite { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.evidence-cite a { color: var(--accent); }

/* ─── SCROLL REVEAL (progressive enhancement; JS adds .in-view) ─── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur-lg) var(--ease-out), transform var(--dur-lg) var(--ease-out); }
.reveal.in-view { 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; }
  .reveal { opacity: 1; transform: none; }
  .carousel-track { scroll-behavior: auto; }
}
