/* =============================================
   ANGELS GROWTH PLATFORM — DESIGN SYSTEM
   ============================================= */

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

/* --- Tokens --- */
:root {
  --navy-950: #020C1B;
  --navy-900: #071428;
  --navy-800: #0C1E3A;
  --navy-700: #112448;
  --navy-600: #172E5C;
  --navy-500: #1E3A72;
  --navy-400: #274D8F;
  --navy-border: #1A3158;

  --gold-300: #F5D470;
  --gold-400: #E8B84B;
  --gold-500: #C5973C;
  --gold-600: #A07A26;
  --gold-700: #7A5B16;
  --gold-glow: rgba(197, 151, 60, 0.25);

  --white: #FFFFFF;
  --text-primary: #E8EDF5;
  --text-secondary: #8EA4C8;
  --text-muted: #4A6080;

  --success: #22C55E;
  --error: #EF4444;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-ui: 'Space Grotesk', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 24px var(--gold-glow);

  --transition: 0.22s ease;
  --transition-slow: 0.45s ease;

  --max-w: 1180px;
  --nav-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* --- Typography --- */
.t-display { font-family: var(--font-display); }
.t-ui { font-family: var(--font-ui); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h4, h5, h6 { font-family: var(--font-ui); line-height: 1.3; }

.display-xl {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-lg {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}
.display-md {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}
.text-xl { font-size: clamp(1.1rem, 2vw, 1.3rem); }
.text-lg { font-size: 1.125rem; }
.text-base { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.text-gold { color: var(--gold-400); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }

.fw-light { font-weight: 300; }
.fw-regular { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semi { font-weight: 600; }
.fw-bold { font-weight: 700; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.08em; }
.tracking-wider { letter-spacing: 0.14em; }

/* --- Layout --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* --- Gold Gradient Text --- */
.gold-text {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 50%, var(--gold-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section Label --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-500);
}

/* --- Divider --- */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  margin: 24px 0;
}
.divider-center { margin: 24px auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  background: rgba(255,255,255,0.07);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 60%, var(--gold-300) 100%);
  color: var(--navy-950);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(197,151,60,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold-400);
  border: 1.5px solid var(--gold-500);
}
.btn-outline:hover {
  background: rgba(197,151,60,0.08);
  border-color: var(--gold-300);
  color: var(--gold-300);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

.btn-navy {
  background: var(--navy-700);
  color: var(--text-primary);
  border: 1px solid var(--navy-border);
}
.btn-navy:hover { background: var(--navy-600); }

.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-full { width: 100%; }

.btn-icon { gap: 10px; }
.btn-icon svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Cards --- */
.card {
  background: var(--navy-800);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--navy-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-glow:hover {
  border-color: var(--gold-700);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(197,151,60,0.15);
}
.card-glass {
  background: rgba(11,28,56,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.07);
}

/* --- Icon Containers --- */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box-gold {
  background: linear-gradient(135deg, rgba(197,151,60,0.15), rgba(197,151,60,0.05));
  border: 1px solid rgba(197,151,60,0.2);
}
.icon-box svg { width: 24px; height: 24px; color: var(--gold-400); }

.icon-box-lg {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
}
.icon-box-lg svg { width: 32px; height: 32px; }

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
}
.badge-gold {
  background: rgba(197,151,60,0.12);
  color: var(--gold-300);
  border: 1px solid rgba(197,151,60,0.25);
}
.badge-blue {
  background: rgba(30,58,114,0.5);
  color: var(--text-secondary);
  border: 1px solid var(--navy-border);
}
.badge-success {
  background: rgba(34,197,94,0.1);
  color: #86efac;
  border: 1px solid rgba(34,197,94,0.2);
}

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-label span.required { color: var(--gold-400); margin-left: 3px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--navy-800);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(197,151,60,0.1);
  background: var(--navy-700);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--navy-800); color: var(--text-primary); }

.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; }
.form-error { font-size: 0.78rem; color: var(--error); margin-top: 6px; display: none; }
.form-input.is-error { border-color: var(--error); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Checkbox/Radio styles */
.check-group { display: flex; flex-direction: column; gap: 10px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--navy-border);
  transition: all var(--transition);
  background: var(--navy-800);
}
.check-item:hover { border-color: var(--navy-500); background: var(--navy-700); }
.check-item.is-checked { border-color: var(--gold-600); background: rgba(197,151,60,0.06); }
.check-item input { position: absolute; opacity: 0; width: 0; height: 0; }
.check-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--navy-500);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  background: var(--navy-900);
}
.check-item.is-checked .check-box {
  background: var(--gold-500);
  border-color: var(--gold-500);
}
.check-box::after {
  content: '';
  width: 6px;
  height: 10px;
  border: 2px solid var(--navy-950);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity var(--transition);
}
.check-item.is-checked .check-box::after { opacity: 1; }
.check-label { font-size: 0.9rem; color: var(--text-primary); font-family: var(--font-body); }
.check-label small { display: block; color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }

/* Radio pill variant */
.radio-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--navy-border);
  background: var(--navy-800);
  cursor: pointer;
  font-size: 0.875rem;
  transition: all var(--transition);
  color: var(--text-secondary);
}
.radio-pill:hover { border-color: var(--navy-500); color: var(--text-primary); }
.radio-pill.is-selected {
  border-color: var(--gold-600);
  background: rgba(197,151,60,0.08);
  color: var(--gold-300);
}
.radio-pill input { position: absolute; opacity: 0; width: 0; height: 0; }

/* --- Navigation --- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all var(--transition);
  padding: 0 24px;
}
#nav.scrolled {
  background: rgba(2,12,27,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-950);
}
.nav-logo-text {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-logo-text span { color: var(--gold-400); }
.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--gold-400); }
.nav-cta { margin-left: 8px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(2,12,27,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--navy-border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}
.nav-mobile .btn { width: 100%; margin-top: 8px; justify-content: center; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(23,46,92,0.7) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 50%, rgba(197,151,60,0.06) 0%, transparent 60%),
              var(--navy-950);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,49,88,0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,49,88,0.2) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  margin-bottom: 24px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-600);
}
.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 800px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(7,20,40,0.5);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}
.trust-label {
  font-size: 0.75rem;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logo-item {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.trust-logo-item:hover { opacity: 0.8; }

/* --- Section Headers --- */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .divider { margin: 20px auto; }
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-secondary); max-width: 580px; line-height: 1.7; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* --- Service Cards --- */
.service-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { border-color: var(--navy-500); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: var(--gold-700);
  background: linear-gradient(160deg, rgba(11,28,56,1) 0%, rgba(23,46,92,0.3) 100%);
}
.service-card.featured::before { opacity: 0.8; }
.service-card-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 20px;
  right: 28px;
  line-height: 1;
}
.service-card-tag {
  font-size: 0.7rem;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.service-card-tag.mandatory {
  color: var(--gold-500);
}
.service-card-title {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.service-card-features { display: flex; flex-direction: column; gap: 10px; }
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.service-feature::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(197,151,60,0.15);
  border: 1px solid rgba(197,151,60,0.3);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.service-feature::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C5973C'%3E%3Cpath fill-rule='evenodd' d='M12.416 3.376a.75.75 0 0 1 .208 1.04l-5 7.5a.75.75 0 0 1-1.154.114l-3-3a.75.75 0 0 1 1.06-1.06l2.353 2.353 4.493-6.74a.75.75 0 0 1 1.04-.207Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* --- Process Steps --- */
.process-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 52px;
  bottom: 52px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-700), var(--navy-border));
}
.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
}
.process-step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-step:hover .process-step-num {
  background: var(--navy-700);
  border-color: var(--gold-700);
}
.process-step-body { padding-top: 10px; }
.process-step-title { font-size: 1.1rem; font-weight: 600; font-family: var(--font-ui); margin-bottom: 6px; }
.process-step-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* --- Stats Grid --- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--navy-border); border-radius: var(--radius-xl); overflow: hidden; }
.stat-block {
  background: var(--navy-800);
  padding: 40px 32px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 120px;
  margin: 0 auto;
  line-height: 1.4;
}

/* --- Testimonial --- */
.testimonial-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(197,151,60,0.08);
  line-height: 1;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars span { color: var(--gold-400); font-size: 1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-400);
  flex-shrink: 0;
  border: 1px solid var(--navy-border);
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; font-family: var(--font-ui); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 50%, rgba(23,46,92,0.8) 100%);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197,151,60,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-section-sub { color: var(--text-secondary); max-width: 520px; margin: 0 auto 40px; font-size: 1.05rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Page Header --- */
.page-header {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(23,46,92,0.5), transparent),
              var(--navy-950);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,49,88,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,49,88,0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 80%);
  pointer-events: none;
}

/* --- Diagnostic / Multi-step Form --- */
.diagnostic-wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.diagnostic-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}
.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  width: 100%;
  height: 1px;
  background: var(--navy-border);
}
.progress-step.completed:not(:last-child)::after { background: var(--gold-700); }
.progress-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--navy-border);
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.progress-step.active .progress-dot {
  border-color: var(--gold-500);
  background: rgba(197,151,60,0.1);
  color: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(197,151,60,0.08);
}
.progress-step.completed .progress-dot {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--navy-950);
}
.progress-label {
  font-size: 0.7rem;
  font-family: var(--font-ui);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: center;
  max-width: 80px;
}
.progress-step.active .progress-label { color: var(--gold-400); }
.progress-step.completed .progress-label { color: var(--text-secondary); }

.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeInUp 0.35s ease; }
.step-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.step-header { margin-bottom: 40px; }
.step-title { font-size: 1.8rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 8px; }
.step-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--navy-border);
  flex-wrap: wrap;
  gap: 16px;
}

/* Module Selection */
.module-cards { display: flex; flex-direction: column; gap: 16px; }
.module-card {
  background: var(--navy-700);
  border: 1.5px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.module-card:hover { border-color: var(--navy-500); }
.module-card.selected {
  border-color: var(--gold-600);
  background: rgba(197,151,60,0.06);
}
.module-card.mandatory {
  border-color: var(--gold-700);
  background: linear-gradient(135deg, rgba(197,151,60,0.08), rgba(23,46,92,0.2));
  cursor: default;
}
.module-card-check {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--navy-500);
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--navy-900);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.module-card.selected .module-card-check,
.module-card.mandatory .module-card-check {
  background: var(--gold-500);
  border-color: var(--gold-500);
}
.module-card-check::after {
  content: '✓';
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-950);
  opacity: 0;
  transition: opacity var(--transition);
}
.module-card.selected .module-card-check::after,
.module-card.mandatory .module-card-check::after { opacity: 1; }
.module-card-body { flex: 1; }
.module-card-title { font-weight: 600; font-family: var(--font-ui); margin-bottom: 4px; font-size: 0.95rem; }
.module-card-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }
.module-card-badge { position: absolute; top: 16px; right: 16px; }

/* Agreement Section */
.agreement-summary {
  background: var(--navy-700);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
}
.agreement-modules { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.agreement-module {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  padding: 10px 14px;
  background: var(--navy-800);
  border-radius: var(--radius-md);
  border: 1px solid var(--navy-border);
}
.agreement-module .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}
.terms-box {
  background: var(--navy-900);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-height: 240px;
  overflow-y: auto;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.terms-box::-webkit-scrollbar { width: 4px; }
.terms-box::-webkit-scrollbar-track { background: var(--navy-800); }
.terms-box::-webkit-scrollbar-thumb { background: var(--navy-500); border-radius: 2px; }
.terms-box h4 { color: var(--text-secondary); font-size: 0.85rem; margin: 12px 0 6px; font-family: var(--font-ui); }
.terms-box p { margin-bottom: 8px; }

/* Success Screen */
.success-screen {
  text-align: center;
  padding: 72px 48px;
  background: var(--navy-800);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.05));
  border: 1px solid rgba(34,197,94,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}
.success-title { font-size: 2rem; font-family: var(--font-display); margin-bottom: 12px; }
.success-desc { color: var(--text-secondary); font-size: 1rem; max-width: 440px; margin: 0 auto 36px; line-height: 1.7; }
.success-next { display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* --- Footer --- */
#footer {
  background: var(--navy-950);
  border-top: 1px solid var(--navy-border);
  padding: 72px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { max-width: 280px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.footer-col-title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-copy span { color: var(--gold-600); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--navy-800);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.comparison-table th {
  background: var(--navy-700);
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--navy-border);
}
.comparison-table th:first-child { width: 40%; }
.comparison-table th.highlight { color: var(--gold-400); background: rgba(197,151,60,0.06); }
.comparison-table td {
  padding: 16px 24px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.comparison-table td.highlight { background: rgba(197,151,60,0.03); }
.comparison-table tr:last-child td { border-bottom: none; }
.check-yes { color: var(--gold-400); font-size: 1.1rem; }
.check-no { color: var(--text-muted); font-size: 1.1rem; }

/* --- Floating Accents --- */
.float-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.3;
}
.float-accent-gold {
  background: var(--gold-600);
  opacity: 0.06;
}
.float-accent-blue {
  background: var(--navy-500);
  opacity: 0.2;
}

/* --- Utilities --- */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 16px rgba(197,151,60,0.2); }
  50% { box-shadow: 0 0 32px rgba(197,151,60,0.4); }
}

.animate-fade-in { animation: fadeIn 0.6s ease both; }
.animate-fade-up { animation: fadeInUp 0.6s ease both; }

.on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Gold Shimmer --- */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-300) 40%, var(--gold-500) 80%, var(--gold-300) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* --- About Page --- */
.team-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--navy-500); transform: translateY(-3px); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-400);
  border: 2px solid var(--navy-border);
}
.team-name { font-size: 1.15rem; font-weight: 700; font-family: var(--font-ui); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--gold-500); font-family: var(--font-ui); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.team-bio { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* --- Value Props --- */
.vp-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.vp-item:last-child { border-bottom: none; }
.vp-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(197,151,60,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.vp-title { font-weight: 600; font-size: 1.05rem; font-family: var(--font-ui); margin-bottom: 6px; }
.vp-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* --- Contact Page --- */
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(197,151,60,0.08);
  border: 1px solid rgba(197,151,60,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-label { font-size: 0.75rem; font-family: var(--font-ui); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: var(--text-primary); }

/* --- Growth Partnership Page --- */
.tier-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
}
.tier-card.featured {
  border-color: var(--gold-700);
  background: linear-gradient(160deg, var(--navy-800), rgba(23,46,92,0.4));
}
.tier-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  color: var(--navy-950);
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-ui);
  letter-spacing: 0.15em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.tier-name { font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-500); margin-bottom: 8px; }
.tier-title { font-size: 1.5rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 12px; }
.tier-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 28px; }
.tier-price { margin-bottom: 32px; }
.tier-price-from { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-ui); }
.tier-price-value { font-size: 2.2rem; font-family: var(--font-display); font-weight: 700; color: var(--gold-400); line-height: 1; }
.tier-price-period { font-size: 0.82rem; color: var(--text-muted); font-family: var(--font-ui); margin-top: 4px; }
.tier-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.tier-feature-icon { color: var(--gold-400); flex-shrink: 0; margin-top: 1px; font-size: 0.9rem; }

/* --- Legal Pages --- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.8;
}
.legal-content h2 {
  font-size: 1.4rem;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--white);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-content h3 {
  font-size: 1.05rem;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--text-primary);
  margin: 28px 0 10px;
}
.legal-content p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 16px; }
.legal-content ul { margin-bottom: 16px; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-content ul li { font-size: 0.9rem; color: var(--text-secondary); list-style: disc; }
.legal-content a { color: var(--gold-400); }
.legal-content a:hover { color: var(--gold-300); text-decoration: underline; }
.legal-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 16px 20px;
  background: var(--navy-800);
  border-radius: var(--radius-md);
  border-left: 2px solid var(--gold-700);
  margin-bottom: 32px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { max-width: none; grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }
  .section-lg { padding: 96px 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: 28px; }
  .hero-stat-value { font-size: 1.8rem; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .step-card { padding: 28px 24px; }
  .diagnostic-progress { gap: 4px; }
  .progress-label { display: none; }
  .progress-dot { width: 32px; height: 32px; font-size: 0.75rem; }

  .cta-section { padding: 48px 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block { padding: 28px 20px; }
  .stat-value { font-size: 2.2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .comparison-table { font-size: 0.82rem; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; }

  .tier-card { padding: 28px 24px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .process-steps::before { left: 19px; top: 44px; }
  .process-step-num { width: 40px; height: 40px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .display-xl { font-size: 2.2rem; }
  .display-lg { font-size: 1.8rem; }
  .radio-pills { flex-direction: column; }
  .radio-pill { justify-content: center; }
  .hero-eyebrow { font-size: 0.65rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .success-screen { padding: 48px 24px; }
  .step-actions { flex-direction: column; }
  .step-actions .btn { width: 100%; justify-content: center; }
}
