/* ============================================================
   UNLOCK YOUR BUSINESS — Global Stylesheet
   Design system: Navy / Gold / Cream — Cormorant Garamond + Inter
   ============================================================ */

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

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:           oklch(12% 0.044 260);
  --navy-mid:       oklch(20% 0.044 260);
  --navy-light:     oklch(28% 0.040 260);
  --navy-deep:      oklch(8% 0.035 260);

  --gold:           oklch(68% 0.116 63);
  --gold-deep:      oklch(56% 0.116 63);
  --gold-rule:      oklch(68% 0.116 63 / 0.4);
  --gold-tint:      oklch(68% 0.116 63 / 0.14);

  --cream:          oklch(96% 0.010 68);
  --cream-dark:     oklch(92% 0.010 68);
  --cream-border:   oklch(87% 0.010 68);
  --cream-border-strong: oklch(78% 0.010 68);

  --ink:            oklch(15% 0.007 260);
  --text-secondary: oklch(43% 0.008 56);
  --text-muted:     oklch(57% 0.007 56);
  --text-inv:       oklch(96% 0.010 68);
  --text-inv-muted: oklch(76% 0.010 68);
  --text-inv-dim:   oklch(64% 0.010 68);

  --white:          oklch(99% 0.005 68);

  --shadow-1: 0 1px 4px oklch(12% 0.044 260 / 0.08);
  --shadow-2: 0 2px 12px oklch(12% 0.044 260 / 0.12);
  --shadow-3: 0 8px 32px oklch(12% 0.044 260 / 0.16);
  --shadow-4: 0 20px 60px oklch(12% 0.044 260 / 0.20);

  --radius:   2px;
  --radius-md: 4px;

  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --dur:      240ms;
  --dur-slow: 400ms;

  --container:        1200px;
  --container-text:   720px;
  --container-narrow: 560px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 1.0625rem; line-height: 1.65; color: var(--ink); background: var(--cream); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}
.container--text   { max-width: var(--container-text);   margin: 0 auto; padding: 0 48px; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 48px; }

@media (max-width: 900px)  { .container, .container--text, .container--narrow { padding: 0 32px; } }
@media (max-width: 480px)  { .container, .container--text, .container--narrow { padding: 0 20px; } }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.display { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px,6vw,72px); font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; }
h1, .h1  { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,5vw,60px); font-weight: 700; line-height: 1.1;  letter-spacing: -0.01em; }
h2, .h2  { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px,4vw,44px); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h3, .h3  { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px,2.5vw,28px); font-weight: 400; line-height: 1.3; }
.h4      { font-family: 'Inter', sans-serif; font-size: 1.125rem; font-weight: 600; line-height: 1.35; }
.lead    { font-size: 1.0625rem; line-height: 1.7; color: var(--text-secondary); }
.small   { font-size: 0.8125rem; line-height: 1.6; }
.legal   { font-size: 0.6875rem; line-height: 1.7; }

.gold-rule { border: none; border-top: 1px solid var(--gold-rule); margin: 32px 0; }

.pull-quote { border-left: 2px solid var(--gold); padding-left: 20px; margin: 28px 0; }
.pull-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; font-style: italic; color: var(--gold); line-height: 1.5; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius); border: none;
  cursor: pointer; text-decoration: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary  { background: var(--gold); color: var(--navy); }
.btn-primary:hover  { background: var(--gold-deep); }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary  { background: var(--navy); color: var(--text-inv); }
.btn-secondary:hover  { background: var(--navy-mid); }

.btn-outline  { background: transparent; color: var(--text-inv); border: 1px solid oklch(68% 0.116 63 / 0.45); }
.btn-outline:hover  { border-color: oklch(68% 0.116 63 / 0.75); }

.btn-ghost {
  background: transparent; border: none;
  color: var(--gold); font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: none; cursor: pointer;
  text-decoration: underline; text-decoration-color: oklch(68% 0.116 63 / 0.4);
  padding: 4px 0; transition: text-decoration-color var(--dur) var(--ease);
}
.btn-ghost:hover { text-decoration-color: var(--gold); }

.btn-sm { padding: 9px 20px; font-size: 0.75rem; }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 48px;
  transition: background var(--dur-slow) var(--ease), border-color var(--dur-slow) var(--ease);
}
.nav--transparent { background: transparent; border-bottom: 1px solid transparent; }
.nav--solid { background: var(--cream); border-bottom: 1px solid var(--cream-border); }

.nav__brand { flex-shrink: 0; display: flex; align-items: center; }
.nav__logo { height: 38px; width: auto; cursor: pointer; display: block; }
.nav__logo img { height: 38px; width: auto; }

.nav__center { flex: 1; display: flex; align-items: center; justify-content: center; gap: 28px; }
.nav__right  { flex-shrink: 0; display: flex; align-items: center; gap: 16px; }

.nav__phone {
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--text-secondary); text-decoration: none; white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.nav__phone:hover { color: var(--navy); }
.nav__phone--inv { color: var(--text-inv-muted); }
.nav__phone--inv:hover { color: var(--text-inv); }

.nav__links { display: flex; align-items: center; gap: 32px; }

.nav__link {
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.02em;
  background: none; border: none; cursor: pointer; padding: 4px 0;
  transition: color var(--dur) var(--ease); text-decoration: none;
  color: var(--text-secondary);
}
.nav__link:hover { color: var(--navy); }
.nav__link--inv { color: oklch(82% 0.010 68); }
.nav__link--inv:hover { color: var(--text-inv); }
.nav__link--active { color: var(--navy); font-weight: 600; }
.nav__link--active-inv { color: var(--text-inv); font-weight: 600; }
.nav--solid .nav__link--inv { color: var(--text-secondary); }
.nav--solid .nav__link--inv:hover { color: var(--navy); }
.nav--solid .nav__link--active-inv { color: var(--navy); }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span { display: block; width: 22px; height: 2px; border-radius: 1px; background: var(--navy); transition: background var(--dur) var(--ease); }
.nav__hamburger--inv span { background: var(--text-inv); }

.nav__mobile {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 199;
  background: var(--cream); border-bottom: 1px solid var(--cream-border);
  padding: 16px 20px 24px; display: flex; flex-direction: column; gap: 2px;
  transform: translateY(-110%); opacity: 0;
  transition: transform var(--dur-slow) var(--ease), opacity var(--dur-slow) var(--ease);
  pointer-events: none;
}
.nav__mobile.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav__mobile-link {
  display: block; padding: 12px 14px; border-radius: var(--radius);
  font-size: 0.9375rem; font-weight: 500; color: var(--ink);
  text-decoration: none; transition: background var(--dur) var(--ease);
}
.nav__mobile-link:hover { background: var(--cream-dark); }

@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav__center, .nav__right, .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--navy); min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero__texture {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.035;
  background-image: repeating-linear-gradient(0deg, var(--cream) 0px, var(--cream) 1px, transparent 1px, transparent 80px);
}
.hero__gold-line {
  position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 2px; background: oklch(68% 0.116 63 / 0.35);
}
.hero__content { max-width: 560px; }
.hero__eyebrow { margin-bottom: 24px; }
.hero__title { color: var(--text-inv); margin-bottom: 28px; font-size: clamp(32px, 3.8vw, 52px); }
.hero__title em { color: var(--gold); font-style: italic; }
.hero__lead { color: var(--text-inv-muted); font-size: 1.0625rem; max-width: 640px; margin-bottom: 44px; line-height: 1.7; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 64px; }
.hero__bar { border-top: 1px solid oklch(68% 0.116 63 / 0.25); padding-top: 28px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero__bar-item-title { font-size: 0.75rem; font-weight: 600; color: var(--text-inv); margin-bottom: 2px; }
.hero__bar-item-sub  { font-size: 0.6875rem; color: oklch(57% 0.007 56); }

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero { background: var(--navy); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image: repeating-linear-gradient(0deg, var(--cream) 0px, var(--cream) 1px, transparent 1px, transparent 80px);
}
.page-hero__eyebrow { margin-bottom: 20px; }
.page-hero__title { color: var(--text-inv); max-width: 700px; }
.page-hero__lead { color: var(--text-inv-muted); font-size: 1.0625rem; max-width: 580px; margin-top: 20px; line-height: 1.7; }
.page-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 36px; }
.page-hero__trust { font-size: 0.75rem; color: oklch(52% 0.008 56); margin-top: 16px; line-height: 1.55; }

/* ── LANDING PAGE HERO ─────────────────────────────────────── */
.lp-hero { background: var(--navy); padding: 140px 0 80px; position: relative; overflow: hidden; }
.lp-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image: repeating-linear-gradient(0deg, var(--cream) 0px, var(--cream) 1px, transparent 1px, transparent 80px);
}
.lp-hero .container { position: relative; z-index: 3; margin-left: 0; max-width: none; padding-left: 500px; padding-right: 0; }
.lp-hero__eyebrow { margin-bottom: 20px; }
.lp-hero__title { color: var(--text-inv); max-width: 720px; margin-bottom: 20px; }
.lp-hero__lead { color: var(--text-inv-muted); font-size: 1.0625rem; max-width: 580px; margin-bottom: 36px; line-height: 1.7; }
.lp-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }
.lp-hero__trust { font-size: 0.75rem; color: oklch(52% 0.008 56); line-height: 1.55; }

/* ── SECTIONS ───────────────────────────────────────────────── */
.section      { padding: 80px 0; }
.section--lg  { padding: 100px 0; }
.section--xl  { padding: 120px 0; }
.section--dark      { background: var(--navy); color: var(--text-inv); }
.section--cream     { background: var(--cream); }
.section--cream-dark{ background: var(--cream-dark); }
.section--white     { background: var(--white); }

.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--cream-border);
  border-radius: var(--radius); box-shadow: var(--shadow-1);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }

/* Service cards */
.service-card { padding: 28px; }
.service-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.service-card__eyebrow { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.service-card__num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: oklch(68% 0.116 63 / 0.22); line-height: 1; }
.service-card__title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.service-card__body { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.service-card__footer { border-top: 1px solid oklch(68% 0.116 63 / 0.22); padding-top: 12px; display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.service-card__price { font-size: 0.75rem; font-weight: 600; color: var(--navy); }
.service-card__tag { font-size: 0.625rem; color: var(--text-muted); text-align: right; line-height: 1.4; max-width: 180px; }

/* Steps grid */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--navy-light); }
.step-card { background: var(--navy); padding: 36px 28px; }
.step-card__num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: oklch(68% 0.116 63 / 0.28); line-height: 1; margin-bottom: 16px; }
.step-card__title { font-size: 0.9375rem; font-weight: 600; color: var(--text-inv); margin-bottom: 10px; line-height: 1.3; }
.step-card__body { font-size: 0.8125rem; color: var(--text-inv-dim); line-height: 1.65; }

/* Honesty cards */
.honesty-card { border-top: 2px solid var(--gold); padding-top: 20px; }
.honesty-card__title { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.honesty-card__body { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* Testimonials */
.testimonial { padding: 32px; position: relative; }
.testimonial::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--gold); opacity: 0.25; position: absolute; top: 8px; left: 20px; line-height: 1; }
.testimonial__text { font-family: 'Inter', sans-serif; font-size: 0.9375rem; font-style: italic; color: var(--ink); line-height: 1.7; padding-top: 24px; }

/* Partner cards */
.partner-card { padding: 20px 24px; }
.partner-card__name { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.partner-card__role { font-size: 0.75rem; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 8px; }
.partner-card__body { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.6; }

/* Flow diagram */
.flow-diagram { background: var(--cream-dark); border-radius: var(--radius); padding: 32px; }
.flow-diagram__label { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.flow-step { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.flow-num { width: 24px; height: 24px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 0.625rem; font-weight: 700; color: white; flex-shrink: 0; }
.flow-num--red { background: oklch(55% 0.16 25); }
.flow-label { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em; color: var(--navy); }
.flow-label--red { color: oklch(55% 0.16 25); }
.flow-note { font-size: 0.6875rem; color: oklch(55% 0.16 25); font-weight: 500; }
.flow-connector { width: 1px; height: 8px; background: oklch(68% 0.116 63 / 0.3); margin: 0 11px; }
.flow-footer { border-top: 1px solid oklch(68% 0.116 63 / 0.3); margin-top: 20px; padding-top: 16px; font-size: 0.6875rem; font-weight: 600; color: var(--gold); letter-spacing: 0.06em; }

/* Value stack */
.value-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--cream-border); }
.value-item:last-child { border-bottom: none; }
.value-item__check { color: var(--gold); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.value-item__text { font-size: 0.9375rem; color: var(--ink); line-height: 1.5; }

/* Illustration block */
.illustration-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.illus-block { border-radius: var(--radius); padding: 24px; }
.illus-block--before { background: oklch(96% 0.04 25); border: 1px solid oklch(88% 0.04 25); }
.illus-block--after  { background: oklch(96% 0.04 152); border: 1px solid oklch(88% 0.04 152); }
.illus-block__label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.illus-block--before .illus-block__label { color: oklch(50% 0.14 25); }
.illus-block--after  .illus-block__label { color: oklch(40% 0.14 152); }
.illus-block__item { font-size: 0.8125rem; line-height: 1.65; color: var(--ink); padding: 3px 0 3px 14px; position: relative; }
.illus-block__item::before { content: '—'; position: absolute; left: 0; opacity: 0.4; }

.illus-table { width: 100%; border-collapse: collapse; font-size: 0.8125rem; margin-top: 20px; }
.illus-table th { text-align: left; padding: 10px 12px; background: var(--cream-dark); font-weight: 600; color: var(--navy); font-size: 0.75rem; letter-spacing: 0.04em; border: 1px solid var(--cream-border); }
.illus-table td { padding: 10px 12px; border: 1px solid var(--cream-border); color: var(--text-secondary); line-height: 1.5; }
.illus-table tr:nth-child(even) td { background: oklch(98% 0.010 68); }

/* CTA section */
.cta-section { background: var(--navy); padding: 80px 0; text-align: center; }
.cta-section__title { color: var(--text-inv); margin: 0 auto 16px; }
.cta-section__body { color: oklch(72% 0.008 56); font-size: 0.9375rem; line-height: 1.7; max-width: var(--container-narrow); margin: 0 auto 36px; }
.cta-section__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cta-section__note { font-size: 0.75rem; color: oklch(52% 0.008 56); margin-top: 20px; }

/* Disclosure */
.disclosure { background: var(--cream-dark); border-radius: var(--radius); padding: 16px 20px; }
.disclosure__label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.disclosure__text { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.65; }

/* ── FORMS ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.75rem; font-weight: 600; color: oklch(22% 0.036 260); margin-bottom: 5px; letter-spacing: 0.02em; }
.form-input,
.form-select,
.form-textarea {
  width: 100%; font-family: 'Inter', sans-serif; font-size: 0.9375rem;
  color: var(--ink); background: var(--white);
  border: 1px solid oklch(82% 0.010 68); border-radius: var(--radius);
  padding: 10px 12px; outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px oklch(68% 0.116 63 / 0.12);
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-error { font-size: 0.6875rem; color: oklch(55% 0.16 25); margin-top: 4px; }
.form-input--error { border-color: oklch(55% 0.16 25) !important; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-card { background: var(--white); border: 1px solid var(--cream-border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-2); }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--cream-border); }

/* ── CALCULATOR ─────────────────────────────────────────────── */
.calc-progress { display: flex; gap: 6px; margin-bottom: 40px; }
.calc-bar { height: 3px; flex: 1; border-radius: 1px; background: var(--cream-border); transition: background 300ms var(--ease); }
.calc-bar--active { background: var(--gold); }
.calc-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.calc-option {
  width: 100%; text-align: left; padding: 15px 20px;
  background: var(--white); border: 1px solid var(--cream-border);
  border-radius: var(--radius); cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.9375rem; font-weight: 400; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.calc-option:hover { border-color: oklch(70% 0.008 56); background: oklch(98% 0.010 68); }
.calc-option.selected { background: var(--navy); border-color: var(--navy); color: var(--text-inv); font-weight: 600; }

.result-band { border-radius: 0 var(--radius) var(--radius) 0; padding: 24px; margin-bottom: 28px; }
.result-band--green { background: oklch(96% 0.04 152); border-left: 3px solid oklch(52% 0.14 152); }
.result-band--amber { background: oklch(96% 0.04 62);  border-left: 3px solid oklch(62% 0.14 62);  }
.result-band--red   { background: oklch(96% 0.04 25);  border-left: 3px solid oklch(50% 0.16 25);  }
.result-band__label { font-size: 1.0625rem; font-weight: 700; margin-bottom: 10px; }
.result-band--green .result-band__label { color: oklch(36% 0.12 152); }
.result-band--amber .result-band__label { color: oklch(44% 0.12 62); }
.result-band--red   .result-band__label { color: oklch(38% 0.14 25); }
.result-band__body  { font-size: 0.875rem; color: oklch(22% 0.007 260); line-height: 1.65; }

/* ── APPLICATION FORM PAGE ──────────────────────────────────── */
.apply-grid { display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; }
.apply-sidebar__eyebrow { margin-bottom: 16px; }
.apply-sidebar__title { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 16px; }
.apply-sidebar__body { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.apply-sec-nav { display: flex; flex-direction: column; gap: 4px; }
.apply-sec-btn {
  text-align: left; background: transparent; color: var(--text-secondary);
  font-family: 'Inter', sans-serif; font-size: 0.8125rem; font-weight: 400;
  padding: 9px 14px; border: none; border-radius: var(--radius); cursor: pointer;
  letter-spacing: 0.02em;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.apply-sec-btn:hover { background: var(--cream-dark); }
.apply-sec-btn.active { background: var(--navy); color: var(--text-inv); font-weight: 600; }
.apply-sec-btn.active .sec-num { color: var(--gold); }
.sec-num { color: oklch(72% 0.008 56); margin-right: 10px; font-size: 0.625rem; font-weight: 700; }
.form-section { display: none; }
.form-section.active { display: block; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--navy-deep); padding: 64px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer__logo { height: 32px; width: auto; margin-bottom: 16px; }
.footer__tagline { font-size: 0.8125rem; color: oklch(57% 0.007 56); line-height: 1.7; max-width: 300px; }
.footer__col-title { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(52% 0.008 56); margin-bottom: 16px; }
.footer__link { display: block; font-size: 0.8125rem; color: oklch(68% 0.008 56); margin-bottom: 8px; text-decoration: none; transition: color var(--dur) var(--ease); }
.footer__link:hover { color: var(--gold); }
.footer__divider { border: none; border-top: 1px solid oklch(22% 0.036 260); margin-bottom: 24px; }
.footer__legal { font-size: 0.6875rem; color: oklch(44% 0.008 56); line-height: 1.65; }

/* ── CHATBOT ─────────────────────────────────────────────────── */
.chatbot-toggle {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 52px; height: 52px; background: var(--gold); border-radius: 50%; border: none;
  cursor: pointer; box-shadow: 0 4px 16px oklch(12% 0.044 260 / 0.24);
  display: flex; align-items: center; justify-content: center;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.chatbot-toggle:hover { transform: scale(1.07); box-shadow: 0 6px 24px oklch(12% 0.044 260 / 0.32); }
.chatbot-toggle svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.chatbot-panel {
  position: fixed; bottom: 92px; right: 28px; z-index: 300;
  width: 320px; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-3); border: 1px solid var(--cream-border);
  overflow: hidden; animation: slideUp 250ms var(--ease) both;
}
.chatbot-panel.hidden { display: none; }
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.chatbot-header { background: var(--navy); padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; }
.chatbot-header__name { font-size: 0.8125rem; font-weight: 600; color: var(--text-inv); }
.chatbot-header__status { font-size: 0.6875rem; color: var(--gold); margin-top: 2px; }
.chatbot-header__close { background: none; border: none; color: oklch(62% 0.008 56); cursor: pointer; font-size: 1.25rem; line-height: 1; padding: 0; }

.chatbot-messages { height: 220px; overflow-y: auto; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.chatbot-msg { display: flex; }
.chatbot-msg--user { justify-content: flex-end; }
.chatbot-bubble { max-width: 80%; padding: 8px 12px; border-radius: var(--radius); font-size: 0.8125rem; line-height: 1.55; }
.chatbot-bubble--bot { background: oklch(94% 0.010 68); color: var(--ink); }
.chatbot-bubble--user { background: var(--navy); color: var(--text-inv); }

.chatbot-input-row { border-top: 1px solid var(--cream-border); padding: 10px 12px; display: flex; gap: 8px; }
.chatbot-input { flex: 1; font-family: 'Inter', sans-serif; font-size: 0.8125rem; border: 1px solid var(--cream-border); border-radius: var(--radius); padding: 8px 10px; outline: none; color: var(--ink); }
.chatbot-send { background: var(--gold); border: none; border-radius: var(--radius); padding: 8px 12px; cursor: pointer; font-size: 0.75rem; font-weight: 700; color: var(--navy); }

.chatbot-quicklinks { padding: 8px 14px 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.chatbot-quicklink { background: transparent; border: 1px solid var(--cream-border); border-radius: var(--radius); padding: 5px 10px; font-family: 'Inter', sans-serif; font-size: 0.6875rem; font-weight: 600; color: var(--text-secondary); cursor: pointer; letter-spacing: 0.04em; transition: background var(--dur) var(--ease); }
.chatbot-quicklink:hover { background: var(--cream-dark); }

/* ── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--navy); border-top: 2px solid oklch(28% 0.040 260);
  padding: 14px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  box-shadow: 0 -4px 24px oklch(12% 0.044 260 / 0.35);
}
.cookie-banner.hidden { display: none; }
.cookie-banner__text { font-size: 0.8125rem; color: var(--text-inv-muted); line-height: 1.5; }
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ── GLOBAL REVIEW FORM ─────────────────────────────────────── */
.review-form-section { background: var(--navy); padding: 80px 0; }
.review-form { background: oklch(20% 0.044 260); border: 1px solid oklch(28% 0.040 260); }
.review-form .form-input,
.review-form .form-select { background: oklch(16% 0.040 260); color: var(--text-inv); border-color: oklch(32% 0.040 260); }
.review-form .form-input::placeholder { color: oklch(52% 0.008 56); }
.review-form .form-input:focus,
.review-form .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px oklch(68% 0.116 63 / 0.15); }
.review-form .form-select option { background: oklch(16% 0.040 260); }

/* ── ARTICLE PLACEHOLDER ───────────────────────────────────── */
.articles-placeholder { display: none; }

/* ── PARTNER STRIP (landing pages) ─────────────────────────── */
.partner-strip { padding: 28px 0; border-top: 1px solid var(--cream-border); border-bottom: 1px solid var(--cream-border); }
.partner-strip__list { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; }
.partner-strip__item {
  font-size: 0.6875rem; font-weight: 600; color: var(--text-secondary);
  padding: 5px 12px; background: var(--white); border: 1px solid var(--cream-border);
  border-radius: var(--radius); letter-spacing: 0.02em; white-space: nowrap;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(8px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── LEGAL PAGES ─────────────────────────────────────────────── */
.legal-page { padding: 140px 0 80px; }
.legal-page h1 { font-family: 'Cormorant Garamond', serif; color: var(--navy); margin-bottom: 12px; }
.legal-page h2 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin: 28px 0 10px; }
.legal-page p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
.legal-page ul li { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 4px; }
.legal-page .updated { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 36px; }

/* ── SUCCESS STATE ──────────────────────────────────────────── */
.success-wrap { background: var(--navy); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 80px 0; text-align: center; }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: oklch(68% 0.116 63 / 0.15); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-size: 1.4rem; color: var(--gold); }

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

@media (max-width: 1024px) { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 900px)  {
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .apply-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .illustration-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px)  {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; padding: 20px; align-items: flex-start; }
}

/* ── UTILS ──────────────────────────────────────────────────── */
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10{ margin-bottom: 40px; }
.mb-12{ margin-bottom: 48px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10{ margin-top: 40px; }
.mt-12{ margin-top: 48px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-inv  { color: var(--text-inv); }
.text-muted{ color: var(--text-muted); }
.text-navy { color: var(--navy); }
.italic { font-style: italic; }
.font-serif { font-family: 'Cormorant Garamond', serif; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* ── HERO ILLUSTRATIONS ─────────────────────────────────────── */
.hero__img, .page-hero__img, .lp-hero__img {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 56%; pointer-events: none; z-index: 1;
}
.hero__img svg, .page-hero__img svg, .lp-hero__img svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero__img::after, .page-hero__img::after, .lp-hero__img::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg,
    var(--navy) 0%,
    oklch(12% 0.044 260 / 0.92) 18%,
    oklch(12% 0.044 260 / 0.55) 44%,
    transparent 78%);
}
.hero .container   { position: relative; z-index: 3; margin-left: 0; max-width: none; padding-left: 500px; padding-right: 0; }
.page-hero .container { position: relative; z-index: 3; margin-left: 0; max-width: none; padding-left: 500px; padding-right: 0; }

/* ── HERO MOBILE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero__content { max-width: 100%; }
  .hero__img {
    width: 100%;
    opacity: 0.18;
  }
  .hero__img::after {
    background: linear-gradient(180deg,
      oklch(12% 0.044 260 / 0.55) 0%,
      var(--navy) 80%);
  }
  .hero__cta { margin-bottom: 40px; }
  .hero__bar { gap: 24px; }
}
@media (max-width: 640px) {
  .hero .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
    align-items: flex-start;
  }
  .hero__title { font-size: clamp(28px, 7.5vw, 40px); margin-bottom: 20px; }
  .hero__lead { font-size: 0.9375rem; margin-bottom: 32px; }
  .hero__cta { gap: 10px; margin-bottom: 32px; flex-direction: column; align-items: flex-start; }
  .hero__cta .btn-ghost { margin-top: 4px; }
  .hero__bar { gap: 16px; padding-top: 20px; }
  .hero__bar > div { min-width: calc(50% - 8px); }
  .hero__eyebrow { margin-bottom: 16px; }
}

/* ── STEP CARD ICONS ────────────────────────────────────────── */
.step-card__icon { margin-bottom: 16px; }
.step-card__icon svg { width: 28px; height: 28px; display: block; }
