/* ============================================================
   DESIGN: Modern Dark SaaS — Outfit font, Deep Navy + Amber Gold
   ============================================================ */

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds */
  --bg:        #060e1f;
  --bg-2:      #0b1630;
  --bg-card:   #0e1d3a;
  --bg-lite:   #f0f4ff;
  --bg-lite-2: #e4ecff;

  /* Text */
  --white:     #ffffff;
  --w70:       rgba(255,255,255,.70);
  --w45:       rgba(255,255,255,.45);
  --w20:       rgba(255,255,255,.20);
  --w08:       rgba(255,255,255,.08);
  --ink:       #080f20;
  --grey-dk:   #3d4f6e;

  /* Accent — electric blue */
  --gold:      #2f7ef5;
  --gold-lt:   #5b9dff;
  --gold-dim:  rgba(47,126,245,.18);
  --gold-glow: rgba(47,126,245,.30);
  --gold-pale: #eef4ff;

  /* Borders */
  --bd-dk: rgba(255,255,255,.10);
  --bd-lt: #c8d8f0;

  --font: 'Outfit', system-ui, sans-serif;
  --max-w: 1100px;
  --r: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Utilities --------------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.label::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  display: inline-block;
}

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  transition: all .2s ease;
  letter-spacing: .01em;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  padding: 14px 30px;
  font-size: 15px;
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: 0 0 0 6px var(--gold-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--bd-dk);
  color: var(--w70);
  padding: 13px 24px;
  font-size: 14px;
}
.btn-ghost:hover { border-color: var(--w20); color: var(--white); }

.btn-ghost-dark {
  background: transparent;
  border: 1.5px solid var(--bd-lt);
  color: var(--ink);
  padding: 13px 24px;
  font-size: 14px;
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

/* --- Animations -------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,16,30,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd-dk);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 38px;
  width: 38px;
  border-radius: 9px;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--w70);
  letter-spacing: -.01em;
}
.nav-logo-text strong {
  color: var(--white);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--w45);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .18s, background .18s;
}
.nav-link:hover { color: var(--white); background: var(--w08); }

.nav-right { display: flex; align-items: center; gap: 10px; }

/* ============================================================
   HERO — centered, screenshot-inspired
   ============================================================ */
.hero {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -5%, rgba(47,126,245,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(47,126,245,.08) 0%, transparent 60%);
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
}

.hero .container { position: relative; z-index: 1; }

/* Eyebrow tag */
.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeIn .6s ease .2s forwards;
}

.hero h1 {
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 22px;
  opacity: 0;
  animation: fadeUp .65s cubic-bezier(.22,1,.36,1) .3s forwards;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: 18px;
  color: var(--w45);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.65;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp .65s cubic-bezier(.22,1,.36,1) .42s forwards;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .65s cubic-bezier(.22,1,.36,1) .52s forwards;
}

/* Trust pills row */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn .6s ease .68s forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--w45);
  font-weight: 500;
}
.trust-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
}

/* Stats band below hero */
.hero-stats {
  margin-top: 72px;
  border-top: 1px solid var(--bd-dk);
  padding-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  opacity: 0;
  animation: fadeUp .65s cubic-bezier(.22,1,.36,1) .78s forwards;
}
.hero-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--bd-dk);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--w45);
  line-height: 1.45;
  font-weight: 500;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  padding: 88px 0;
  background: var(--bg-lite);
}

.problem-header {
  margin-bottom: 52px;
}
.problem-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 10px;
}
.problem-header p {
  font-size: 16px;
  color: var(--grey-dk);
  line-height: 1.7;
}
.problem .label { color: var(--gold); }
.problem .label::before { background: var(--gold); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--bd-lt);
  border-top: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.pain-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.pain-num {
  font-size: 38px;
  font-weight: 900;
  color: #ece4dc;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.03em;
}
.pain-card strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
}
.pain-card p {
  font-size: 14px;
  color: var(--grey-dk);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: 96px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--bd-dk);
  border-bottom: 1px solid var(--bd-dk);
}

.how-header { margin-bottom: 64px; }
.how-header .label { margin-bottom: 14px; }

.headline {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--white);
}

.subhead { font-size: 16.5px; color: var(--w45); line-height: 1.7; margin-top: 12px; }

.steps { position: relative; display: flex; flex-direction: column; gap: 0; }
.steps::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: 64px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: .3;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: start;
  padding: 0 0 56px;
}
.step:last-child { padding-bottom: 0; }

.step-num-wrap { flex-shrink: 0; position: relative; z-index: 1; }
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: rgba(240,160,48,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.step-n { font-size: 22px; font-weight: 900; color: var(--gold); line-height: 1; }
.step-w { font-size: 7.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(240,160,48,.6); margin-top: 2px; }

.step-body { padding-top: 10px; }
.step-body h3 { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 10px; letter-spacing: -.02em; line-height: 1.2; }
.step-body > p { font-size: 15px; color: var(--w45); max-width: 580px; line-height: 1.7; margin-bottom: 18px; }

.step-bullets { display: flex; flex-direction: column; gap: 9px; }
.step-bullet { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--w45); line-height: 1.55; }
.bullet-arrow { color: var(--gold); font-weight: 700; font-size: 12px; flex-shrink: 0; padding-top: 2px; }

/* ============================================================
   CUSTOM BUILD
   ============================================================ */
.custom-build {
  padding: 96px 0;
  background: var(--bg-lite);
  border-bottom: 1px solid var(--bd-lt);
}
.cb-header { margin-bottom: 52px; }
.cb-header .headline { color: var(--ink); }
.cb-header .subhead { color: var(--grey-dk); }
.custom-build .label { color: var(--gold); }
.custom-build .label::before { background: var(--gold); }

.cb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.cb-card {
  background: #fff;
  border: 1px solid var(--bd-lt);
  border-radius: var(--r);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.cb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.cb-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-3px); }
.cb-card:hover::before { transform: scaleX(1); }

.cb-step-label { font-size: 10.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.cb-card h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 12px; letter-spacing: -.02em; line-height: 1.25; }
.cb-card p { font-size: 14.5px; color: var(--grey-dk); line-height: 1.65; }

/* ============================================================
   KIT
   ============================================================ */
.kit {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--bd-dk);
  border-bottom: 1px solid var(--bd-dk);
}
.kit-header { margin-bottom: 56px; }
.kit-header .subhead { color: var(--w45); }

.kit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.kit-card {
  background: var(--bg-card);
  border: 1px solid var(--bd-dk);
  border-radius: var(--r);
  padding: 32px 30px;
  transition: border-color .2s, transform .2s, background .2s;
}
.kit-card:hover { border-color: rgba(240,160,48,.3); background: var(--bg-2); transform: translateY(-2px); }

.kit-icon-box {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(240,160,48,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  margin-bottom: 18px;
}
.kit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.kit-card p {
  font-size: 14.5px;
  color: var(--w45);
  line-height: 1.68;
}

/* ============================================================
   ROOM MANAGEMENT
   ============================================================ */
.room { padding: 96px 0; background: var(--bg-lite); }
.room-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.room-content .label { margin-bottom: 14px; }
.room-content .headline { color: var(--ink); margin-bottom: 18px; }
.room-content > p { font-size: 15.5px; color: var(--grey-dk); line-height: 1.72; margin-bottom: 12px; }
.room .label { color: var(--gold); }
.room .label::before { background: var(--gold); }

.room-rules { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.room-rule { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--grey-dk); line-height: 1.55; }
.rule-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-pale); border: 1.5px solid rgba(240,160,48,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--gold); font-weight: 900; flex-shrink: 0; margin-top: 1px;
}

.room-stats { display: flex; flex-direction: column; gap: 16px; }
.room-stat {
  background: var(--bg-2);
  border: 1px solid var(--bd-dk);
  border-radius: var(--r);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
  transition: transform .2s, border-color .2s;
}
.room-stat:hover { transform: translateX(6px); border-color: rgba(240,160,48,.3); }
.room-stat-num { font-size: 48px; font-weight: 900; color: var(--gold); line-height: 1; letter-spacing: -.03em; flex-shrink: 0; min-width: 80px; }
.room-stat-detail strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.room-stat-detail span { font-size: 13px; color: var(--w45); line-height: 1.4; }

/* ============================================================
   PILOT
   ============================================================ */
.pilot {
  padding: 96px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bd-dk);
}
.pilot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(47,126,245,.14) 0%, transparent 70%);
  pointer-events: none;
}
.pilot .container { position: relative; z-index: 1; max-width: 820px; }
.pilot .label { justify-content: center; margin-bottom: 18px; }

.pilot-headline { font-size: clamp(32px, 5vw, 58px); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -.03em; margin-bottom: 14px; }
.pilot-headline span { color: var(--gold); }
.pilot-sub { font-size: 17px; color: var(--w45); max-width: 480px; margin: 0 auto 52px; line-height: 1.65; }

.terms-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.term-box {
  background: var(--bg-card);
  border: 1px solid var(--bd-dk);
  border-radius: var(--r);
  padding: 30px 36px; flex: 1 1 170px; max-width: 210px;
  transition: border-color .2s, background .2s;
}
.term-box:hover { border-color: rgba(240,160,48,.4); background: rgba(240,160,48,.06); }
.term-num { font-size: 42px; font-weight: 900; color: var(--gold); line-height: 1; letter-spacing: -.03em; margin-bottom: 8px; }
.term-label { font-size: 13px; color: var(--w45); line-height: 1.45; font-weight: 500; }
.pilot-note { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,.25); }

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist-section { padding: 96px 0; background: var(--bg-lite-2); border-top: 1px solid var(--bd-lt); }
.checklist-header { margin-bottom: 56px; }
.checklist-header .headline { color: var(--ink); }
.checklist-header .subhead { color: var(--grey-dk); }
.checklist-section .label { color: var(--gold); }
.checklist-section .label::before { background: var(--gold); }

.cl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.cl-col-title { font-size: 10.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.cl-col-title::after { content: ''; flex: 1; height: 1px; background: var(--bd-lt); }
.cl-items { display: flex; flex-direction: column; gap: 10px; }
.cl-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--grey-dk); line-height: 1.55; }
.cl-check {
  width: 20px; height: 20px; border-radius: 5px;
  background: var(--gold-pale); border: 1.5px solid rgba(240,160,48,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 9.5px; font-weight: 900; color: var(--gold); flex-shrink: 0; margin-top: 1px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 96px 0; background: var(--bg-2); border-top: 1px solid var(--bd-dk); }
.faq-header { margin-bottom: 48px; }
.faq .headline { color: var(--white); }
.faq-list { max-width: 740px; border-top: 1px solid var(--bd-dk); }

details { border-bottom: 1px solid var(--bd-dk); padding: 22px 0; }
details summary { font-size: 15.5px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--white); user-select: none; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--gold); flex-shrink: 0; line-height: 1; }
details[open] summary::after { content: '−'; }
details p, details ul { margin-top: 14px; font-size: 15px; color: var(--w45); line-height: 1.7; max-width: 640px; }
details ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; }
details ul li::before { content: '→ '; color: var(--gold); font-weight: 700; }

/* ============================================================
   FORM
   ============================================================ */
.form-section { padding: 96px 0; background: var(--bg-lite); border-top: 1px solid var(--bd-lt); }
.form-section .label { color: var(--gold); }
.form-section .label::before { background: var(--gold); }

.form-layout { display: grid; grid-template-columns: 1fr 500px; gap: 80px; align-items: start; }
.form-left .headline { color: var(--ink); margin-bottom: 14px; }
.form-left p { font-size: 15.5px; color: var(--grey-dk); line-height: 1.7; margin-bottom: 32px; }

.form-features { display: flex; flex-direction: column; gap: 12px; }
.form-feature { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--grey-dk); line-height: 1.5; }
.ff-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-pale); border: 1.5px solid rgba(240,160,48,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--gold); font-weight: 900; flex-shrink: 0; margin-top: 1px;
}

.form-card {
  background: var(--bg-2);
  border: 1px solid var(--bd-dk);
  border-radius: 16px;
  padding: 44px 38px;
  box-shadow: 0 24px 64px rgba(7,16,30,.4);
}
.form-card-title { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 4px; letter-spacing: -.02em; }
.form-card-sub { font-size: 14px; color: var(--w45); margin-bottom: 30px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

label { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--w45); }

input, select, textarea {
  font-family: var(--font);
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1.5px solid var(--bd-dk);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255,255,255,.05);
  width: 100%;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--w20); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: rgba(240,160,48,.06); box-shadow: 0 0 0 3px rgba(240,160,48,.12); }
textarea { resize: vertical; min-height: 86px; }
select { appearance: none; cursor: pointer; }
select option { background: var(--bg-2); }

.form-card-eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.schedule-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px 24px;
  border-radius: 10px;
  margin-top: 8px;
  letter-spacing: .01em;
}
.form-card-divider {
  width: 100%;
  height: 1px;
  background: var(--bd-dk);
  margin: 28px 0;
}
.form-card-steps { display: flex; flex-direction: column; gap: 14px; }
.form-card-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  color: var(--w45);
  line-height: 1.5;
}
.form-card-step strong { color: var(--white); }
.fcs-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(240,160,48,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--gold);
  flex-shrink: 0;
}
.form-note { font-size: 12px; color: var(--w45); text-align: center; margin-top: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #040b16; border-top: 1px solid var(--bd-dk); padding: 36px 32px; text-align: center; color: rgba(255,255,255,.28); font-size: 13px; line-height: 1.8; }
footer strong { color: rgba(255,255,255,.55); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat { border-bottom: 1px solid var(--bd-dk); padding-bottom: 24px; }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: none; }
  .problem-header { grid-template-columns: 1fr; gap: 14px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .cb-grid { grid-template-columns: 1fr; }
  .kit-grid { grid-template-columns: 1fr; }
  .room-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-layout { grid-template-columns: 1fr; gap: 48px; }
  .cl-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .kit-grid { grid-template-columns: 1fr; }
  .kit-card { padding: 24px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 54px 1fr; gap: 16px; }
  .steps::before { left: 26px; }
  .term-box { max-width: 100%; }
  .form-card { padding: 32px 22px; }
}
