/* ─────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────── */
:root {
  /* ── Willow Brand Pack v1.0 ── */
  --sage:        #1F3A2E;   /* Forest Green  #1F3A2E */
  --sage-mid:    #ABB99D;   /* Sage          #ABB99D */
  --sage-light:  #C8D5BE;
  --sage-pale:   #EBF0E7;
  --sage-faint:  #F4F6F2;
  --gold:        #D4AF37;   /* Gold          #D4AF37 */
  --gold-pale:   #F5EBB8;
  --ink:         #333333;   /* Charcoal      #333333 */
  --ink-mid:     #4A4A4A;
  --ink-light:   #7A7A7A;
  --ink-faint:   #B0B0B0;
  --parchment:   #F7F4EC;   /* Warm Cream    #F7F4EC */
  --white:       #FFFFFF;
  --warn-bg:     #FEF8EE;
  --warn-bdr:    #E8C97A;
  --warn-txt:    #6B4E1A;
  --stop-bg:     #FDF0EF;
  --stop-bdr:    #E89A94;
  --stop-txt:    #7A1F1A;
  --border:      rgba(31,58,46,0.15);
  --border-mid:  rgba(31,58,46,0.28);
  --shadow-sm:   0 1px 4px rgba(51,51,51,0.06), 0 2px 12px rgba(51,51,51,0.04);
  --shadow-md:   0 2px 8px rgba(51,51,51,0.08), 0 6px 24px rgba(51,51,51,0.06);
  --r:           10px;
  --r-lg:        16px;
}

/* ─────────────────────────────────────────────
   RESET + BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', 'Jost', sans-serif;
  background: var(--parchment);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────────
   SCREENS
───────────────────────────────────────────── */
.screen { display: none; min-height: 100vh; }
.screen.active { display: block; }

/* ═══════════════════════════════════════════
   LANDING
═══════════════════════════════════════════ */
.land-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.land-brand {
  font-family: 'Playfair Display', 'Lora', serif; font-size: 22px; font-weight: 600;
  color: var(--sage); letter-spacing: -0.01em;
}
.land-brand small {
  font-family: 'Lato', 'Jost', sans-serif; font-size: 11px; font-weight: 400;
  color: var(--ink-faint); letter-spacing: .08em; text-transform: uppercase;
  margin-left: 6px; vertical-align: middle;
}
.land-nav-right { display: flex; align-items: center; gap: 12px; }
.nav-price { font-size: 13px; color: var(--ink-light); }
.nav-price strong { color: var(--ink); }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 62px);
  max-width: 1100px; margin: 0 auto;
  padding: 60px 40px;
  gap: 60px; align-items: center;
}
.hero-left {}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--sage-pale); border: 1px solid var(--sage-light);
  border-radius: 20px; padding: 5px 14px;
  font-size: 12px; font-weight: 500; color: var(--sage);
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-kicker::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sage-mid); }
.hero-h1 {
  font-family: 'Playfair Display', 'Lora', serif; font-size: clamp(36px, 5vw, 54px);
  font-weight: 500; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 18px;
}
.hero-h1 em { font-style: italic; color: var(--sage); }
.hero-sub {
  font-size: 17px; color: var(--ink-light); line-height: 1.7;
  font-weight: 300; max-width: 440px; margin-bottom: 36px;
}
.hero-trust {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px;
}
.trust-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-mid); font-weight: 400;
}
.trust-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-pale); border: 1px solid var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--sage); font-weight: 600; flex-shrink: 0;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-note { font-size: 12px; color: var(--ink-faint); margin-top: 12px; }

/* Hero card */
.hero-right {}
.hero-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--shadow-md);
}
.card-title {
  font-family: 'Playfair Display', 'Lora', serif; font-size: 17px; font-weight: 500;
  color: var(--ink); margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.what-included { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.included-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--ink-mid); line-height: 1.5;
}
.inc-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-pale); display: flex; align-items: center;
  justify-content: center; font-size: 10px; color: var(--sage);
  font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.price-block {
  background: var(--sage-faint); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.price-label { font-size: 12px; color: var(--ink-light); margin-bottom: 3px; }
.price-val { font-family: 'Lora', serif; font-size: 32px; color: var(--ink); font-weight: 500; }
.price-per { font-size: 12px; color: var(--ink-light); }
.price-vs { text-align: right; }
.price-vs-top { font-size: 11px; color: var(--ink-faint); margin-bottom: 2px; }
.price-vs-bot { font-size: 13px; color: var(--ink-mid); font-weight: 500; }
.price-vs-bot span { color: var(--sage); font-weight: 600; }
.time-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--ink-light); margin-bottom: 16px;
}
.time-badge::before { content: '⏱'; font-size: 14px; }

/* Social proof strip */
.proof-strip {
  background: var(--ink); padding: 18px 40px;
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.proof-item strong { color: rgba(255,255,255,0.85); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r); font-size: 14px;
  font-weight: 500; border: none; transition: all .18s; letter-spacing: .01em;
}
.btn-primary {
  background: var(--sage); color: var(--white);
}
.btn-primary:hover { background: #3D6B4A; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(74,124,89,0.3); }
.btn-outline {
  background: transparent; color: var(--ink-mid);
  border: 1px solid rgba(28,31,26,0.18);
}
.btn-outline:hover { background: var(--sage-faint); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-full { width: 100%; }
.btn-pay {
  background: var(--sage); color: white; width: 100%;
  padding: 17px; font-size: 16px; font-weight: 600;
  border-radius: var(--r); border: none; letter-spacing: .01em;
  transition: all .18s;
}
.btn-pay:hover { background: #3D6B4A; box-shadow: 0 4px 20px rgba(74,124,89,0.35); }

/* ═══════════════════════════════════════════
   APP SHELL
═══════════════════════════════════════════ */
.app-shell {
  min-height: 100vh;
  display: flex; flex-direction: column;
}
.app-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 56px;
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.app-brand {
  font-family: 'Playfair Display', 'Lora', serif; font-size: 18px; font-weight: 600;
  color: var(--sage);
}
.app-exit {
  font-size: 12.5px; color: var(--ink-faint); cursor: pointer;
  transition: color .15s; border: none; background: none;
}
.app-exit:hover { color: var(--ink-light); }

/* Progress */
.progress-wrap {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0 32px;
}
.progress-steps {
  display: flex; align-items: center; max-width: 600px; margin: 0 auto;
  padding: 14px 0;
}
.ps {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--ink-faint); font-weight: 500;
  white-space: nowrap;
}
.ps-dot {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600;
  border: 1.5px solid var(--border-mid);
  color: var(--ink-faint); background: transparent;
  transition: all .2s; flex-shrink: 0;
}
.ps.done .ps-dot { background: var(--sage); border-color: var(--sage); color: white; }
.ps.active .ps-dot { background: var(--sage-pale); border-color: var(--sage); color: var(--sage); }
.ps.active { color: var(--sage); }
.ps.done { color: var(--sage-mid); }
.ps-line { flex: 1; height: 1px; background: var(--border); margin: 0 6px; }
.ps-line.done { background: var(--sage-light); }

/* Step container */
.step-wrap { flex: 1; padding: 40px 24px 80px; }
.step-inner { max-width: 580px; margin: 0 auto; }

/* Step header */
.step-hd { margin-bottom: 28px; }
.step-tag {
  font-size: 11px; font-weight: 600; color: var(--sage);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px;
}
.step-h { font-family: 'Lora', serif; font-size: 26px; font-weight: 500; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }
.step-sub { font-size: 14px; color: var(--ink-light); line-height: 1.6; }

/* Cards */
.q-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.q-card + .q-card { margin-top: 0; }

/* Form fields */
.field { margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }
.field-row { display: grid; gap: 14px; }
.field-row-2 { grid-template-columns: 1fr 1fr; }
.field-label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--ink-mid); margin-bottom: 6px; letter-spacing: .02em;
}
.field-hint { font-size: 12px; color: var(--ink-faint); margin-top: 4px; line-height: 1.4; }
.field-input {
  width: 100%; padding: 11px 14px;
  border: 1px solid rgba(28,31,26,0.18); border-radius: var(--r);
  font-size: 14px; color: var(--ink); background: var(--white);
  outline: none; transition: border .15s, box-shadow .15s;
}
.field-input:focus {
  border-color: var(--sage); box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
}
.field-select {
  width: 100%; padding: 11px 14px;
  border: 1px solid rgba(28,31,26,0.18); border-radius: var(--r);
  font-size: 14px; color: var(--ink); background: var(--white);
  outline: none; 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='%237A8275' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.field-select:focus { border-color: var(--sage); outline: none; box-shadow: 0 0 0 3px rgba(74,124,89,0.1); }
.field-textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid rgba(28,31,26,0.18); border-radius: var(--r);
  font-size: 14px; color: var(--ink); background: var(--white);
  outline: none; resize: vertical; min-height: 80px; line-height: 1.6;
}
.field-textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(74,124,89,0.1); }

/* Toggle pills */
.toggle-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.tog {
  padding: 8px 18px; border-radius: 20px;
  border: 1px solid rgba(28,31,26,0.18);
  background: var(--white); color: var(--ink-mid); font-size: 13.5px;
  font-weight: 400; transition: all .15s;
}
.tog:hover { border-color: var(--sage-light); background: var(--sage-faint); }
.tog.on { background: var(--sage); border-color: var(--sage); color: white; font-weight: 500; }

/* Eligibility checks */
.elig-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border); cursor: pointer;
}
.elig-item:last-child { border-bottom: none; }
.elig-check {
  width: 22px; height: 22px; border-radius: 6px;
  border: 1.5px solid var(--border-mid); flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.elig-item.checked .elig-check {
  background: var(--sage); border-color: var(--sage); color: white; font-size: 11px;
}
.elig-text { font-size: 14px; color: var(--ink-mid); line-height: 1.5; }
.elig-text strong { color: var(--ink); display: block; margin-bottom: 2px; }

/* Risk / warning boxes */
.warn-box {
  background: var(--warn-bg); border: 1px solid var(--warn-bdr);
  border-radius: var(--r); padding: 14px 16px; margin-top: 14px;
  display: flex; gap: 10px; align-items: flex-start;
}
.warn-box.stop {
  background: var(--stop-bg); border-color: var(--stop-bdr);
}
.warn-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.warn-text { font-size: 13px; line-height: 1.6; color: var(--warn-txt); }
.warn-box.stop .warn-text { color: var(--stop-txt); }
.warn-text strong { font-weight: 600; display: block; margin-bottom: 2px; }
.warn-link {
  display: inline-block; margin-top: 6px; font-size: 12.5px;
  color: var(--sage); font-weight: 500; text-decoration: underline; cursor: pointer;
}

/* Inline explanation */
.inline-explain {
  background: var(--sage-faint); border-left: 3px solid var(--sage-light);
  border-radius: 0 var(--r) var(--r) 0; padding: 12px 14px; margin-top: 8px;
  font-size: 13px; color: var(--ink-mid); line-height: 1.6;
}

/* Beneficiary rows */
.ben-list { display: flex; flex-direction: column; gap: 10px; }
.ben-row {
  display: grid; grid-template-columns: 1fr 120px 70px 34px;
  gap: 8px; align-items: end;
}
.ben-remove {
  width: 34px; height: 40px; border-radius: 8px;
  border: 1px solid rgba(28,31,26,0.14); background: transparent;
  color: var(--ink-faint); font-size: 14px; transition: all .15s;
  display: flex; align-items: center; justify-content: center;
}
.ben-remove:hover { background: var(--stop-bg); border-color: var(--stop-bdr); color: var(--stop-txt); }
.add-btn {
  background: none; border: none; color: var(--sage); font-size: 13px;
  font-weight: 500; padding: 6px 0; display: flex; align-items: center; gap: 5px;
  margin-top: 4px;
}
.total-strip {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-top: 1px solid var(--border); margin-top: 8px;
  font-size: 13.5px;
}
.total-val { font-family: 'Lora', serif; font-size: 22px; font-weight: 500; }
.total-ok { color: var(--sage); }
.total-bad { color: #C0392B; }

/* Review screen */
.review-section {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.rev-head {
  padding: 14px 20px; background: var(--sage-faint);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.rev-head-title {
  font-size: 12px; font-weight: 600; color: var(--sage);
  text-transform: uppercase; letter-spacing: .08em;
}
.rev-edit {
  font-size: 12px; color: var(--sage); cursor: pointer;
  background: none; border: none; font-weight: 500;
}
.rev-body { padding: 20px; }
.rev-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13.5px;
}
.rev-row:last-child { border-bottom: none; }
.rev-label { color: var(--ink-light); font-weight: 400; flex: 0 0 140px; }
.rev-value { color: var(--ink); font-weight: 500; text-align: right; flex: 1; }

/* Risks summary on review */
.risk-summary {
  background: var(--warn-bg); border: 1px solid var(--warn-bdr);
  border-radius: var(--r-lg); padding: 18px 20px; margin-bottom: 16px;
}
.risk-summary-title {
  font-size: 13px; font-weight: 600; color: var(--warn-txt);
  margin-bottom: 10px; display: flex; align-items: center; gap: 7px;
}
.risk-item {
  display: flex; gap: 8px; font-size: 13px; color: var(--warn-txt);
  padding: 5px 0; border-bottom: 1px solid var(--warn-bdr);
  line-height: 1.5;
}
.risk-item:last-child { border-bottom: none; }

/* Confirm checkbox */
.confirm-box {
  background: var(--sage-faint); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px; display: flex; gap: 12px;
  align-items: flex-start; cursor: pointer; margin-bottom: 16px;
}
.confirm-check {
  width: 20px; height: 20px; border-radius: 5px;
  border: 1.5px solid var(--border-mid); flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.confirm-box.checked .confirm-check {
  background: var(--sage); border-color: var(--sage); color: white; font-size: 11px;
}
.confirm-text { font-size: 13.5px; color: var(--ink-mid); line-height: 1.55; }

/* Payment screen */
.pay-wrap { display: grid; grid-template-columns: 1fr 380px; gap: 32px; max-width: 860px; margin: 0 auto; }
.pay-left {}
.pay-right {}
.pay-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm);
}
.pay-summary {
  background: var(--sage-faint); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px; margin-bottom: 20px;
}
.pay-sum-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13.5px; padding: 5px 0;
}
.pay-sum-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--border-mid);
  font-size: 16px; font-weight: 600; color: var(--ink);
}
.pay-guarantee {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--ink-mid); line-height: 1.6;
  padding: 16px; background: var(--sage-faint); border-radius: var(--r);
  border: 1px solid var(--border); margin-top: 14px;
}
.pay-guarantee-icon { font-size: 18px; flex-shrink: 0; }

/* Value props for payment */
.value-props { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.value-prop {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--shadow-sm);
}
.vp-icon {
  width: 36px; height: 36px; border-radius: 9px; background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.vp-title { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.vp-desc { font-size: 12.5px; color: var(--ink-light); line-height: 1.5; }

/* Fake card input */
.card-field {
  padding: 12px 14px; border: 1px solid rgba(28,31,26,0.18);
  border-radius: var(--r); font-size: 14px; color: var(--ink);
  background: var(--white); width: 100%; margin-bottom: 12px;
}
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.pay-secure {
  font-size: 12px; color: var(--ink-faint); text-align: center; margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* Execution guide */
.exec-wrap { max-width: 640px; margin: 0 auto; }
.exec-step {
  display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border);
}
.exec-step:last-child { border-bottom: none; }
.exec-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--sage);
  color: white; font-family: 'Lora', serif; font-size: 15px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.exec-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.exec-body { font-size: 13.5px; color: var(--ink-mid); line-height: 1.65; }
.exec-script {
  background: var(--sage-faint); border-left: 3px solid var(--sage);
  border-radius: 0 var(--r) var(--r) 0; padding: 12px 14px;
  margin-top: 10px; font-size: 13px; color: var(--ink-mid); line-height: 1.6;
  font-style: italic;
}
.mistake-box {
  background: var(--stop-bg); border: 1px solid var(--stop-bdr);
  border-radius: var(--r); padding: 16px; margin-top: 16px;
}
.mistake-title {
  font-size: 12.5px; font-weight: 700; color: var(--stop-txt);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px;
}
.mistake-item {
  display: flex; gap: 8px; font-size: 13px; color: var(--stop-txt);
  padding: 5px 0; border-bottom: 1px solid var(--stop-bdr); line-height: 1.5;
}
.mistake-item:last-child { border-bottom: none; }
.checklist-print {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px; margin-top: 24px;
  box-shadow: var(--shadow-sm);
}
.chk-print-title { font-family: 'Lora', serif; font-size: 16px; color: var(--ink); margin-bottom: 14px; }
.chk-item {
  display: flex; gap: 10px; align-items: center; padding: 9px 0;
  border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--ink-mid);
}
.chk-item:last-child { border-bottom: none; }
.chk-box {
  width: 18px; height: 18px; border-radius: 4px;
  border: 1.5px solid var(--border-mid); flex-shrink: 0;
}

/* Bottom nav */
.step-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 -4px 20px rgba(28,31,26,0.06);
}
.step-nav-hint { font-size: 12px; color: var(--ink-faint); }

/* Unsuitable screen */
.unsuitable-wrap { max-width: 480px; margin: 80px auto; text-align: center; padding: 0 24px; }
.unsuitable-icon { font-size: 48px; margin-bottom: 20px; }
.unsuitable-h { font-family: 'Lora', serif; font-size: 26px; color: var(--ink); margin-bottom: 12px; }
.unsuitable-sub { font-size: 15px; color: var(--ink-light); line-height: 1.7; margin-bottom: 28px; }
.solicitor-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; text-align: left; }
.sol-option {
  display: flex; gap: 12px; align-items: center; padding: 14px 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); font-size: 14px; color: var(--ink-mid);
}
.sol-icon { font-size: 20px; }

/* Complete */
.complete-wrap { max-width: 520px; margin: 60px auto; text-align: center; padding: 0 24px; }
.complete-icon { font-size: 52px; margin-bottom: 16px; }
.complete-h { font-family: 'Lora', serif; font-size: 30px; color: var(--ink); margin-bottom: 10px; }
.complete-sub { font-size: 15px; color: var(--ink-light); line-height: 1.7; margin-bottom: 28px; }
.next-steps {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px; text-align: left; margin-bottom: 24px;
}
.ns-title { font-size: 12px; font-weight: 700; color: var(--sage); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.ns-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-mid); margin-bottom: 10px; line-height: 1.5; }
.ns-num { width: 22px; height: 22px; border-radius: 50%; background: var(--sage); color: white; font-size: 11px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeUp .28s ease both; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 36px 20px; gap: 32px; }
  .hero-right { order: -1; }
  .land-nav { padding: 16px 20px; }
  .pay-wrap { grid-template-columns: 1fr; }
  .field-row-2 { grid-template-columns: 1fr; }
  .step-wrap { padding: 28px 16px 80px; }
  .progress-wrap { padding: 0 16px; }
  .app-nav { padding: 0 16px; }
}
/* ── Field validation errors ── */
.field-input.error,
.field-select.error,
.field-textarea.error {
  border-color: var(--stop-bdr) !important;
  background: var(--stop-bg);
}
