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

:root {
  --brand:      #263a99;
  --brand-sky:  #6baeff;
  --navy:       #00224e;
  --light-blue: #ecf4fa;
  --gray:       #f4f4f4;
  --flame:      #ff5a00;
  --white:      #ffffff;
  --border:     #e0e0e0;
  --muted:      #919191;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

/* ── SHARED ── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand);
}

.headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
}

.headline em,
.hero-headline em {
  font-style: italic;
  color: var(--brand);
}

.headline em.em-danger,
.hero-headline em.em-danger {
  font-style: italic;
  color: #8b0000;
}

.eyebrow-headline {
  display: flex;
  gap: clamp(32px, 5vw, 80px);
  align-items: flex-start;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.eyebrow-col {
  min-width: 180px;
  max-width: 220px;
  flex-shrink: 0;
  padding-top: 6px;
}

.headline-col { flex: 1; }

/* ── VISTA BUTTON ── */
.btn-vista {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: stretch;
  justify-content: space-between;
  border: 2px solid var(--brand);
  color: var(--brand);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  height: 45px;
  min-width: 220px;
}

.btn-vista::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.5s ease;
  z-index: 0;
}

.btn-vista:hover::before { transform: scaleX(1); }

.btn-text {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  transition: color 0.5s ease;
  color: var(--brand);
}

.btn-vista:hover .btn-text { color: var(--white); }

.btn-arrow {
  position: relative;
  z-index: 1;
  background: var(--brand);
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* White variant (dark bg) */
.btn-white {
  border-color: var(--white);
}
.btn-white::before { background: var(--white); }
.btn-white .btn-text { color: var(--white); }
.btn-white:hover .btn-text { color: var(--brand); }
.btn-white .btn-arrow { background: var(--white); }

/* Flame variant */
.btn-flame {
  border-color: var(--flame);
}
.btn-flame::before { background: var(--flame); }
.btn-flame .btn-text { color: var(--flame); }
.btn-flame:hover .btn-text { color: var(--white); }
.btn-flame .btn-arrow { background: var(--flame); }

/* Sky variant */
.btn-sky {
  border-color: var(--brand-sky);
}
.btn-sky::before { background: var(--brand-sky); }
.btn-sky .btn-text { color: var(--brand-sky); }
.btn-sky:hover .btn-text { color: var(--white); }
.btn-sky .btn-arrow { background: var(--brand-sky); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--flame);
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 78px;
  height: 2px;
  background: var(--flame);
  transition: transform 0.2s ease;
  transform-origin: center;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ── NAV DROPDOWN ── */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: default;
  padding-bottom: 0;
  padding-top: 4px;
}

.nav-chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  position: relative;
  top: -2px;
}

.nav-item-dropdown:hover .nav-chevron {
  transform: rotate(225deg);
  top: 1px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 12px;
  transform: translateX(-50%);
  list-style: none;
  background: transparent;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 2px solid var(--brand);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: -1;
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
  position: relative;
  z-index: 1;
}

.nav-dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown li:first-child a {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-dropdown li a:hover {
  background: var(--gray);
}

.nav-dropdown li a::after { display: none; }

.nav-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: stretch;
  border: 2px solid var(--brand);
  height: 38px;
  min-width: 150px;
  padding: 0 !important;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 0;
}

.nav-cta:hover::before { transform: scaleX(1); }

.nav-cta-text {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  transition: color 0.4s ease;
}

.nav-cta:hover .nav-cta-text { color: var(--white); }

.nav-cta-arrow {
  position: relative;
  z-index: 1;
  background: var(--brand);
  width: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(80px + clamp(60px, 6vw, 100px));
  padding-bottom: clamp(60px, 6vw, 100px);
  background: var(--white);
}

.hero-column {
  max-width: min(45%, 680px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero .eyebrow { margin-bottom: 0.5rem; }

.hero .headline {
  font-size: clamp(40px, 5.5vw, 76px);
}

.hero-body {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 200;
  line-height: 1.65;
  color: #000;
  max-width: 560px;
  white-space: nowrap;
}

.hero-cta {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── STAT CARDS ── */
.stat-cards-section {
  background: var(--light-blue);
  padding: clamp(48px, 6vw, 88px) 0;
}

.stat-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(24px, 3vw, 40px);
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand-sky);
  padding: 0 16px 16px;
  height: clamp(120px, 14vw, 180px);
  display: flex;
  flex-direction: column;
}

.stat-card-label {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 400;
  color: var(--brand);
  line-height: 1.3;
  max-width: 200px;
  margin: auto 0;
}

.stat-card-number {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ── LOGO STRIP (standalone section – kept for reference) ── */
.logo-strip {
  background: var(--white);
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--border);
}

/* ── LOGO STRIP INLINE (inside hero) ── */
.logo-strip-inline {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--border);
  width: 100%;
}

.logo-strip-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 2rem;
}

.logo-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.logo-item {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: rgba(0,34,78,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 24px;
  border-right: 1px solid var(--border);
  line-height: 1;
}

.logo-item:last-child { border-right: none; }

/* ── ABOUT (TEXT HIGHLIGHT) ── */
.about-section {
  background: var(--white);
  padding: clamp(60px, 7vw, 120px) 0;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.about-left .eyebrow { margin-bottom: 1rem; }

.prose {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 200;
  line-height: 1.75;
  color: var(--navy);
}

.prose p + p { margin-top: 1.2rem; }

.credential-line {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
}

/* ── NUMBERED TABLE (WHO WE SERVE) ── */
.numbered-table-section {
  background: var(--light-blue);
  padding: clamp(60px, 7vw, 120px) 0;
}

.numbered-table {
  border-top: 1px solid var(--brand);
}

.numbered-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 clamp(24px, 5vw, 96px);
  padding: clamp(32px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.numbered-row:last-child { border-bottom: none; }

.row-index {
  width: 60px;
  height: 60px;
  background: var(--brand);
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.row-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.row-title {
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--brand);
  line-height: 1.15;
  padding-top: 0.5rem;
}

.row-desc {
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 200;
  color: var(--navy);
  line-height: 1.45;
  padding-top: 0.5rem;
  letter-spacing: 0.01em;
}

/* ── PROBLEM ── */
.problem-section {
  background: var(--white);
  padding: clamp(60px, 7vw, 120px) 0;
  border-top: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.problem-item {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 36px) clamp(24px, 3vw, 40px) 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-item:nth-child(3n) {
  border-right: none;
  padding-right: 0;
}

.problem-item:not(:nth-child(3n+1)) { padding-left: clamp(20px, 2.5vw, 36px); }

.problem-item:nth-last-child(-n+3) { border-bottom: none; }

.problem-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-sky);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.7rem;
}

.problem-title {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.problem-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ── DELIVERABLES ── */
.deliverables-section {
  background: #ffffff;
  padding: clamp(60px, 7vw, 120px) 0;
}

.deliverables-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--brand);
  margin-bottom: 48px;
}

.deliverable-group {
  padding: 0 clamp(16px, 2vw, 36px);
  border-right: 1px solid var(--border);
}

.deliverable-group:first-child { padding-left: 0; }
.deliverable-group:last-child { border-right: none; padding-right: 0; }

.deliverable-group-header {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--border);
}

.deliverable-group ul { list-style: none; }

.deliverable-group li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.45;
}

.deliverable-group li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 7px;
  flex-shrink: 0;
  opacity: 0.5;
}

.deliverables-summary {
  display: flex;
  gap: clamp(32px, 4vw, 60px);
  align-items: flex-start;
}

.deliverables-summary-text { flex: 1; }

.deliverables-summary h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.deliverables-summary h3 em {
  font-style: italic;
  color: var(--brand);
}

.deliverables-summary p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tags-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid rgba(0,34,78,0.28);
  padding: 6px 14px;
  white-space: nowrap;
}

/* ── CTA ── */
.cta-section {
  background: var(--brand);
  padding: clamp(72px, 9vw, 130px) 0;
  text-align: center;
}

.cta-section .headline {
  color: var(--white);
  font-size: clamp(36px, 4.5vw, 62px);
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.cta-section .headline em { color: var(--brand-sky); }

.cta-section p {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 200;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--gray);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) 0 clamp(24px, 3vw, 40px);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(20px, 3vw, 36px);
}

.footer-brand .nav-logo { display: inline-flex; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.65rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--navy); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 300;
  color: rgba(0,34,78,0.4);
}

.footer-bottom-links { display: flex; gap: 2rem; }

.footer-bottom-links a {
  color: rgba(0,34,78,0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--muted); }

/* ── HERO SPLIT (index.html) ── */
.hero-split {
  display: flex;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
  width: 100%;
}

.hero-split .hero-column {
  flex: 1;
  max-width: none;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: clamp(280px, 36%, 440px);
  flex-shrink: 0;
}

/* ── BASISPARTNERS2 – PAGE-SPECIFIC HERO LAYOUT ── */
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
  width: 100%;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--navy);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding-top: clamp(8px, 1vw, 16px);
}

.hero-inner .hero-body {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 200;
  line-height: 1.7;
  color: var(--navy);
  max-width: none;
}

.hero-inner .hero-body + .hero-body {
  border-top: 1px solid var(--border);
  padding-top: 1.4rem;
}

/* ── BASISPARTNERS2 – DIAGNOSTIC CALLOUT ── */
.diagnostic-callout {
  border-left: 3px solid var(--brand);
  padding: clamp(20px, 2.5vw, 28px) clamp(24px, 3vw, 36px);
  background: var(--light-blue);
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
}

.diagnostic-callout .eyebrow {
  white-space: nowrap;
  flex-shrink: 0;
}

.diagnostic-text {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.6;
}

/* ── BASISPARTNERS2 – PATH SELECTION ── */
.path-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.path-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

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

.path-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--brand);
  text-decoration: none;
  padding: clamp(28px, 3vw, 40px);
  gap: 1rem;
  cursor: pointer;
  transition: background 0.05s ease;
}

.path-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.5s ease;
  z-index: 0;
}

.path-card:hover::before { transform: scaleX(1); }

.path-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.path-card-name {
  font-size: clamp(20px, 2.2vw, 28px);
  font-family: var(--serif);
  font-weight: 500;
  color: var(--brand);
  line-height: 1.1;
  transition: color 0.5s ease;
}


.path-card:hover .path-card-name { color: var(--white); }

.path-card-desc {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  transition: color 0.5s ease;
}

.path-card:hover .path-card-desc { color: rgba(255,255,255,0.75); }

.path-card-arrow {
  width: 36px;
  height: 36px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: flex-end;
  transition: background 0.5s ease;
}

.path-card:hover .path-card-arrow { background: rgba(255,255,255,0.15); }


/* ── ROUTE HERO ── */
.route-hero {
  padding-top: calc(80px + clamp(60px, 6vw, 80px));
  padding-bottom: clamp(60px, 6vw, 80px);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.route-hero .eyebrow { margin-bottom: 1rem; }

.route-hero .headline {
  font-size: clamp(36px, 5vw, 68px);
  margin-bottom: clamp(20px, 3vw, 32px);
  max-width: 820px;
}


.route-hero-body {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 200;
  line-height: 1.7;
  color: var(--navy);
  max-width: 740px;
  margin-bottom: 1rem;
}

.route-hero-body:last-of-type {
  margin-bottom: 0;
}

.route-hero-cta {
  margin-top: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── MANAGE SECTION ── */
.manage-section {
  background: var(--light-blue);
  padding: clamp(60px, 7vw, 100px) 0;
}

.manage-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(38,58,153,0.2);
  margin-top: clamp(24px, 3vw, 40px);
}

.manage-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(14px, 1.8vw, 20px) clamp(16px, 2vw, 24px) clamp(14px, 1.8vw, 20px) 0;
  border-bottom: 1px solid rgba(38,58,153,0.12);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.45;
}

.manage-bullet:nth-child(even) {
  padding-left: clamp(16px, 2vw, 32px);
  border-left: 1px solid rgba(38,58,153,0.12);
}

.manage-bullet::before {
  content: '';
  display: block;
  width: 2px;
  height: 14px;
  background: var(--brand);
  margin-top: 3px;
  flex-shrink: 0;
  opacity: 0.5;
}

.manage-aim {
  margin-top: clamp(24px, 3vw, 40px);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  color: var(--brand);
  line-height: 1.45;
  max-width: 740px;
}

/* ── RECEIVE SECTION ── */
.receive-section {
  background: var(--white);
  padding: clamp(60px, 7vw, 100px) 0;
}

.receive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(32px, 4vw, 56px);
}

.receive-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.receive-grid--2col .receive-card--wide {
  grid-column: 1 / -1;
}

.receive-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand);
  padding: clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.25s ease;
}

.receive-card:hover {
  box-shadow: 0 6px 28px rgba(0,34,78,0.07);
}

.receive-card-title {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}

.receive-card-desc {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── START SECTION ── */
.start-section {
  background: var(--light-blue);
  padding: clamp(60px, 7vw, 100px) 0;
}

.start-steps {
  border-top: 1px solid var(--brand);
  margin-top: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

.start-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 clamp(24px, 4vw, 60px);
  padding: clamp(20px, 2.5vw, 32px) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.start-step-num {
  width: 60px;
  height: 60px;
  background: var(--brand);
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.start-step-text {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5;
  padding-top: 1rem;
}

.start-closing {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 200;
  color: var(--navy);
  line-height: 1.75;
  max-width: 680px;
}

.start-closing + .start-closing { margin-top: 0.4rem; }

.start-cta { margin-top: clamp(32px, 4vw, 52px); }


/* ── CONTACT FORM ── */
.contact-form {
  margin-top: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
}

.contact-field input {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--navy);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.contact-field input::placeholder {
  color: var(--muted);
}

.contact-field input:focus {
  border-bottom-color: var(--brand);
}

.contact-submit {
  align-self: flex-start;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}
