:root {
  --bg: #ffffff;
  --bg-elevated: #f8f9fb;
  --bg-card: #ffffff;
  --fg: #0f172a;
  --fg-muted: #64748b;
  --accent: #1d4ed8;
  --accent-dim: #1e40af;
  --accent-glow: rgba(29, 78, 216, 0.08);
  --cta: #f97316;
  --cta-dim: #ea6c0a;
  --cta-glow: rgba(249, 115, 22, 0.15);
  --danger: #ef4444;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(29, 78, 216, 0.2);
  margin-bottom: 40px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--fg);
}

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

.hero .lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--fg);
}

.problem p {
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.problem-highlight {
  color: var(--fg) !important;
  font-weight: 500;
  border-left: 3px solid var(--cta);
  padding-left: 16px;
}

.problem-comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.compare-bad {
  opacity: 0.65;
}

.compare-good {
  border-color: var(--accent);
  background: var(--accent-glow);
  box-shadow: 0 0 0 1px rgba(29,78,216,0.1), var(--shadow-sm);
}

.compare-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
}

.compare-good .compare-label { color: var(--accent); }

.compare-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
}

.compare-note {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.services-sub {
  color: var(--fg-muted);
  margin-bottom: 48px;
  max-width: 540px;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.service-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- HOW ---- */
.how {
  padding: 100px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--fg);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--accent);
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(29,78,216,0.3);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--fg);
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.closing p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.8;
}

.closing-location {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---- FOOTER ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--bg-elevated);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

.footer-contact {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 60px 20px 40px;
  }

  .step {
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ---- NAV ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--fg);
  background: var(--bg-elevated);
}

.nav-cta {
  color: #ffffff !important;
  background: var(--cta) !important;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(249,115,22,0.3);
}

.nav-cta:hover {
  background: var(--cta-dim) !important;
  box-shadow: 0 4px 14px rgba(249,115,22,0.4) !important;
  color: #ffffff !important;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  background: var(--cta);
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background: var(--cta-dim);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  background: transparent;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  padding: 14px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 14px 20px;
  transition: color 0.2s;
}

.btn-ghost-hero:hover {
  color: var(--fg);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 12px 20px;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--fg); }

/* ---- HERO CTA ROW ---- */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* ---- CLOSING ACTIONS ---- */
.closing-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Override btn-primary in closing to stand out on blue bg */
.closing .btn-primary {
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.closing .btn-primary:hover {
  background: #f1f5f9;
  box-shadow: 0 6px 28px rgba(0,0,0,0.25);
}

.closing .btn-secondary {
  border-color: rgba(255,255,255,0.35);
  color: #ffffff;
}

.closing .btn-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  color: #ffffff;
}

/* ---- PAGE LAYOUTS ---- */
.page-main {
  min-height: 100vh;
}

.page-hero {
  padding: 80px 24px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero--compact {
  padding: 60px 24px 40px;
}

.page-hero-inner { }

/* ---- PACKAGES (SERVICES PAGE) ---- */
.packages-section {
  padding: 20px 24px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.package-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.package-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(29,78,216,0.04) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 0 1px rgba(29,78,216,0.15), var(--shadow-md);
}

.package-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  background: var(--accent);
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(29,78,216,0.4);
}

.package-header {
  margin-bottom: 24px;
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--fg);
}

.package-tagline {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.package-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.package-price-note {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.package-range {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.package-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-features li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

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

.package-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-actions .btn-primary,
.package-actions .btn-secondary {
  justify-content: center;
  text-align: center;
}

/* ---- SERVICES GUARANTEE ---- */
.services-guarantee {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}

.guarantee-inner {
  max-width: 680px;
  margin: 0 auto;
}

.guarantee-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cta);
  background: var(--cta-glow);
  border: 1px solid rgba(249,115,22,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.services-guarantee h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--fg);
}

.services-guarantee p {
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ---- SERVICES FAQ ---- */
.services-faq {
  padding: 80px 24px 100px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--fg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.faq-item p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---- INTAKE FORM ---- */
.intake-paid-banner {
  max-width: 800px;
  margin: 0 auto 0;
  padding: 16px 24px;
  background: rgba(29,78,216,0.06);
  border: 1px solid rgba(29,78,216,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}

.paid-icon {
  font-size: 1.4rem;
  color: var(--cta);
  flex-shrink: 0;
}

.intake-section {
  padding: 20px 24px 100px;
  max-width: 800px;
  margin: 0 auto;
}

.intake-container { }

.form-errors {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.form-errors strong { color: var(--danger); }
.form-errors ul { margin-top: 8px; padding-left: 20px; color: var(--fg-muted); }
.form-errors li { margin-bottom: 4px; }

.intake-form { }

.form-section {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.form-section h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

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

.form-row--half {
  grid-template-columns: 1fr;
  max-width: 360px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}

.req {
  color: var(--cta);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
  background: var(--bg-card);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  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='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select option { background: var(--bg-card); }

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- PACKAGE SELECT ---- */
.package-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.package-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.package-option input[type="radio"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.package-option:hover,
.package-option.selected {
  border-color: var(--accent);
  background: var(--accent-glow);
  box-shadow: 0 0 0 1px rgba(29,78,216,0.1);
}

.po-name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--fg);
}

/* ---- SUBMIT BUTTON ---- */
.btn-submit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  background: var(--cta);
  border: none;
  border-radius: 12px;
  padding: 18px 32px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--cta-dim);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(249, 115, 22, 0.45);
}

.form-footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* ---- CONFIRMATION ---- */
.confirm-section {
  padding: 80px 24px 120px;
  max-width: 660px;
  margin: 0 auto;
}

.confirm-inner {
  text-align: center;
}

.confirm-icon {
  width: 72px;
  height: 72px;
  background: var(--cta-glow);
  border: 2px solid var(--cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--cta);
  margin: 0 auto 32px;
}

.confirm-section h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--fg);
}

.confirm-message {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 56px;
}

.confirm-next-steps {
  text-align: left;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.confirm-next-steps h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.next-steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.next-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.ns-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--accent);
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(29,78,216,0.3);
}

.next-step strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: var(--fg);
}

.next-step p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- RESPONSIVE ADDITIONS ---- */
@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row--half {
    max-width: 100%;
  }

  .package-select-grid {
    grid-template-columns: 1fr;
  }

  .nav-links .nav-link:not(.nav-cta) {
    display: none;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .intake-paid-banner {
    margin: 0 24px;
  }
}

/* ---- SECTION DIVIDERS ---- */
.section-alt {
  background: var(--bg-elevated);
}

/* ---- PAGE HERO SUBTITLE ---- */
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 580px;
  line-height: 1.8;
}
