/* =========================================
   DGSeniors — Senior Driver Safety
   Audience: Adult children of aging parents
   Tone: Warm, authoritative, reassuring
   Aesthetic: Light editorial — clean cream/white
   base, deep slate, warm amber accent
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --cream:       #FAF7F2;
  --white:       #FFFFFF;
  --amber:       #D4820A;
  --amber-light: #F5A623;
  --amber-pale:  #FEF3DC;
  --slate:       #1C2B3A;
  --slate-mid:   #2E4057;
  --slate-light: #4A6580;
  --gray:        #7A8FA0;
  --gray-light:  #B8C8D4;
  --border:      #E2D9CE;
  --teal:        #1A7A6E;
  --teal-light:  #E8F4F2;
  --red-soft:    #C0392B;
  --red-pale:    #FDECEA;

  --font-head:  'Playfair Display', serif;
  --font-body:  'DM Sans', sans-serif;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(28,43,58,0.10);
  --shadow-lg:  0 12px 48px rgba(28,43,58,0.14);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--amber); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-light); }
img { max-width: 100%; display: block; }

/* ── UTILITY ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.text-center { text-align: center; }
.text-amber { color: var(--amber); }
.text-teal  { color: var(--teal); }
.text-slate { color: var(--slate); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--slate);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 900; }
h2 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 800; }
h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; }
h4 { font-size: 19px; font-weight: 700; }
p  { color: var(--slate-light); line-height: 1.75; }
.lead { font-size: 19px; color: var(--slate-mid); font-weight: 400; line-height: 1.7; }
.eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); display: block; margin-bottom: 16px;
}
.section-intro {
  font-size: 18px; color: var(--slate-light);
  max-width: 580px; margin: 0 auto 56px;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 34px; border-radius: 50px;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  letter-spacing: 0.02em; cursor: pointer; border: none;
  transition: all var(--transition); white-space: nowrap;
}
.btn-amber {
  background: var(--amber); color: var(--white);
  box-shadow: 0 6px 24px rgba(212,130,10,0.30);
}
.btn-amber:hover {
  background: var(--amber-light); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212,130,10,0.40);
}
.btn-outline {
  background: transparent; color: var(--slate);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-white {
  background: var(--white); color: var(--slate);
  box-shadow: var(--shadow);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--amber); }
.btn-lg { padding: 18px 46px; font-size: 17px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
}
.navbar-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  font-family: var(--font-head); font-size: 22px; font-weight: 900;
  color: var(--slate); letter-spacing: -0.02em;
}
.navbar-logo .dg     { color: var(--amber); }
.navbar-logo .seniors { color: var(--slate); }
.navbar-nav { display: flex; gap: 32px; list-style: none; align-items: center; }
.navbar-nav a {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--slate-light); transition: color var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active { color: var(--amber); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--slate); margin: 5px 0; transition: all var(--transition); border-radius: 2px; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, var(--amber-pale) 0%, var(--cream) 70%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-pale); border: 1px solid rgba(212,130,10,0.25);
  padding: 8px 18px; border-radius: 50px; margin-bottom: 24px;
  font-size: 13px; font-weight: 700; color: var(--amber);
  letter-spacing: 0.04em;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--amber); }
.hero-desc { font-size: 18px; color: var(--slate-mid); margin-bottom: 36px; max-width: 480px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid var(--border); }
.hero-stat-num { font-family: var(--font-head); font-size: 40px; font-weight: 900; color: var(--slate); line-height: 1; }
.hero-stat-num span { color: var(--amber); }
.hero-stat-label { font-size: 12px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ── HERO RIGHT CARD ── */
.hero-card {
  background: var(--white); border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 40px 36px;
  border: 1px solid var(--border);
}
.hero-card-title {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--slate); margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.warning-sign {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.warning-sign:last-child { border: none; padding-bottom: 0; }
.warning-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  margin-top: 2px;
}
.warning-icon.red  { background: var(--red-pale); }
.warning-icon.amber { background: var(--amber-pale); }
.warning-icon.teal { background: var(--teal-light); }
.warning-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--slate); margin-bottom: 2px; }
.warning-text span { font-size: 13px; color: var(--gray); }

/* ── STATS SECTION ── */
.stats-section { background: var(--slate); }
.stats-section .eyebrow { color: var(--amber-light); }
.stats-section h2 { color: var(--white); }
.stats-grid-seniors {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin-top: 56px;
}
.stat-card-s {
  background: rgba(255,255,255,0.05);
  padding: 40px 28px; text-align: center;
  transition: background var(--transition);
}
.stat-card-s:hover { background: rgba(255,255,255,0.09); }
.stat-num-s {
  font-family: var(--font-head); font-size: clamp(40px,4vw,60px);
  font-weight: 900; color: var(--amber-light); line-height: 1; margin-bottom: 10px;
}
.stat-label-s { font-size: 14px; color: var(--gray-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-source-s { font-size: 11px; color: var(--gray); margin-top: 8px; font-style: italic; }

/* ── THE CONVERSATION SECTION ── */
.conversation { background: var(--white); }
.conv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start; margin-top: 56px;
}
.conv-step {
  display: flex; gap: 20px; margin-bottom: 36px;
  padding-bottom: 36px; border-bottom: 1px solid var(--border);
}
.conv-step:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }
.conv-step-num {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--amber); color: var(--white);
  font-family: var(--font-head); font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.conv-step h4 { margin-bottom: 8px; }
.conv-step p { font-size: 15px; }

.conv-aside {
  background: var(--cream); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 36px 32px;
  position: sticky; top: 100px;
}
.conv-aside h3 { margin-bottom: 20px; }
.say-block { margin-bottom: 16px; }
.say-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 6px;
}
.say-label.avoid { color: var(--red-soft); }
.say-label.better { color: var(--teal); }
.say-text {
  padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; line-height: 1.6; font-style: italic;
}
.say-text.avoid { background: var(--red-pale); color: #7A1B14; border-left: 3px solid var(--red-soft); }
.say-text.better { background: var(--teal-light); color: #124F48; border-left: 3px solid var(--teal); }

/* ── WARNING SIGNS SECTION ── */
.warning-section { background: var(--cream); }
.warning-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.warning-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 32px 28px;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.warning-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--amber); }
.warning-card-icon { font-size: 36px; margin-bottom: 16px; }
.warning-card h4 { margin-bottom: 10px; }
.warning-card p { font-size: 14px; }
.urgency-tag {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 14px;
}
.urgency-tag.high   { background: var(--red-pale); color: var(--red-soft); }
.urgency-tag.medium { background: var(--amber-pale); color: var(--amber); }
.urgency-tag.monitor { background: var(--teal-light); color: var(--teal); }

/* ── LIABILITY SECTION ── */
.liability { background: var(--slate-mid); }
.liability .eyebrow { color: var(--amber-light); }
.liability h2 { color: var(--white); }
.liability .section-intro { color: var(--gray-light); max-width: 620px; }
.liability-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.liability-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 36px 28px;
  transition: all var(--transition);
}
.liability-card:hover { background: rgba(255,255,255,0.11); border-color: rgba(212,130,10,0.4); }
.liability-icon { font-size: 36px; margin-bottom: 18px; }
.liability-card h4 { color: var(--white); margin-bottom: 12px; font-size: 18px; }
.liability-card p { font-size: 14px; color: var(--gray-light); line-height: 1.7; }
.liability-note {
  margin-top: 48px; padding: 28px 36px;
  background: rgba(212,130,10,0.12); border-radius: var(--radius);
  border: 1px solid rgba(212,130,10,0.25);
  display: flex; align-items: flex-start; gap: 16px;
}
.liability-note-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.liability-note p { font-size: 14px; color: var(--gray-light); margin: 0; }
.liability-note strong { color: var(--amber-light); }

/* ── HOW IT WORKS ── */
.how { background: var(--white); }
.steps-s {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px; position: relative;
}
.steps-s::before {
  content: '';
  position: absolute; top: 36px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--amber), var(--amber-light));
  z-index: 0;
}
.step-s { text-align: center; position: relative; z-index: 1; }
.step-s-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 26px; font-weight: 900;
  color: var(--amber); margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--cream);
  transition: all var(--transition);
}
.step-s:hover .step-s-num { background: var(--amber); color: var(--white); transform: scale(1.08); }
.step-s h4 { margin-bottom: 8px; font-size: 17px; }
.step-s p  { font-size: 14px; max-width: 220px; margin: 0 auto; }

/* ── CAMERA SECTION ── */
.camera-s { background: var(--cream); }
.camera-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; margin-top: 48px;
}
.camera-card {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--amber); padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.camera-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.camera-spec {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 14px 16px; border: 1px solid var(--border);
}
.camera-spec-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.camera-spec-value { font-size: 14px; font-weight: 700; color: var(--slate); }
.detect-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.detect-list li {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid var(--border); font-size: 14px; font-weight: 600; color: var(--slate-mid);
  transition: border-color var(--transition);
}
.detect-list li:hover { border-color: var(--amber); }
.detect-list li .di { font-size: 18px; flex-shrink: 0; }

/* ── PRICING ── */
.pricing-s { background: var(--white); }
.pricing-card-s {
  max-width: 520px; margin: 56px auto 0;
  background: var(--cream); border-radius: 20px;
  border: 2px solid var(--amber); padding: 52px 44px;
  box-shadow: var(--shadow-lg); position: relative;
  text-align: center;
}
.pricing-badge-s {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--white);
  padding: 5px 22px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; white-space: nowrap;
}
.pricing-amount-s {
  font-family: var(--font-head); font-size: 72px; font-weight: 900;
  color: var(--slate); line-height: 1;
}
.pricing-amount-s sup { font-size: 32px; vertical-align: super; }
.pricing-amount-s sub { font-size: 20px; color: var(--gray); font-family: var(--font-body); }
.pricing-note-s { font-size: 13px; color: var(--gray); margin: 8px 0 28px; }
.pricing-divider-s { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-list-s { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-list-s li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--slate-mid); padding: 10px 0;
  border-bottom: 1px solid var(--border); font-weight: 500;
}
.pricing-list-s li:last-child { border: none; }
.pricing-list-s li::before { content: '✓'; color: var(--amber); font-weight: 900; flex-shrink: 0; }
.pricing-value-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 16px; max-width: 720px; margin: 28px auto 0;
}
.pricing-value-item {
  padding: 18px 16px; background: var(--cream);
  border-radius: var(--radius-sm); border: 1px solid var(--border); text-align: center;
}
.pricing-value-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 4px; }
.pricing-value-text { font-size: 13px; color: var(--slate-mid); font-weight: 500; line-height: 1.4; }

/* ── TESTIMONIALS ── */
.testi-s { background: var(--cream); }
.testi-grid-s { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.testi-card-s {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 32px 28px;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.testi-card-s:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--amber); }
.testi-stars-s { font-size: 16px; margin-bottom: 14px; color: var(--amber-light); letter-spacing: 2px; }
.testi-text-s { font-size: 15px; font-style: italic; color: var(--slate-mid); line-height: 1.75; margin-bottom: 24px; }
.testi-author-s { display: flex; align-items: center; gap: 14px; }
.testi-avatar-s {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--amber-pale); border: 2px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 15px; font-weight: 900; color: var(--amber);
}
.testi-name-s { font-weight: 700; color: var(--slate); font-size: 15px; }
.testi-role-s { font-size: 12px; color: var(--gray); }

/* ── CTA BAND ── */
.cta-s {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-mid) 100%);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-s::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212,130,10,0.12) 0%, transparent 70%);
}
.cta-s h2 { color: var(--white); position: relative; margin-bottom: 16px; }
.cta-s p { color: var(--gray-light); font-size: 18px; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }
.cta-actions-s { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FAQ ── */
.faq-s { background: var(--white); }
.faq-list-s { max-width: 760px; margin: 56px auto 0; }
.faq-item-s { border-bottom: 1px solid var(--border); }
.faq-question-s {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-align: left;
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--slate); transition: color var(--transition);
}
.faq-question-s:hover { color: var(--amber); }
.faq-icon-s { font-size: 20px; color: var(--amber); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item-s.open .faq-icon-s { transform: rotate(45deg); }
.faq-answer-s { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-s p { color: var(--slate-light); font-size: 16px; padding-bottom: 22px; line-height: 1.75; }

/* ── FOOTER ── */
.footer-s {
  background: var(--slate); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 32px;
}
.footer-grid-s { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-s { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--white); }
.footer-brand-s .dg { color: var(--amber-light); }
.footer-desc-s { font-size: 14px; color: var(--gray); margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-heading-s { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 18px; }
.footer-links-s { list-style: none; }
.footer-links-s li { margin-bottom: 10px; }
.footer-links-s a { font-size: 14px; color: var(--gray); transition: color var(--transition); font-weight: 500; }
.footer-links-s a:hover { color: var(--white); }
.footer-bottom-s {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy-s { font-size: 13px; color: var(--gray); }
.footer-legal-s { display: flex; gap: 24px; }
.footer-legal-s a { font-size: 13px; color: var(--gray); }
.footer-legal-s a:hover { color: var(--white); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-grid    { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-card    { display: none; }
  .conv-grid    { grid-template-columns: 1fr; }
  .conv-aside   { position: static; }
  .warning-grid { grid-template-columns: 1fr 1fr; }
  .liability-grid { grid-template-columns: 1fr; }
  .steps-s      { grid-template-columns: 1fr 1fr; }
  .steps-s::before { display: none; }
  .camera-grid  { grid-template-columns: 1fr; }
  .testi-grid-s { grid-template-columns: 1fr; }
  .footer-grid-s { grid-template-columns: 1fr 1fr; }
  .pricing-value-grid { grid-template-columns: 1fr; }
  .stats-grid-seniors { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .navbar-nav { display: none; }
  .navbar-nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--cream); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
  .warning-grid { grid-template-columns: 1fr; }
  .steps-s { grid-template-columns: 1fr; }
  .footer-grid-s { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 24px; }
}
