/* KnowThePepper — Global Styles */
/* Design: Playfair Display headings, Source Sans 3 body */
/* Colors: #b91c1c red, #1e293b dark, #78716c gray, #f5f5f0 warm bg */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: #fecaca; }

:root {
  --red: #b91c1c;
  --red-dark: #991b1b;
  --red-light: #fecaca;
  --red-bg: #fef2f2;
  --dark: #1e293b;
  --gray: #78716c;
  --gray-light: #a8a29e;
  --gray-border: #e8e5e0;
  --warm-bg: #f5f5f0;
  --white: #fff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Heat tier colors */
  --mild: #22c55e;
  --medium: #eab308;
  --hot: #f97316;
  --extra-hot: #ef4444;
  --super-hot: #991b1b;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: #fafaf8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; height: auto; }

/* ─── HEADER (Glass Morphism) ─── */
.site-header {
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

/* Logo: red dot + Playfair Display */
.site-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo:hover { color: var(--red-dark); }
.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dc2626;
  display: inline-block;
  flex-shrink: 0;
}

/* Nav links with pill-style active state */
.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.15s;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link:hover {
  background: var(--warm-bg);
  border-color: var(--gray-border);
  color: var(--dark);
}
.nav-link.active {
  background: var(--red-bg);
  border-color: var(--red-light);
  color: var(--red);
  font-weight: 600;
}
.caret { font-size: 10px; color: var(--gray-light); }

/* Heat dots row in nav */
.heat-dots { display: flex; gap: 3px; align-items: center; }
.heat-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* Nav divider */
.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--gray-border);
  margin: 0 6px;
}

/* Nav social icons */
.nav-social { display: flex; gap: 8px; align-items: center; }
.nav-social a {
  opacity: .35;
  transition: opacity .15s;
  display: flex;
}
.nav-social a:hover { opacity: 1; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  font-family: var(--font-body);
}
.nav-dropdown-trigger {
  position: relative;
}
/* Invisible bridge below trigger so hover isn't lost crossing the gap */
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  padding: 8px;
  min-width: 260px;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .1s;
  text-decoration: none;
  color: inherit;
}
.dropdown-item:hover { background: var(--warm-bg); color: inherit; }
.dropdown-item-highlight { border-bottom: 1px solid #f0ede8; margin-bottom: 4px; }
.dropdown-item-highlight:hover { background: var(--red-bg); }
.dropdown-item .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dropdown-item-text { flex: 1; }
.dropdown-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.dropdown-item-highlight .dropdown-item-text strong { color: var(--red); }
.dropdown-item-text small {
  font-size: 11px;
  color: var(--gray-light);
}
.dropdown-arrow {
  font-size: 11px;
  color: #d6d3d1;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(170deg, #0c0404 0%, #1a0808 30%, #3b0d0d 60%, #5c1515 100%);
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
  background-size: 40px 40px;
}
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,28,28,.12), transparent 70%);
}
.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.02;
  letter-spacing: -1.5px;
}
.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(252,165,165,.85);
  margin: 0 auto 36px;
  line-height: 1.6;
  max-width: 540px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 12px;
  color: #fca5a5;
  font-weight: 500;
  letter-spacing: .3px;
}
.hero-badge .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ─── SEARCH BAR (Dark / Hero) ─── */
.search-bar {
  position: relative;
  max-width: 480px;
  margin: 0 auto 32px;
}
.search-bar-inner {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 4px 4px 4px 18px;
  backdrop-filter: blur(12px);
}
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 12px;
  color: #fff;
  font-size: 15px;
  font-family: var(--font-body);
}
.search-bar input::placeholder { color: rgba(255,255,255,.35); }
.search-bar .btn-browse {
  background: #dc2626;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: background .15s;
}
.search-bar .btn-browse:hover { background: #b91c1c; }

/* Premium search (light bg) */
.search-premium {
  position: relative;
  margin-bottom: 36px;
}
.search-premium-inner {
  background: var(--warm-bg);
  border: 2px solid var(--gray-border);
  border-radius: 16px;
  padding: 4px;
  transition: all 0.2s;
}
.search-premium-inner:focus-within {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(185,28,28,.08);
}
.search-premium-inner .search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
}
.search-premium-inner input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--dark);
  outline: none;
}

/* ─── STATS ─── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stats-row .stat { text-align: center; }
.stats-row .stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.stats-row .stat-label {
  font-size: 12px;
  color: rgba(252,165,165,.6);
  margin-top: 2px;
}

/* ─── SECTIONS ─── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px;
}
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: var(--dark);
  margin: 4px 0 0;
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-border);
  transition: all 0.25s;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
  border-color: var(--gray-border);
}

.pepper-card {
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.pepper-card .card-accent { height: 3px; }
.pepper-card .card-body { padding: 20px; }
.pepper-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--warm-bg);
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pepper-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 4px;
}
.pepper-card .card-meta {
  font-size: 13px;
  color: var(--gray);
  margin: 0 0 10px;
}
.pepper-card .card-arrow {
  font-size: 12px;
  color: var(--gray-border);
  font-weight: 600;
  text-align: right;
  margin-top: 12px;
  transition: color 0.15s;
}
.pepper-card:hover .card-arrow { color: var(--red); }

/* Heat badge */
.heat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-family: var(--font-body);
  white-space: nowrap;
}
.heat-badge-sm { font-size: 10px; padding: 2px 10px; }
.heat-badge-md { font-size: 11px; padding: 4px 12px; }
.heat-badge-lg { font-size: 13px; padding: 6px 16px; }
.heat-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}

/* Flavor tags */
.flavor-tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 500;
  display: inline-block;
}
.flavor-tag-flavor { background: #fef3c7; color: #92400e; }
.flavor-tag-species { background: #f0fdf4; color: #166534; font-style: italic; }

/* ─── TRUST FEATURES (Homepage) ─── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all .15s;
}
.trust-card:hover {
  border-color: rgba(185,28,28,.12);
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.trust-card .trust-icon { margin-bottom: 12px; }
.trust-card .trust-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.trust-card .trust-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── COMPARISON CARD ─── */
.comp-card {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.comp-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.comp-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
}
.comp-card h3 .vs { color: var(--gray-border); font-weight: 400; }
.comp-card .card-accent { height: 3px; margin: -20px -20px 16px; }
.comp-card .vs-badges { display: flex; gap: 6px; margin-bottom: 10px; align-items: center; }

/* ─── GRID LAYOUTS ─── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.grid-comp { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
}
.breadcrumb a {
  color: var(--red);
  font-weight: 500;
  padding: 2px 4px;
  border-radius: 4px;
}
.breadcrumb .sep {
  margin: 0 6px;
  color: var(--gray-light);
}
.breadcrumb .current {
  color: var(--dark);
  font-weight: 600;
  padding: 2px 4px;
}

/* ─── CONTENT SECTIONS ─── */
.content-section { margin-bottom: 32px; }
.content-section h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 16px;
  padding-top: 8px;
}
.content-section p {
  font-size: 17px;
  color: #374151;
  line-height: 1.8;
  margin: 0 0 16px;
}

/* Quick facts card */
.quick-facts {
  background: var(--warm-bg);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 32px;
}
.quick-facts h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
}
.quick-facts dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
}
.quick-facts dt { font-weight: 600; color: var(--gray); font-size: 14px; }
.quick-facts dd { font-size: 14px; color: var(--dark); font-weight: 500; }

/* TOC */
.toc {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.toc h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
}
.toc ol { padding-left: 20px; }
.toc li { margin-bottom: 4px; }
.toc a { font-size: 14px; color: var(--red); font-weight: 500; }

/* FAQ Accordion */
.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-item {
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover { background: var(--warm-bg); }
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question { font-weight: 700; }

/* Sources */
.sources-list {
  background: var(--warm-bg);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 20px 24px;
}
.sources-list h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
}
.sources-list ul { list-style: none; padding: 0; }
.sources-list li { margin-bottom: 6px; }
.sources-list a {
  font-size: 14px;
  color: var(--red);
  font-weight: 500;
  border-bottom: 1px dashed var(--red-light);
}
.sources-list a:hover { border-bottom-color: var(--red); }

/* ─── TIER PILLS ─── */
.tier-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.tier-pill {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
  text-decoration: none;
}
.tier-pill:hover { transform: translateY(-1px); }
.tier-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* ─── HEAT BAR ─── */
.heat-bar {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #22c55e 0%, #84cc16 15%, #eab308 30%, #f97316 55%, #ef4444 75%, #991b1b 100%);
  max-width: 800px;
  margin: 0 auto;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #0f172a;
  padding: 48px 24px 32px;
  margin-top: 48px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 4px; }
.footer-col a {
  font-size: 13px;
  color: #94a3b8;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
}
.footer-col a:hover { color: #fff; }

/* Footer brand column */
.footer-brand p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 16px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a {
  opacity: .5;
  transition: opacity .15s;
  display: flex;
  padding: 0;
}
.footer-social a:hover { opacity: 1; color: #94a3b8; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #475569;
}

/* ─── WARM BG SECTIONS ─── */
.bg-warm { background: var(--warm-bg); }
.bg-amber { background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%); }
.bg-dark { background: linear-gradient(145deg, #1a0808, #3b0d0d); }

/* ─── CONTENT PAGE LAYOUT ─── */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px;
}
.page-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  color: var(--dark);
  margin: 0 0 8px;
}
.page-content .lead {
  font-size: 17px;
  color: var(--gray);
  margin: 0 0 28px;
  line-height: 1.6;
  max-width: 700px;
}

/* External links */
.ext-link {
  color: var(--red);
  font-weight: 500;
  border-bottom: 1px dashed var(--red-light);
}
.ext-link:hover { border-bottom-color: var(--red); }

/* Internal links in content */
.int-link {
  color: var(--red);
  font-weight: 600;
  border-bottom: 1px solid var(--red-light);
}
.int-link:hover { border-bottom-color: var(--red); }

/* ─── UTILITIES ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* Desktop only */
.desktop-only { }

/* ─── COMPARISON VS LAYOUT ─── */
.vs-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.vs-card {
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid transparent;
  transition: border-color .15s;
}
.vs-card:hover { border-color: inherit; }
.vs-divider {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 300;
  color: var(--gray-border);
}

/* ─── FAQ CHEVRON ROTATION ─── */
.faq-question svg {
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

/* ─── COMPARISON TABLE ─── */
.comp-table {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  overflow: hidden;
}
.comp-table th { background: var(--warm-bg); }
.comp-table td, .comp-table th { padding: 12px 16px; }

/* ─── ALERT BOXES ─── */
.alert {
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-danger { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-info { background: #eff6ff; border: 1px solid #93c5fd; color: #1e40af; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }

/* ─── STATS GRID (Profile/About) ─── */
.stats-grid {
  display: grid;
  gap: 1px;
  background: var(--gray-border);
  border-radius: 12px;
  overflow: hidden;
}
.stats-grid .stat-cell {
  background: var(--white);
  padding: 24px;
  text-align: center;
}
.stats-grid .stat-cell .stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
}
.stats-grid .stat-cell .stat-label {
  font-size: 12px;
  color: var(--gray-light);
  margin-top: 4px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-layout { grid-template-columns: 1fr !important; }
  .vs-layout { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .grid-3, .grid-2, .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .site-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    padding: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
  }
  .site-nav.active .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: 1px solid var(--gray-border);
    margin: 4px 0;
  }
  .hero { padding: 48px 16px; }
  .hero h1 { font-size: 32px; }
  .section { padding: 32px 16px; }
  .stats-row { gap: 16px; }
  .page-content { padding: 24px 16px; }
  .breadcrumb { font-size: 12px; padding: 8px 12px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr; }
  .grid-comp { grid-template-columns: 1fr; }
  .vs-layout { gap: 12px; }
}
