*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F5F0E8;
  --cream-dark:  #EDE7D9;
  --cream-mid:   #F0EAE0;
  --forest:      #1A3A2A;
  --forest-mid:  #2B5640;
  --forest-light:#3D7357;
  --sage:        #7BA899;
  --sage-light:  #B8D4CE;
  --sage-pale:   #E8F3F0;
  --gold:        #C8A96E;
  --gold-light:  #E8D5A8;
  --gold-pale:   #FAF4E6;
  --white:       #FFFFFF;
  --text-dark:   #0F2219;
  --text-mid:    #3A5448;
  --text-muted:  #7A9690;
  --border:      rgba(26,58,42,0.11);
  --border-mid:  rgba(26,58,42,0.18);
  --ff-display:  'DM Serif Display', Georgia, serif;
  --ff-body:     'DM Sans', system-ui, sans-serif;
  --nav-h:       68px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(245,240,232,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 30px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 14px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a.active { color: var(--forest); font-weight: 500; }
.nav-cta {
  background: var(--forest) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: 100px; font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--forest-mid) !important; }

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  margin-top: var(--nav-h);
  padding: 14px 5vw;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.breadcrumb-bar a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb-bar a:hover { color: var(--forest); }
.breadcrumb-bar .sep { opacity: 0.35; }
.breadcrumb-bar .current { color: var(--forest); font-weight: 500; }

/* ── HERO ── */
.hero {
  padding: 10px 5vw 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: -160px; right: -160px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,168,153,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.hero-left { padding-bottom: 60px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  color: var(--forest);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 400; color: var(--forest);
  line-height: 1.1; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--forest-light); }

.hero-sub {
  font-size: 17px; color: var(--text-mid);
  line-height: 1.75; max-width: 480px;
  font-weight: 300; margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}

.btn-primary {
  background: var(--forest); color: var(--white);
  padding: 14px 30px; border-radius: 100px;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); }
.btn-ghost {
  color: var(--forest); font-size: 15px; font-weight: 400;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.btn-ghost:hover { gap: 10px; }

/* Hero right — stacked timeline preview cards */
.hero-right {
  position: relative;
  padding-bottom: 0;
  display: flex;
  align-items: flex-end;
}

.hero-timeline-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.hero-step-card {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.75rem;
  display: flex; align-items: center; gap: 1rem;
  transition: background 0.2s;
  cursor: default;
}
.hero-step-card:first-child { border-radius: 20px 20px 0 0; border-top: none; }
.hero-step-card:last-child { border-radius: 0 0 20px 20px; }
.hero-step-card:hover { background: var(--cream); }

.hsc-num {
  font-family: var(--ff-display);
  font-size: 1.6rem; color: var(--cream-dark);
  line-height: 1; width: 36px; flex-shrink: 0;
  transition: color 0.2s;
}
.hero-step-card:hover .hsc-num { color: var(--sage-light); }
.hsc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hsc-icon svg { stroke: var(--white); }
.hsc-body h4 { font-size: 14px; font-weight: 500; color: var(--forest); margin-bottom: 2px; }
.hsc-body p { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

.hero-time-badge {
  position: absolute;
  top: -18px; right: 20px;
  background: var(--gold);
  color: var(--forest);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px; font-weight: 500;
  box-shadow: 0 6px 20px rgba(200,169,110,0.3);
  white-space: nowrap;
}

/* ── TRUST BAND ── */
.trust-band {
  background: var(--forest);
  padding: 20px 5vw;
  display: flex; justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 13px;
}
.trust-item svg { stroke: var(--sage-light); flex-shrink: 0; opacity: 0.8; }
.trust-item strong { color: var(--white); font-weight: 500; }

/* ── STEPS — DEEP DIVE ── */
.steps-section { padding: 100px 5vw; }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}
.section-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sage); display: block; margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--forest); font-weight: 400; line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--forest-light); }
.section-sub {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.7; font-weight: 300; margin-top: 1rem;
}

/* Step rows — alternating layout */
.step-rows { display: flex; flex-direction: column; gap: 3px; }

.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.step-row:first-child { border-radius: 24px 24px 0 0; }
.step-row:last-child  { border-radius: 0 0 24px 24px; }

/* Alternating: odd = content left / visual right, even = visual left / content right */
.step-row.reverse { direction: rtl; }
.step-row.reverse > * { direction: ltr; }

.step-content {
  background: var(--white);
  padding: 3.5rem 3rem;
  display: flex; flex-direction: column;
  justify-content: center; gap: 1.25rem;
}

.step-visual {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Each step visual gets a unique bg */
.step-visual.v1 { background: var(--cream-dark); }
.step-visual.v2 { background: var(--forest); }
.step-visual.v3 { background: var(--cream-mid); }
.step-visual.v4 { background: var(--forest-mid); }

/* Decorative large number in visual */
.step-visual-num {
  font-family: var(--ff-display);
  font-size: 14rem; font-weight: 400;
  line-height: 1;
  position: absolute;
  bottom: -2rem; right: 1rem;
  opacity: 0.07;
  color: var(--white);
  pointer-events: none;
  user-select: none;
}
.step-visual.v1 .step-visual-num,
.step-visual.v3 .step-visual-num { color: var(--forest); opacity: 0.08; }

/* Visual content */
.step-visual-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem;
  padding: 2.5rem; position: relative; z-index: 1;
  width: 100%;
}

/* Step 1 visual: treatment cards */
.treatment-cards {
  display: flex; flex-direction: column; gap: 10px;
  width: 100%; max-width: 320px;
}
.treatment-card-mini {
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.treatment-card-mini:hover { transform: translateX(4px); }
.tc-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tc-icon.green { background: var(--sage-pale); }
.tc-icon.green svg { stroke: var(--forest-light); }
.tc-icon.gold { background: var(--gold-pale); }
.tc-icon.gold svg { stroke: var(--gold); }
.tc-body { flex: 1; }
.tc-body h5 { font-size: 13px; font-weight: 500; color: var(--forest); margin-bottom: 1px; }
.tc-body p { font-size: 11px; color: var(--text-muted); }
.tc-price {
  font-family: var(--ff-display);
  font-size: 1.1rem; color: var(--forest); white-space: nowrap;
}

/* Step 2 visual: quiz card */
.quiz-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.75rem;
  width: 100%; max-width: 320px;
}
.quiz-card-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem;
}
.quiz-card-header h4 { font-size: 14px; font-weight: 500; color: var(--white); }
.quiz-progress {
  background: rgba(255,255,255,0.1);
  border-radius: 100px; height: 4px;
  margin-bottom: 1.25rem; overflow: hidden;
}
.quiz-progress-bar {
  height: 100%; border-radius: 100px;
  background: var(--gold); width: 60%;
}
.quiz-question { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 1rem; line-height: 1.5; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-option {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 9px 12px;
  font-size: 12px; color: rgba(255,255,255,0.65);
  cursor: default;
  transition: background 0.2s;
}
.quiz-option.selected {
  background: rgba(200,169,110,0.18);
  border-color: rgba(200,169,110,0.4);
  color: var(--gold-light);
}
.quiz-step-label {
  font-size: 11px; color: rgba(255,255,255,0.35);
  text-align: center; margin-top: 0.75rem;
}

/* Step 3 visual: physician card */
.physician-card {
  background: var(--white);
  border-radius: 20px; padding: 1.75rem;
  width: 100%; max-width: 320px;
  border: 1px solid var(--border);
}
.physician-card-top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem;
}
.physician-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.2rem;
  color: var(--forest); flex-shrink: 0;
}
.physician-info h4 { font-size: 14px; font-weight: 500; color: var(--forest); }
.physician-info p { font-size: 12px; color: var(--text-muted); }
.verified-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--sage-pale); color: var(--forest-light);
  font-size: 11px; font-weight: 500;
  padding: 3px 9px; border-radius: 100px;
}
.verified-badge svg { stroke: var(--forest-light); }
.physician-message {
  background: var(--cream); border-radius: 12px;
  padding: 12px 14px; margin-top: 1rem;
}
.physician-message p {
  font-size: 12px; color: var(--text-mid);
  line-height: 1.6; font-style: italic; font-weight: 300;
}
.physician-message .msg-footer {
  font-size: 11px; color: var(--text-muted); margin-top: 6px;
  display: flex; align-items: center; gap: 5px;
}
.msg-dot { width: 6px; height: 6px; border-radius: 50%; background: #4CAF82; }
.response-time {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 1rem;
  background: var(--sage-pale); border-radius: 10px; padding: 8px 12px;
}
.response-time svg { stroke: var(--forest-light); }
.response-time span { font-size: 12px; color: var(--text-mid); font-weight: 400; }

/* Step 4 visual: delivery card */
.delivery-card {
  width: 100%; max-width: 300px;
  display: flex; flex-direction: column; gap: 12px;
}
.delivery-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 12px;
}
.delivery-box-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.delivery-box-icon svg { stroke: rgba(255,255,255,0.75); }
.delivery-box-body h4 { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.delivery-box-body p { font-size: 11px; color: rgba(255,255,255,0.45); }
.delivery-track {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 1rem 1.25rem;
}
.track-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.track-dots {
  display: flex; align-items: center; gap: 0;
  position: relative;
}
.track-line {
  position: absolute; top: 50%; left: 12px; right: 12px;
  height: 2px; background: rgba(255,255,255,0.12);
  transform: translateY(-50%);
}
.track-line-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  width: 75%; background: var(--gold); border-radius: 2px;
}
.track-dot-wrap {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 6px; position: relative; z-index: 1;
}
.track-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: var(--forest-mid);
}
.track-dot.done { background: var(--gold); border-color: var(--gold); }
.track-dot.active { background: var(--white); border-color: var(--white); box-shadow: 0 0 0 4px rgba(255,255,255,0.15); }
.track-dot-label { font-size: 10px; color: rgba(255,255,255,0.4); text-align: center; line-height: 1.3; }
.track-dot.done + .track-dot-label,
.track-dot.active + .track-dot-label { color: rgba(255,255,255,0.7); }

/* Step content styling */
.step-num-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage);
}
.step-num-label span {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
}

.step-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 400; color: var(--forest); line-height: 1.2;
}
.step-content h2 em { font-style: italic; color: var(--forest-light); }

.step-content p {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.75; font-weight: 300;
}

.step-detail-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.step-detail-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-mid); line-height: 1.55;
}
.sdl-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.sdl-dot svg { stroke: var(--forest-light); }

.step-time-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cream-dark); color: var(--text-mid);
  border-radius: 100px; padding: 6px 14px; font-size: 12px;
  border: 1px solid var(--border);
}
.step-time-chip svg { stroke: var(--sage); }

/* ── WHAT'S INCLUDED ── */
.included-section {
  background: var(--forest);
  padding: 90px 5vw;
  position: relative; overflow: hidden;
}
.included-section::before {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.included-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.included-header .section-label { color: var(--sage); }
.included-header .section-title { color: var(--white); }
.included-header .section-title em { color: var(--gold); }

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; position: relative; z-index: 1;
}

.included-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.included-card:hover { background: rgba(255,255,255,0.09); }

.inc-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.inc-card-icon svg { stroke: var(--gold); }

.included-card h3 { font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 0.6rem; }
.included-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300; }

.included-bottom {
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  position: relative; z-index: 1;
}
.included-price-statement {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.included-price-statement .price {
  font-family: var(--ff-display);
  font-size: 2rem; color: var(--white);
}
.included-price-statement .price sup { font-family: var(--ff-body); font-size: 1rem; vertical-align: super; line-height: 0; }
.included-price-statement .desc { font-size: 14px; color: rgba(255,255,255,0.45); }

.btn-white {
  background: var(--white); color: var(--forest);
  padding: 13px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s; display: inline-block;
}
.btn-white:hover { background: var(--cream); }

/* ── TRUST / PRIVACY ── */
.trust-section { padding: 90px 5vw; background: var(--cream-dark); }

.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  display: flex; flex-direction: column; gap: 1rem;
}
.trust-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.trust-card-icon svg { stroke: var(--forest); }
.trust-card h4 { font-size: 0.95rem; font-weight: 500; color: var(--forest); }
.trust-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ── TIMELINE ── (condensed visual progress indicator) */
.timeline-section { padding: 80px 5vw; max-width: 900px; margin: 0 auto; }

.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute;
  left: 22px; top: 28px; bottom: 28px; width: 2px;
  background: linear-gradient(180deg, var(--forest) 0%, var(--sage-light) 100%);
}

.timeline-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 0; position: relative;
}

.timeline-dot {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
  transition: border-color 0.3s, background 0.3s;
}
.timeline-dot.active { background: var(--forest); border-color: var(--forest); }
.timeline-dot.active svg { stroke: var(--white); }
.timeline-dot svg { stroke: var(--sage); transition: stroke 0.3s; }

.timeline-body { padding-top: 10px; }
.timeline-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 4px;
}
.timeline-step-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); }
.timeline-chip {
  background: var(--cream-dark); color: var(--text-muted);
  font-size: 11px; padding: 2px 9px; border-radius: 100px;
  border: 1px solid var(--border);
}
.timeline-body h3 { font-size: 1rem; font-weight: 500; color: var(--forest); margin-bottom: 5px; }
.timeline-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 300; max-width: 520px; }

/* ── FAQ ── */
.faq-section { padding: 90px 5vw; }
.faq-inner { max-width: 800px; margin: 0 auto; }

.faq-grid {
  background: var(--white); border-radius: 24px;
  overflow: hidden; border: 1px solid var(--border);
  margin-top: 2.5rem;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  font-family: var(--ff-body); font-size: 14px; font-weight: 500; color: var(--forest);
  padding: 1.25rem 1.75rem;
  text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--cream); }
.faq-toggle {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; color: var(--forest);
  transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--forest); color: var(--white); border-color: var(--forest); }
.faq-answer {
  max-height: 0; overflow: hidden;
  padding: 0 1.75rem;
  font-size: 14px; color: var(--text-mid); line-height: 1.75; font-weight: 300;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.75rem 1.25rem; }

/* ── CTA BANNER ── */
.cta-banner {
  margin: 0 5vw 80px;
  background: var(--forest); border-radius: 28px;
  padding: 60px 5vw;
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute; left: -80px; bottom: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,168,153,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white); font-weight: 400; line-height: 1.2; margin-bottom: 0.6rem;
}
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,0.5); font-size: 15px; font-weight: 300; }
.cta-actions { display: flex; flex-direction: column; gap: 0.6rem; align-items: center; flex-shrink: 0; }
.cta-note { font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; }

/* ── FOOTER ── */
footer { background: var(--text-dark); padding: 60px 5vw 36px; color: rgba(255,255,255,0.5); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand > .footer-brand-logo { height: 26px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 240px; color: rgba(255,255,255,0.35); }
.footer-col h5 { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 12px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

hr { border: none; border-top: 1px solid var(--border); }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 32px; }
  .hero-right { display: none; }
  .step-row { grid-template-columns: 1fr; }
  .step-row.reverse { direction: ltr; }
  .step-visual { min-height: 280px; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 22px; }
}
