/* ============================================================
   MOORE STRATEGY GROUP — LANDING PAGE STYLES
   Color Palette: Navy, Charcoal, White, Gray, Gold Accent
   ============================================================ */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --navy:         #0D1F3C;
  --navy-mid:     #122348;
  --navy-light:   #1A3260;
  --charcoal:     #2C3E50;
  --gold:         #D4AF37;
  --gold-light:   #E8C84A;
  --gold-dark:    #B8960C;
  --green:        #1a6b3a;
  --green-light:  #22883f;
  --white:        #FFFFFF;
  --off-white:    #F8F9FB;
  --gray-100:     #F1F3F6;
  --gray-200:     #E2E6EC;
  --gray-300:     #CBD2DC;
  --gray-500:     #8A95A3;
  --gray-700:     #4A5568;
  --text-primary: #1A202C;
  --text-body:    #3D4A5C;
  --text-muted:   #6B7A8D;
  --border:       #DDE3EC;
  --shadow-sm:    0 1px 3px rgba(13,31,60,0.08), 0 1px 2px rgba(13,31,60,0.05);
  --shadow-md:    0 4px 16px rgba(13,31,60,0.10), 0 2px 6px rgba(13,31,60,0.06);
  --shadow-lg:    0 10px 40px rgba(13,31,60,0.14), 0 4px 12px rgba(13,31,60,0.08);
  --shadow-xl:    0 20px 60px rgba(13,31,60,0.18);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --transition:   0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION PADDING ---- */
.section-pad { padding: 96px 0; }

/* ---- TYPOGRAPHY HELPERS ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-label.light { color: var(--gold-light); background: rgba(212,175,55,0.12); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,31,60,0.25);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-nav {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  padding: 9px 20px;
  font-size: 0.875rem;
}
.btn-nav:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 42px; font-size: 1.1rem; font-weight: 700; }
.btn-full { width: 100%; padding: 16px; font-size: 1rem; }

/* ---- ICON HELPERS ---- */
.icon-inline {
  width: 18px; height: 18px;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}
.icon-inline-sm {
  width: 14px; height: 14px;
  vertical-align: middle;
  margin-right: 5px;
  flex-shrink: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,31,60,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.brand-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e3a6e 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-content { padding-top: 20px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.trust-line {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* ---- HERO FORM CARD ---- */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 36px 32px;
  border: 1px solid var(--border);
}
.form-card-header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gray-200);
}
.form-card-header h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ---- FORM STYLES ---- */
.audit-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 16px; }
.form-row.two-col { flex-direction: row; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A8D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,31,60,0.08);
}
.form-group input::placeholder { color: var(--gray-500); }
.form-group input.error,
.form-group select.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}
.req { color: #e53e3e; margin-left: 2px; }
.optional { color: var(--gray-500); font-weight: 400; font-size: 0.78rem; }
.form-privacy {
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
  justify-content: center;
}

/* ---- FORM CONFIRMATION ---- */
.form-confirmation {
  text-align: center;
  padding: 32px 16px;
}
.confirm-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
}
.confirm-icon svg { width: 100%; height: 100%; }
.form-confirmation h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.35;
}
.form-confirmation p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0 28px;
}
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { background: var(--white); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.problem-text p {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
}
.problem-callout {
  background: var(--gray-100);
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--charcoal) !important;
  font-size: 0.97rem !important;
}

/* Fee Breakdown Card */
.fee-breakdown-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.fee-card-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
}
.fee-card-header svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.fee-list { padding: 8px 0; }
.fee-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}
.fee-list li:last-child { border-bottom: none; }
.fee-label { color: var(--text-body); }
.fee-val.confusing {
  font-weight: 700;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.8rem;
}
.fee-card-footer {
  background: var(--gray-100);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  border-top: 1.5px solid var(--border);
}
.fee-unknown {
  color: var(--gray-500);
  font-style: italic;
  font-weight: 500;
}

/* ============================================================
   PAIN POINTS SECTION
   ============================================================ */
.pain-section {
  background: var(--gray-100);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.pain-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.pain-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--gold);
}
.pain-icon {
  width: 44px; height: 44px;
  background: rgba(13,31,60,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pain-icon svg { width: 20px; height: 20px; color: var(--navy); }
.pain-item p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-body);
}
.pain-cta { text-align: center; }

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.solution-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.solution-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.8;
}
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}
.solution-list li svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.solution-list li strong { color: var(--white); }

/* Solution Visual Card */
.solution-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}
.solution-card-icon {
  width: 56px; height: 56px;
  margin-bottom: 20px;
}
.solution-card-icon svg { width: 100%; height: 100%; }
.solution-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 20px;
}
.audit-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audit-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.check-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.check-dot.green { background: #4ade80; }

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-section { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 0;
}
.step-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
}
.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--navy);
}
.step-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-icon svg { width: 22px; height: 22px; color: var(--white); }
.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 60px;
  color: var(--gray-300);
}
.step-connector svg { width: 40px; height: 16px; }
.steps-cta { text-align: center; margin-top: 52px; }

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section { background: var(--off-white); }
.benefits-inner {}
.benefits-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.benefits-header p { color: var(--text-muted); font-size: 1rem; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.benefit-icon {
  width: 46px; height: 46px;
  background: rgba(13,31,60,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-icon svg { width: 20px; height: 20px; color: var(--navy); }
.benefit-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   WHY MOORE SECTION
   ============================================================ */
.why-section { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 18px;
}
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.trust-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.tp-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tp-icon svg { width: 18px; height: 18px; color: var(--gold); }
.trust-point strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.trust-point p {
  font-size: 0.875rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
  line-height: 1.6 !important;
}

/* Why Visual Card */
.why-stat-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat-item {
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.why-quote {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.why-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   STATEMENT UPLOAD SECTION
   ============================================================ */
.statement-section {
  background: var(--gray-100);
  padding: 72px 0;
}
.statement-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  box-shadow: var(--shadow-md);
}
.statement-icon {
  width: 80px; height: 80px;
  flex-shrink: 0;
}
.statement-icon svg { width: 100%; height: 100%; }
.statement-text h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.statement-text p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 600px;
}

/* ============================================================
   LEAD MAGNET SECTION
   ============================================================ */
.magnet-section {
  background: linear-gradient(135deg, #0a1628 0%, var(--navy) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.magnet-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.magnet-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.magnet-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.magnet-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.3;
}
.magnet-inner p {
  color: rgba(255,255,255,0.72);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--off-white); }
.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-100); }
.faq-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--navy); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding var(--transition);
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  padding-top: 4px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a6e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.final-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.final-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
}
.final-trust {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #070f1e;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
}
.footer-brand .brand-tagline {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.footer-domain {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-domain:hover { color: var(--gold); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 700px;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-card { max-width: 680px; margin: 0 auto; }
  .hero-content { max-width: 680px; margin: 0 auto; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
  }
  .step-connector { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .statement-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .statement-text p { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .hero { padding: 120px 0 60px; }

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links a:last-child { border-bottom: none; }
  .btn-nav { text-align: center; margin-top: 8px; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-form-card { padding: 24px 18px; }
  .form-row.two-col { flex-direction: column; }

  /* Trust Bar */
  .trust-bar-inner { flex-direction: column; gap: 16px; }
  .trust-divider { display: none; }
  .trust-item { padding: 0; }

  /* Pain Grid */
  .pain-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Statement */
  .statement-inner { padding: 32px 24px; gap: 24px; }

  /* Why */
  .why-stat-card { padding: 28px 24px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  .final-cta-headline { font-size: 1.6rem; }
  .statement-inner { padding: 24px 18px; }
}
