/* ===== ASM Race Lab Brand Tokens ===== */
:root {
  --black:   #080808; /* Blackout */
  --white:   #F2F2F2; /* Grid White */
  --cyan:    #00E5FF; /* Apex Cyan */
  --lime:    #C6FF00; /* Podium Lime */
  --gray:    #444444;
  --gray-light: #1A1A1A;
  --border-gray: #2A2A2A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  padding: 0 10px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }

/* ===== Scroll-reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 18px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease, outline-color 0.12s ease;
}
.btn-primary {
  background: var(--cyan);
  color: var(--black);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.03); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-lg { font-size: 21px; padding: 18px 40px; }
.btn-sm { font-size: 13px; padding: 9px 18px; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.92);
  border-bottom: 1px solid var(--border-gray);
  backdrop-filter: blur(4px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img--footer { height: 64px; }
.main-nav { display: flex; gap: 32px; margin-left: auto; }
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.12s ease;
}
.main-nav a:hover { color: var(--cyan); }
.nav-cta { flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 88px;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  overflow: hidden;
}
/* Hard-stop striped pattern ("lane lines"), not a smooth blend gradient,
   so it stays compliant with the flat-design / no-gradient brand rule. */
.hero-lanes {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.07;
  background-image: repeating-linear-gradient(
    -35deg,
    var(--cyan) 0px,
    var(--cyan) 3px,
    transparent 3px,
    transparent 90px
  );
  background-size: 200% 200%;
  animation: asmLane 16s linear infinite;
}
@keyframes asmLane {
  0%   { background-position: 0 0; }
  100% { background-position: 600px 300px; }
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--black);
  background: var(--lime);
  padding: 6px 12px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 72px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 20px;
  color: #3A3A3A;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual img { width: 100%; max-width: 420px; height: auto; }

/* ===== Statement banner ===== */
.statement-banner {
  position: relative;
  padding: 56px 0;
  background: var(--black);
  border-bottom: 1px solid var(--border-gray);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Checkered-flag pattern: two offset hard-stop gradient layers, animated
   via background-position only (no blur/glow), kept very low-opacity so
   the statement text stays the focal point. */
.statement-flag {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(45deg, var(--white) 25%, transparent 25%, transparent 75%, var(--white) 75%),
    linear-gradient(45deg, var(--white) 25%, transparent 25%, transparent 75%, var(--white) 75%);
  background-size: 64px 64px;
  background-position: 0 0, 32px 32px;
  animation: asmCheck 9s linear infinite;
}
@keyframes asmCheck {
  0%   { background-position: 0 0, 32px 32px; }
  100% { background-position: 128px 0, 160px 32px; }
}
.statement-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 38px;
  color: var(--white);
  text-align: center;
  padding: 0 24px;
}

/* ===== Section generic ===== */
section { padding: 96px 0; border-bottom: 1px solid var(--border-gray); }
.section-title {
  font-size: 42px;
  margin-bottom: 16px;
  border-left: 6px solid var(--cyan);
  padding-left: 16px;
}
.section-lead {
  font-size: 19px;
  color: #3A3A3A;
  max-width: 680px;
  margin-bottom: 24px;
}

/* ===== Stats bar ===== */
.stats-bar {
  background: var(--black);
  border-bottom: 1px solid var(--border-gray);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-block { padding: 0 12px; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C7C7C7;
  font-weight: 600;
}

/* ===== Brand story (aSSIMilation) ===== */
.brand-story { background: var(--black); }
.brand-story-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.brand-story .section-title,
.brand-story .section-lead { color: var(--white); }
.brand-story-word {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--lime);
  letter-spacing: 0.01em;
  margin: 8px 0 24px;
}
.brand-story-copy p {
  color: #C7C7C7;
  font-size: 17px;
  margin-bottom: 16px;
  max-width: 560px;
}
.brand-story-visual {
  display: flex;
  justify-content: center;
}
.brand-story-visual img { width: 100%; max-width: 380px; height: auto; }

/* ===== Pull quote ===== */
.pull-quote {
  background: var(--white);
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: 36px;
  text-transform: uppercase;
  max-width: 820px;
  margin: 0 auto 16px;
  line-height: 1.25;
}
.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ===== Who It's For (check-list, page-level) ===== */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  max-width: 720px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #3A3A3A;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 700;
}
/* check-list rendered on a dark surface needs light text */
.dark-surface .check-list li { color: #C7C7C7; }
.dark-surface .check-list li::before { color: var(--lime); }

/* ===== What We Offer ===== */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.offering-card {
  background: var(--gray-light);
  border: 1px solid var(--border-gray);
  border-left: 4px solid var(--lime);
  padding: 28px 24px;
  transition: transform 0.15s ease, outline-color 0.15s ease;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.offering-card:hover { transform: scale(1.025); outline-color: var(--cyan); }
.offering-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.offering-card p { color: #C7C7C7; font-size: 16px; }

/* ===== How It Works ===== */
/* Locked to 5 columns so all steps sit on a single row on desktop;
   collapses to fewer columns, then a single stacked column, as the
   viewport narrows (see responsive block). */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.step {
  background: var(--white);
  border: 1px solid #D8D8D8;
  border-top: 4px solid var(--cyan);
  padding: 22px 16px;
  transition: transform 0.15s ease, outline-color 0.15s ease;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.step:hover { transform: scale(1.03); outline-color: var(--cyan); }
.step-number {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--cyan);
  margin-bottom: 10px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: #3A3A3A; font-size: 15px; line-height: 1.45; }

/* ===== Service Area ===== */
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-area-card {
  background: var(--gray-light);
  border: 1px solid var(--border-gray);
  padding: 26px 24px;
}
.service-area-card h3 { color: var(--white); font-size: 22px; margin-bottom: 14px; }
.service-area-card p {
  color: #C7C7C7;
  font-size: 15px;
  margin-top: 14px;
}
.service-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.service-chip {
  font-family: var(--font-body);
  font-size: 13px;
  background: var(--black);
  border: 1px solid var(--border-gray);
  color: var(--white);
  padding: 7px 12px;
}
.service-area-note {
  margin-top: 24px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 15px;
  max-width: 680px;
}

/* ===== Book Your Event form ===== */
.book-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  max-width: 680px;
}
.book-row { display: flex; gap: 12px; flex-wrap: wrap; }
.book-row > * { flex: 1; min-width: 200px; }
.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  background: var(--gray-light);
  border: 1px solid var(--border-gray);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  resize: vertical;
}
.book-form input::placeholder,
.book-form textarea::placeholder { color: #888; }
.book-form select { appearance: none; cursor: pointer; }
.book-form select option { background: var(--gray-light); color: var(--white); }
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus { outline: none; border-color: var(--cyan); }
.book-form .btn { align-self: flex-start; }
.form-note { margin-top: 16px; color: var(--lime); font-size: 14px; }
.form-disclaimers {
  margin-top: 20px;
  max-width: 680px;
  font-size: 13px;
  color: #6A6A6A;
  line-height: 1.5;
}

/* ===== Closing CTA ===== */
.closing-cta {
  background: var(--black);
  text-align: center;
}
.closing-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.closing-cta h2 {
  font-size: 38px;
  color: var(--white);
  max-width: 640px;
}

/* ===== Footer ===== */
.site-footer { padding: 48px 0; border-bottom: none; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 14px; color: #3A3A3A; }
.footer-nav a:hover { color: var(--cyan); }
.footer-copy { font-size: 13px; color: #666; width: 100%; margin-top: 24px; }
.footer-sub { font-size: 12px; color: #999; }

/* ===== Dark surface helper ===== */
.dark-surface { background: var(--black); }
.dark-surface .section-title,
.dark-surface h2, .dark-surface h3 { color: var(--white); }
.dark-surface .section-lead { color: #C7C7C7; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--gray-light);
    border-bottom: 1px solid var(--border-gray);
    padding: 16px 24px;
    gap: 16px;
  }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 240px; }
  .hero-title { font-size: 48px; }
  .statement-text { font-size: 26px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .brand-story-layout { grid-template-columns: 1fr; }
  .brand-story-visual img { max-width: 220px; }
  .pull-quote blockquote { font-size: 26px; }
  .offerings-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .service-area-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; }
  .closing-cta h2 { font-size: 28px; }
  .book-row { flex-direction: column; }
  .book-row > * { min-width: 0; }
}

@media (max-width: 1024px) and (min-width: 861px) {
  /* Keep the included-grid balanced (3 rows of 2) at tablet widths,
     rather than squeezing 3 narrow columns in. */
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-lanes, .statement-flag { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ============================================================
   Nav dropdown ("What We Offer")
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.12s ease;
}
.nav-dropdown-toggle::after { content: "\25BE"; font-size: 10px; position: relative; top: 1px; }
.nav-dropdown-toggle:hover { color: var(--cyan); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--gray-light);
  border: 1px solid var(--border-gray);
  border-top: 3px solid var(--cyan);
  min-width: 270px;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 150;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.12s ease, background 0.12s ease;
}
.nav-dropdown-menu a:hover { color: var(--cyan); background: rgba(0, 229, 255, 0.08); }

@media (max-width: 860px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: none;
    border: none;
    padding: 4px 0 8px 16px;
    min-width: 0;
  }
  .nav-dropdown.is-open .nav-dropdown-menu { display: flex; flex-direction: column; }
}

/* ============================================================
   Intro / start-lights entrance animation
   Flat-design compliant: solid color fills + transform/opacity
   transitions only, no blur or glow. Skips entirely under
   prefers-reduced-motion (see rule at bottom of this block).
   ============================================================ */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.intro-overlay.intro-done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-lights { display: flex; gap: 18px; }
.intro-light {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 2px solid var(--border-gray);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.intro-light.lit { background: var(--cyan); border-color: var(--cyan); }
.intro-light.go { background: var(--lime); border-color: var(--lime); }
.intro-tag {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.intro-tag.show { opacity: 1; transform: translateY(0); }

/* Hero "race-in" entrance, driven by body.intro-complete */
body:not(.intro-complete) .hero-copy .eyebrow { opacity: 0; transform: translateY(-16px); }
body:not(.intro-complete) .hero-copy .hero-title { opacity: 0; transform: translateX(-70px); }
body:not(.intro-complete) .hero-copy .hero-sub { opacity: 0; transform: translateY(20px); }
body:not(.intro-complete) .hero-copy .hero-actions { opacity: 0; transform: translateY(20px); }
body:not(.intro-complete) .hero-visual { opacity: 0; transform: translateX(90px); }

.hero-copy .eyebrow { transition: opacity 0.5s ease 0.05s, transform 0.5s ease 0.05s; }
.hero-copy .hero-title { transition: opacity 0.6s ease 0.15s, transform 0.6s cubic-bezier(.2,.7,.3,1) 0.15s; }
.hero-copy .hero-sub { transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s; }
.hero-copy .hero-actions { transition: opacity 0.6s ease 0.45s, transform 0.6s ease 0.45s; }
.hero-visual { transition: opacity 0.7s ease 0.2s, transform 0.7s cubic-bezier(.2,.8,.2,1.05) 0.2s; }

body.intro-complete .hero-copy .eyebrow,
body.intro-complete .hero-copy .hero-title,
body.intro-complete .hero-copy .hero-sub,
body.intro-complete .hero-copy .hero-actions,
body.intro-complete .hero-visual {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none; }
  .hero-copy .eyebrow,
  .hero-copy .hero-title,
  .hero-copy .hero-sub,
  .hero-copy .hero-actions,
  .hero-visual {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   Strategy list (borrowed pattern for the Professional page's
   "why it works" section)
   ============================================================ */
.strategy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}
.strategy-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--gray-light);
  border: 1px solid var(--border-gray);
  padding: 28px 24px;
  transition: transform 0.15s ease, outline-color 0.15s ease;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.strategy-item:hover { transform: scale(1.015); outline-color: var(--cyan); }
.strategy-mark {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--cyan);
  line-height: 1;
}
.strategy-copy h3 { font-size: 20px; margin-bottom: 6px; color: var(--white); }
.strategy-copy p { color: #C7C7C7; font-size: 16px; }

/* ============================================================
   Offering card as a link (homepage cards are now clickable)
   ============================================================ */
.offering-card-link { display: block; text-decoration: none; }
.offering-card-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* ============================================================
   "What's Included" cards (page-level, cyan top border), the
   same visual convention SimWorks uses for "what you get in
   every booking" as opposed to "what kind of event this fits"
   ============================================================ */
/* Locked to 3 columns (not auto-fit) so 6 cards always land evenly as
   two full rows of 3, rather than 4-then-2. */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.included-card { display: flex; flex-direction: column; }
.included-card {
  background: var(--white);
  border: 1px solid #D8D8D8;
  border-top: 4px solid var(--cyan);
  padding: 26px 22px;
  transition: transform 0.15s ease, outline-color 0.15s ease;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.included-card:hover { transform: scale(1.025); outline-color: var(--cyan); }
.included-card h3 { font-size: 19px; margin-bottom: 8px; }
.included-card p { color: #3A3A3A; font-size: 16px; }

/* ============================================================
   Benefit triptych (mimics the "Built for Event Activation"
   reference layout): headline + subhead, a divider rule, then
   3 light-gray rounded cards.
   ============================================================ */
.section-divider {
  border: none;
  border-top: 1px solid var(--border-gray);
  margin: 32px 0 40px;
}
.dark-surface .section-divider,
.section-divider--dark { border-top-color: var(--border-gray); }
.section-divider--light { border-top-color: #D8D8D8; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: var(--gray-light);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  padding: 26px 24px;
  transition: transform 0.15s ease, outline-color 0.15s ease;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.benefit-card:hover { transform: scale(1.02); outline-color: var(--cyan); }
.benefit-card h3 { font-size: 19px; margin-bottom: 8px; color: var(--white); }
.benefit-card p { color: #C7C7C7; font-size: 16px; }
.benefit-closing {
  margin-top: 32px;
  text-align: center;
  font-size: 16px;
  color: #C7C7C7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Proof / stats-in-a-row (mimics the "Proof That Guests..."
   reference layout): label / big number / description, in
   columns separated by a vertical rule.
   ============================================================ */
.proof-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid var(--border-gray);
}
.proof-stat {
  padding: 28px 22px;
  text-align: center;
  border-left: 1px solid var(--border-gray);
}
.proof-stat:first-child { border-left: none; }
.proof-stat-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  font-weight: 700;
  margin-bottom: 10px;
}
.proof-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 10px;
}
.proof-stat-desc { font-size: 14px; color: #C7C7C7; }
.proof-closing {
  margin-top: 28px;
  text-align: center;
  font-size: 16px;
  color: #3A3A3A;
}

@media (max-width: 860px) {
  .proof-stat { border-left: none; border-top: 1px solid var(--border-gray); }
  .proof-stat:first-child { border-top: none; }
}

/* ============================================================
   Sub-page hero tweak: shorter min-height than the homepage
   hero so these pages get to their content faster
   ============================================================ */
.hero--subpage { min-height: 88vh; }
