/* ============================================
   MyCareerAgent™ — Design System
   Your Career. Your Life. Represented.
   Goldman Sachs meets concierge.
   ============================================ */

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

:root {
  /* Core Palette */
  --navy: #0B1F3B;
  --navy-deep: #071428;
  --navy-light: #132D52;
  --gold: #D4AF37;
  --gold-light: #E8CC6E;
  --gold-dark: #B8941E;
  --sand: #F5F1E8;
  --sand-light: #FAF8F3;
  --sand-dark: #E8E2D4;
  --slate: #2F3E46;
  --slate-light: #4A5C65;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-body: #3D3D56;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E1D8;
  --border-light: #F0ECE3;
  --success: #059669;
  --error: #DC2626;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 8rem);
  --container: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--sand-light);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9375rem 2.25rem;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(11, 31, 59, 0.2);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 31, 59, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.8125rem; }
.btn-lg { padding: 1.125rem 2.75rem; font-size: 1rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.125rem 0;
  transition: all 0.3s var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}

.nav-logo .logo-crest {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-text .logo-my { font-size: 0.6875rem; font-weight: 500; color: var(--text-muted); font-family: var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; }
.nav-logo .logo-text .logo-ca { font-size: 1.1875rem; color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--navy); }

.nav-cta { margin-left: 0.5rem; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--sand-light), transparent);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-trust-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Hero Form */
.hero-form-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(212, 175, 55, 0.1);
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 0 0 3px 3px;
}

.hero-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-form-header h3 {
  font-size: 1.375rem;
  margin-bottom: 0.375rem;
}

.hero-form-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-form .form-group {
  margin-bottom: 1rem;
}

.hero-form .form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.hero-form .form-group input,
.hero-form .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--sand-light);
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-form .form-group input::placeholder { color: var(--text-light); }

.hero-form .form-group input:focus,
.hero-form .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.hero-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-form .btn-submit {
  width: 100%;
  padding: 0.9375rem;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s var(--ease);
  margin-top: 0.5rem;
}

.hero-form .btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.hero-form .form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-pad) 0;
}

.hiw-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.hiw-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.hiw-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--border), var(--gold));
}

.hiw-step {
  text-align: center;
  position: relative;
}

.hiw-step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.hiw-step:hover .hiw-step-number {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.15);
}

.hiw-step h3 {
  margin-bottom: 0.75rem;
}

.hiw-step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* ============================================
   CAREER SMART™
   ============================================ */
.career-smart {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.career-smart::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cs-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.cs-header .section-label { color: var(--gold-light); }

.cs-header h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cs-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.smart-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.smart-card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.smart-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.smart-letter {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.smart-word {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.smart-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ============================================
   MEMBERSHIP TIERS
   ============================================ */
.membership {
  padding: var(--section-pad) 0;
}

.membership-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.membership-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.tier-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.tier-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.12);
}

.tier-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.25rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
}

.tier-name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.tier-price .period {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.tier-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}

.tier-feature .check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-feature.coming {
  color: var(--text-light);
  font-style: italic;
}

.tier-feature.coming .check { color: var(--gold); }

.tier-btn {
  width: 100%;
  text-align: center;
}

/* ============================================
   EMPLOYERS
   ============================================ */
.employers {
  padding: var(--section-pad) 0;
  background: var(--sand);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.employers .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.employers-content h2 { margin-bottom: 1.25rem; }

.employers-content > p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.employer-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.employer-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.employer-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.employer-benefit h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.employer-benefit p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.employers-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  text-align: center;
}

.employers-visual h3 { margin-bottom: 1rem; }

.employers-visual p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ============================================
   BECOME AN AGENT
   ============================================ */
.become-agent {
  padding: var(--section-pad) 0;
}

.become-agent .container {
  max-width: 800px;
  text-align: center;
}

.become-agent h2 { margin-bottom: 1rem; }

.become-agent > .container > p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.agent-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.agent-perk {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s var(--ease);
}

.agent-perk:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.agent-perk-icon { font-size: 1.5rem; margin-bottom: 1rem; }

.agent-perk h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.agent-perk p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   COMING SOON
   ============================================ */
.coming-soon-section {
  padding: var(--section-pad) 0;
  background: var(--sand);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cs-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cs-inner h2 { margin-bottom: 1rem; }

.cs-inner > p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.cs-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cs-phase {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-align: left;
}

.cs-phase-badge {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.cs-phase-badge.live { background: #D1FAE5; color: #065F46; }
.cs-phase-badge.soon { background: #FEF3C7; color: #92400E; }
.cs-phase-badge.vision { background: #E0E7FF; color: #3730A3; }

.cs-phase h4 { margin-bottom: 0.5rem; }

.cs-phase p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   STARTER KIT
   ============================================ */
.starter-kit {
  padding: var(--section-pad) 0;
}

.starter-kit-card {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  border-radius: 1.25rem;
  overflow: hidden;
}

.starter-kit-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.starter-kit-content .section-label { color: var(--gold-light); }

.starter-kit-content h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.starter-kit-content > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.starter-kit-items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.starter-kit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.starter-kit-item .check { color: var(--gold); }

.starter-kit-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.starter-kit-price .amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.starter-kit-price .label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.starter-kit-visual {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
}

.starter-kit-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.kit-preview {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 2rem;
  width: 80%;
  max-width: 260px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.kit-preview h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.kit-preview-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kit-preview-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.5rem;
  background: var(--sand-light);
  border-radius: 0.375rem;
}

.kit-preview-item .icon { font-size: 1rem; }

/* ============================================
   TESTIMONIALS (PLACEHOLDER)
   ============================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--sand);
  border-top: 1px solid var(--border-light);
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.testimonials-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-top: 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sand);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: var(--section-pad) 0;
  text-align: center;
}

.final-cta h2 { margin-bottom: 1rem; }

.final-cta p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   LAUNCHPAD 18 BRIDGE
   ============================================ */
.lp18-bridge {
  padding: 3rem 0;
  background: var(--navy-deep);
}

.lp18-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.lp18-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
}

.lp18-text strong { color: var(--white); }

.lp18-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  transition: all 0.25s var(--ease);
}

.lp18-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ============================================
   ELITE FOOTER
   ============================================ */
.site-footer {
  padding: 4rem 0 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.footer-brand .footer-logo .f-crest {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-body);
}

.footer-brand .footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand .footer-desc {
  font-size: 0.8125rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.625rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s var(--ease);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-column a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-column a:hover { color: var(--gold); }

.footer-newsletter p {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  color: var(--white);
  font-size: 0.8125rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.footer-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.3); }
.footer-newsletter-form input:focus { border-color: var(--gold); }

.footer-newsletter-form button {
  padding: 0.625rem 1.25rem;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.2s;
}

.footer-newsletter-form button:hover { background: var(--gold-light); }

/* Footer Contact */
.footer-contact {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-contact a {
  font-size: 0.8125rem;
  color: var(--gold);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--gold-light); }

.footer-contact span {
  margin: 0 1rem;
  color: rgba(255, 255, 255, 0.15);
}

/* Footer Legal Disclaimers */
.footer-legal {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.footer-disclaimer {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  text-align: center;
}

.footer-disclaimer strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

/* Copyright */
.footer-copyright {
  padding: 1.25rem 0;
}

.footer-copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}

.footer-legal-links a {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: var(--gold); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 10rem 0 var(--section-pad);
}

.legal-page .container { max-width: 760px; }
.legal-page h1 { margin-bottom: 0.5rem; }
.legal-page .effective { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 3rem; }
.legal-page h2 { font-size: 1.375rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-page h3 { font-size: 1.0625rem; margin-top: 1.75rem; margin-bottom: 0.75rem; }
.legal-page p, .legal-page li { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.legal-page ul { padding-left: 1.25rem; list-style: disc; }
.legal-page ul li { margin-bottom: 0.5rem; }
.legal-page strong { color: var(--text); }
.legal-page a { color: var(--gold-dark); text-decoration: underline; }
.legal-page .callout { padding: 1.5rem; background: var(--sand); border-left: 3px solid var(--gold); border-radius: 0 0.75rem 0.75rem 0; margin: 2rem 0; }
.legal-page .callout p { margin-bottom: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 520px; margin: 2rem auto 0; }
  .smart-grid { grid-template-columns: repeat(3, 1fr); }
  .employers .container { grid-template-columns: 1fr; }
  .starter-kit-card { grid-template-columns: 1fr; }
  .starter-kit-visual { min-height: 300px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
  }
  .mobile-toggle { display: flex; }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero-form .form-row { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .hiw-steps::before { display: none; }
  .smart-grid { grid-template-columns: 1fr 1fr; }
  .tiers-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .agent-perks { grid-template-columns: 1fr; }
  .cs-timeline { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-copyright-inner { flex-direction: column; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }
  .lp18-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .smart-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: center; gap: 1rem; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .footer-newsletter-form { flex-direction: column; }
}

/* ============================================
   FORM DISCLAIMER (under hero intake form)
   ============================================ */
.form-disclaimer {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  line-height: 1.6;
  font-style: italic;
}

/* ============================================
   PRICING DISCLAIMER (under products grid)
   ============================================ */
.pricing-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-style: italic;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners {
  padding: var(--section-pad) 0;
  background: var(--sand);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partners-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.partners-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.partner-form-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  border: 1.5px solid var(--border);
}

.partner-form .form-group { margin-bottom: 1rem; }

.partner-form .form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.partner-form .form-group input,
.partner-form .form-group select,
.partner-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--sand-light);
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.partner-form .form-group textarea { resize: vertical; min-height: 100px; }

.partner-form .form-group input::placeholder,
.partner-form .form-group textarea::placeholder { color: var(--text-light); }

.partner-form .form-group input:focus,
.partner-form .form-group select:focus,
.partner-form .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.partner-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.partner-form .btn-submit {
  width: 100%;
  padding: 0.9375rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s var(--ease);
  margin-top: 0.5rem;
}

.partner-form .btn-submit:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(11, 31, 59, 0.2);
}

.partner-form .form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .partner-form .form-row { grid-template-columns: 1fr; }
  .partner-form-card { padding: 2rem 1.5rem; }
}

/* --- Intake: "You are not alone" note --- */
.intake-human-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  font-style: italic;
}

/* --- Post-submit conversion panel --- */
.intake-success-panel {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.intake-success-check {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}

.intake-success-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin: 0;
}

.intake-success-welcome {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 340px;
}

.intake-success-next-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.intake-success-products {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.intake-product-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-align: left;
}

.intake-product-btn--starter {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

.intake-product-btn--starter:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.intake-product-btn--smart {
  background: var(--gold);
  border: 1px solid var(--gold-dark);
}

.intake-product-btn--smart:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}

.intake-product-price {
  font-size: 0.95rem;
  font-weight: 700;
}

.intake-product-btn--starter .intake-product-price { color: var(--white); }
.intake-product-btn--smart .intake-product-price { color: var(--navy-deep); }

.intake-product-desc {
  font-size: 0.78rem;
  line-height: 1.4;
}

.intake-product-btn--starter .intake-product-desc { color: rgba(255,255,255,0.6); }
.intake-product-btn--smart .intake-product-desc { color: rgba(11,31,59,0.65); }

.intake-success-followup {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* --- Footer social note --- */
.footer-social-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  margin-top: 0.5rem;
}
