:root {
  --primary: #2f6f64;
  --color-primary: #2f6f64;
  --sb-primary: #2f6f64;
  --primary-contrast: #ffffff;
  --warm-white: #f7f8f5;
  --white: #ffffff;
  --navy: #17324d;
  --navy-soft: #234563;
  --teal: #2f6f64;
  --teal-dark: #24594f;
  --teal-light: #e3efeb;
  --blue-soft: #eaf2f5;
  --sand: #f1ebdd;
  --rose: #f4e8e5;
  --green-soft: #e8f1e9;
  --text: #1e2a32;
  --muted: #566570;
  --border: #dde3e0;
  --border-strong: #ccd6d2;
  --shadow-sm: 0 8px 28px rgba(23, 50, 77, 0.06);
  --shadow-md: 0 24px 70px rgba(23, 50, 77, 0.11);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body:has(#sb-cookie-banner.sb-visible) #sb-chat-widget .sb-cw-trigger {
  bottom: 86px !important;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary,
label {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-heading);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.15rem, 6vw, 5.65rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.65rem);
}

h3 {
  font-size: 1.25rem;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px var(--teal-light);
}

.eyebrow--plain {
  display: block;
}

.eyebrow--light {
  color: #eff8f5;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.text-arrow:focus-visible,
.primary-nav a:focus-visible,
.brand:focus-visible,
.wizard-close:focus-visible,
.footer-column a:focus-visible,
.footer-bottom a:focus-visible {
  outline: 3px solid rgba(47, 111, 100, 0.28);
  outline-offset: 4px;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(23, 50, 77, 0.16);
}

.button--primary:hover {
  background: var(--navy-soft);
  box-shadow: 0 14px 30px rgba(23, 50, 77, 0.2);
}

.button--secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.button--secondary:hover {
  border-color: var(--teal);
  background: var(--white);
}

.button--white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(13, 43, 53, 0.16);
}

.button--white:hover {
  background: #f7faf9;
}

.button--ghost {
  padding-inline: 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
}

.button--ghost:hover {
  color: var(--navy);
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 9px;
  font-size: 0.88rem;
}

.button--large {
  min-height: 56px;
  padding: 16px 25px;
}

.button--full {
  width: 100%;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-dark);
  font-weight: 700;
}

.text-arrow span {
  transition: transform 180ms ease;
}

.text-arrow:hover span {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 248, 245, 0.9);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 24px rgba(23, 50, 77, 0.045);
}

.nav-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 0.91rem;
  font-weight: 600;
}

.primary-nav a,
.text-link {
  color: #42515d;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.text-link:hover {
  color: var(--teal-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 30px;
  font-size: 0.91rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 1px;
  background: var(--navy);
  transition: transform 160ms ease, opacity 160ms ease;
}

/* Hero */
.section--hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
}

.section--hero::before {
  position: absolute;
  top: -220px;
  right: -100px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 100, 0.075) 0%, rgba(47, 111, 100, 0) 69%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 78px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 27px;
  color: var(--navy);
}

.hero-intro {
  max-width: 640px;
  margin-bottom: 34px;
  color: #4c5d68;
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ai-assistant-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding: 7px 2px;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: left;
}

.ai-assistant-link:hover {
  color: var(--navy);
}

.ai-assistant-link:focus-visible {
  border-radius: 5px;
  outline: 3px solid rgba(47, 111, 100, 0.28);
  outline-offset: 3px;
}

.ai-assistant-link__dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px var(--teal-light);
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.microcopy svg {
  width: 18px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  padding: 24px;
}

.plan-card {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin-left: auto;
  padding: 29px;
  border: 1px solid rgba(214, 224, 220, 0.88);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.plan-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.card-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.plan-card h2 {
  margin: 0;
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

.progress-ring {
  position: relative;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
}

.progress-ring svg {
  width: 52px;
  height: 52px;
  transform: rotate(-90deg);
}

.progress-ring circle {
  fill: none;
  stroke-width: 4;
}

.progress-ring__track {
  stroke: var(--teal-light);
}

.progress-ring__value {
  stroke: var(--teal);
  stroke-dasharray: 113;
  stroke-dashoffset: 66;
  stroke-linecap: round;
}

.progress-ring span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--teal-light);
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transition: width 360ms ease;
}

.plan-status {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 0.73rem;
}

.plan-list {
  border-block: 1px solid var(--border);
}

.plan-row {
  display: grid;
  min-height: 74px;
  align-items: center;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  border-bottom: 1px solid #e9edeb;
}

.plan-row:last-child {
  border: 0;
}

.plan-row strong,
.plan-row small {
  display: block;
}

.plan-row strong {
  color: var(--navy);
  font-size: 0.85rem;
}

.plan-row small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.68rem;
}

.task-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #556873;
  font-size: 0.62rem;
  font-weight: 700;
}

.task-icon--done {
  border-color: var(--teal);
  background: var(--teal);
}

.task-icon--done svg {
  width: 16px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.task-icon--active {
  border-color: #c4d9e2;
  background: var(--blue-soft);
  color: var(--navy);
}

.owner {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 99px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.owner--you {
  background: var(--sand);
  color: #745f2b;
}

.owner--sitebirds {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.owner--together {
  background: var(--blue-soft);
  color: #315b72;
}

.advisor-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f3f7f5;
}

.advisor-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
}

.advisor-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.45;
}

.advisor-note strong {
  color: var(--navy);
}

.shape {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
}

.shape--one {
  top: 0;
  right: -34px;
  width: 160px;
  height: 160px;
  border: 32px solid var(--sand);
}

.shape--two {
  bottom: -8px;
  left: -22px;
  width: 120px;
  height: 120px;
  background: var(--blue-soft);
}

/* Trust */
.trust-strip {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.62);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--border);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border: 0;
  padding-right: 0;
}

.trust-item svg {
  width: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  color: var(--navy);
  font-size: 0.82rem;
  line-height: 1.35;
}

.trust-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
}

/* Shared headings */
.section-heading {
  margin-bottom: 58px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child,
.section-heading--split > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  text-align: center;
}

.section-heading--center > p:last-child {
  max-width: 650px;
  margin-inline: auto;
}

.section-heading--split {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: 5px;
}

/* Benefits */
.section--problem {
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 326px;
  padding: 28px 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.icon-tile {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 14px;
}

.icon-tile svg {
  width: 29px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-tile--sand {
  background: var(--sand);
}

.icon-tile--rose {
  background: var(--rose);
}

.icon-tile--blue {
  background: var(--blue-soft);
}

.icon-tile--green {
  background: var(--green-soft);
}

.benefit-card h3 {
  margin-bottom: 13px;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-number {
  position: absolute;
  top: 29px;
  right: 26px;
  display: inline-grid;
  min-width: 43px;
  height: 28px;
  padding: 0 9px;
  place-items: center;
  border: 1px solid #c9ddd7;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--teal-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* Steps */
.section--steps {
  background: var(--warm-white);
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  display: grid;
  min-height: 165px;
  align-items: start;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 34px;
  padding: 28px 6px;
  border-bottom: 1px solid var(--border);
}

.step:first-child {
  border-top: 1px solid var(--border);
}

.step-number {
  position: relative;
  display: flex;
  justify-content: center;
}

.step-number span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 700;
}

.step-content {
  max-width: 690px;
}

.step-label {
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step-content h3 {
  margin-bottom: 10px;
  font-size: 1.42rem;
}

.step-content > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.step-tag {
  margin-top: 16px;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
}

.centered-cta {
  margin-top: 46px;
  text-align: center;
}

/* Responsibility */
.section--responsibility {
  background: var(--blue-soft);
}

.responsibility-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.responsibility-copy h2 {
  margin-bottom: 23px;
}

.responsibility-copy > p:last-of-type {
  color: #586b77;
  font-size: 1.03rem;
}

.check-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-top: 13px;
  padding-left: 26px;
  color: #50636f;
  font-size: 0.9rem;
}

.check-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(47, 111, 100, 0.11);
  content: "";
}

.check-list span {
  color: var(--navy);
  font-weight: 700;
}

.responsibility-board {
  padding: 28px;
  border: 1px solid rgba(204, 215, 220, 0.9);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.board-head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.board-count {
  padding: 6px 10px;
  border-radius: 99px;
  background: var(--warm-white);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.board-row {
  display: grid;
  min-height: 64px;
  align-items: center;
  grid-template-columns: 20px 1fr auto;
  gap: 12px;
  border-bottom: 1px solid #edf0ef;
}

.board-row:last-child {
  border: 0;
}

.board-check {
  width: 17px;
  height: 17px;
  border: 1.5px solid #bdc8c4;
  border-radius: 5px;
}

.board-row strong,
.board-row small {
  display: block;
}

.board-row strong {
  color: var(--navy);
  font-size: 0.79rem;
}

.board-row small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.64rem;
}

/* Visibility */
.section--visibility {
  background: var(--white);
}

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

.visibility-visual {
  position: relative;
  padding: 46px 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--sand), #f5f2e8);
}

.visibility-visual::before,
.visibility-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.visibility-visual::before {
  top: 18px;
  right: 22px;
  width: 82px;
  height: 82px;
  border: 20px solid rgba(47, 111, 100, 0.1);
}

.visibility-visual::after {
  bottom: 16px;
  left: 18px;
  width: 46px;
  height: 46px;
  background: rgba(234, 242, 245, 0.8);
}

.search-card {
  position: relative;
  z-index: 1;
  max-width: 475px;
  margin: auto;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.search-input {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.77rem;
}

.search-input svg {
  width: 18px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.7;
  stroke-linecap: round;
}

.search-result {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  margin-top: 18px;
  padding: 15px 7px 18px;
  border-bottom: 1px solid var(--border);
}

.result-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
}

.search-result small {
  color: var(--teal);
  font-size: 0.61rem;
}

.search-result h3 {
  margin: 3px 0 7px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0;
  line-height: 1.35;
}

.search-result p {
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.55;
}

.search-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 15px;
}

.search-signals span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 99px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.56rem;
  font-weight: 600;
}

.search-signals i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.visibility-copy h2 {
  margin-bottom: 23px;
}

.visibility-copy > p:not(.eyebrow, .fine-print) {
  color: var(--muted);
  font-size: 1.03rem;
}

.feature-list {
  margin: 29px 0 25px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 13px;
  color: #465a66;
  font-size: 0.91rem;
}

.feature-list svg {
  width: 21px;
  flex: 0 0 auto;
  margin-top: 2px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fine-print {
  padding-left: 14px;
  border-left: 2px solid var(--border-strong);
  color: #4f6069;
  font-size: 0.75rem;
  line-height: 1.55;
}

/* Example */
.section--example {
  background: var(--warm-white);
}

.example-card {
  display: grid;
  min-height: 570px;
  overflow: hidden;
  grid-template-columns: 0.86fr 1.14fr;
  border-radius: var(--radius-lg);
  background: var(--teal);
}

.example-copy {
  padding: 68px 50px;
}

.example-copy h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
}

.example-copy > p:not(.eyebrow) {
  color: #d8e8e4;
}

.example-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
}

.example-deliverables span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 99px;
  color: #edf6f3;
  font-size: 0.68rem;
  font-weight: 600;
}

.example-window {
  align-self: end;
  margin: 60px -55px -35px 20px;
  padding: 9px;
  border-radius: 20px 20px 0 0;
  background: #dfe8e5;
  box-shadow: -18px 30px 55px rgba(20, 66, 57, 0.35);
  transform: rotate(-1.8deg);
}

.window-bar {
  display: flex;
  height: 29px;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
}

.window-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aebdb8;
}

.window-site {
  min-height: 460px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: #f5f2eb;
}

.mock-nav {
  display: flex;
  height: 60px;
  align-items: center;
  gap: 18px;
  padding: 0 34px;
  background: var(--white);
}

.mock-logo {
  margin-right: auto;
  color: #243843;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mock-logo span {
  color: #b47d43;
}

.mock-nav i {
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: #d2d9d5;
}

.mock-hero {
  min-height: 300px;
  padding: 54px 50px;
  background:
    linear-gradient(90deg, rgba(23, 50, 77, 0.96), rgba(23, 50, 77, 0.78)),
    linear-gradient(145deg, #58798a, #9eb0a8);
}

.mock-hero small {
  color: #d5b487;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.mock-hero strong {
  display: block;
  margin: 16px 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.08;
}

.mock-hero p {
  max-width: 330px;
  color: #d7e1e6;
  font-size: 0.75rem;
}

.mock-hero > span {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 13px;
  border-radius: 5px;
  background: #875426;
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 700;
}

.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 23px 26px;
  background: var(--white);
}

.mock-metrics span {
  padding: 0 10px;
  border-right: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.55rem;
  text-align: center;
}

.mock-metrics span:last-child {
  border: 0;
}

.mock-metrics strong {
  display: block;
  color: var(--navy);
  font-size: 0.66rem;
}

.example-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

/* Ownership */
.section--ownership {
  padding: 90px 0;
  border-block: 1px solid var(--border);
  background: var(--white);
}

.ownership-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.ownership-copy h2 {
  margin-bottom: 20px;
}

.ownership-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.ownership-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 28px;
}

.ownership-points > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
}

.round-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-light);
}

.round-icon svg {
  width: 22px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ownership-points p {
  margin: 0;
}

.ownership-points strong,
.ownership-points small {
  display: block;
}

.ownership-points strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.ownership-points small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.67rem;
}

/* Pricing */
.section--pricing {
  background: var(--warm-white);
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
  padding: 25px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.pricing-start .price-label {
  margin-bottom: 7px;
}

.pricing-start h3 {
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.pricing-start h3 span {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 9px;
  border-radius: 99px;
  background: var(--blue-soft);
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 3px;
}

.pricing-start > div > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 32px 28px 27px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.price-card--featured {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-sm);
}

.popular-label {
  position: absolute;
  top: -15px;
  right: 24px;
  padding: 6px 12px;
  border-radius: 99px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.price-label {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 20px;
  font-size: 1.55rem;
}

.price {
  margin-bottom: 12px;
}

.price strong,
.price span {
  display: block;
}

.price strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 2.1rem;
  line-height: 1.2;
}

.price span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.65rem;
}

.price-card__head > p:last-child {
  min-height: 54px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.price-card ul {
  flex: 1;
  margin: 0 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.price-card li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 25px;
  color: #4f606c;
  font-size: 0.79rem;
}

.price-card li::before {
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 15px;
  height: 9px;
  border-bottom: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  content: "";
  transform: rotate(-45deg);
}

.price-card__cta-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.64rem;
  text-align: center;
}

.care-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.care-plan > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.care-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-soft);
}

.care-icon svg {
  width: 24px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.care-plan p {
  margin: 0;
}

.care-plan strong,
.care-plan p span {
  display: block;
}

.care-plan strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.care-plan p span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.pricing-note {
  max-width: 850px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
  text-align: center;
}

/* Knowledge */
.section--knowledge {
  background: var(--white);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.article-art {
  position: relative;
  display: grid;
  min-height: 196px;
  place-items: center;
  overflow: hidden;
}

.article-art > span {
  position: absolute;
  top: 16px;
  left: 17px;
  color: rgba(23, 50, 77, 0.62);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.article-art svg {
  width: 110px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-art--kvk {
  background: var(--sand);
}

.article-art--name {
  background: var(--blue-soft);
}

.article-art--money {
  background: var(--green-soft);
}

.name-lines {
  width: 120px;
  padding: 21px;
  border: 1px solid rgba(23, 50, 77, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  transform: rotate(-3deg);
}

.name-lines i {
  display: block;
  height: 7px;
  margin: 8px 0;
  border-radius: 4px;
  background: var(--navy);
}

.name-lines i:nth-child(2) {
  width: 72%;
  background: var(--teal);
}

.name-lines i:nth-child(3) {
  width: 46%;
  background: #a7b9c2;
}

.article-content {
  padding: 25px;
}

.article-content > p {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.article-content h3 {
  min-height: 76px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  line-height: 1.42;
}

.article-content a {
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 700;
}

.article-content a span {
  margin-left: 5px;
  color: var(--teal);
}

/* FAQ */
.section--faq {
  background: var(--warm-white);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  margin-bottom: 18px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 25px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--border-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--border-strong);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 44px 20px 0;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  content: "";
}

.faq-list summary span {
  top: 50%;
  right: 5px;
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 690px;
  margin: -6px 0 26px;
  padding-right: 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* CTA and footer */
.section--contact {
  padding: 48px 0 96px;
  background: var(--warm-white);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 430px;
  align-items: center;
  overflow: hidden;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  padding: 64px 70px;
  border-radius: var(--radius-lg);
  background: var(--teal);
}

.final-cta::before {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 340px;
  height: 340px;
  border: 70px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  content: "";
}

.final-cta__copy,
.final-cta__steps {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin-bottom: 19px;
  color: var(--white);
}

.final-cta__copy > p:not(.eyebrow) {
  max-width: 600px;
  color: #d5e7e2;
  font-size: 1.02rem;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 31px;
}

.final-cta__actions > span {
  color: #d5e7e2;
  font-size: 0.69rem;
}

.final-cta__steps {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.final-cta__steps > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.final-cta__steps > div:last-child {
  border: 0;
}

.final-cta__steps > div > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
}

.final-cta__steps p {
  margin: 0;
}

.final-cta__steps strong,
.final-cta__steps small {
  display: block;
}

.final-cta__steps strong {
  color: var(--white);
  font-size: 0.81rem;
}

.final-cta__steps small {
  margin-top: 2px;
  color: #eff8f5;
  font-size: 0.67rem;
}

.site-footer {
  padding: 70px 0 24px;
  border-top: 1px solid var(--border);
  background: var(--blue-soft);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 0.9fr;
  gap: 56px;
  padding-bottom: 60px;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-brand p {
  max-width: 260px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-column h2 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 9px 0;
  color: #455b67;
  font-size: 0.76rem;
}

.footer-column a,
.footer-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-block: 0;
}

.footer-column a:hover {
  color: var(--teal-dark);
}

.footer-contact > a {
  color: var(--teal-dark);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  min-height: 60px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #d3dee2;
  color: var(--muted);
  font-size: 0.66rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

/* Reveal */
[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Startplan */
.startplan-page {
  min-height: 100vh;
  background: var(--warm-white);
}

.wizard-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.wizard-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.wizard-close {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.wizard-close svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.wizard-main {
  padding: 42px 0 70px;
}

.wizard-shell {
  display: grid;
  min-height: 720px;
  overflow: hidden;
  grid-template-columns: 320px 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.wizard-sidebar {
  display: flex;
  flex-direction: column;
  padding: 42px 34px 30px;
  border-right: 1px solid var(--border);
  background: var(--blue-soft);
}

.wizard-sidebar__intro h1 {
  margin-bottom: 17px;
  font-size: 2rem;
}

.wizard-sidebar__intro > p:last-child {
  color: var(--muted);
  font-size: 0.76rem;
}

.wizard-steps {
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.wizard-steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  color: #80909a;
}

.wizard-steps li::before {
  position: absolute;
  top: 45px;
  bottom: -23px;
  left: 17px;
  width: 1px;
  background: #cedce1;
  content: "";
}

.wizard-steps li:last-child::before {
  display: none;
}

.wizard-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #cbd7db;
  border-radius: 50%;
  background: var(--blue-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.wizard-steps li strong,
.wizard-steps li small {
  display: block;
}

.wizard-steps li strong {
  font-size: 0.78rem;
}

.wizard-steps li small {
  margin-top: 1px;
  font-size: 0.62rem;
}

.wizard-steps li.is-active,
.wizard-steps li.is-complete {
  color: var(--navy);
}

.wizard-steps li.is-active > span {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.wizard-steps li.is-complete > span {
  border-color: var(--teal);
  background: var(--teal);
  color: transparent;
}

.wizard-steps li.is-complete > span::after {
  position: absolute;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
  transform: rotate(-45deg);
}

.wizard-help {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding-top: 30px;
}

.wizard-help p {
  margin: 0;
}

.wizard-help strong,
.wizard-help small {
  display: block;
}

.wizard-help strong {
  color: var(--navy);
  font-size: 0.72rem;
}

.wizard-help small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.61rem;
  line-height: 1.4;
}

.wizard-panel {
  min-width: 0;
  padding: 60px 64px;
}

.wizard-progress-mobile {
  display: none;
}

.wizard-step {
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.wizard-step.is-active {
  display: block;
  animation: step-in 260ms ease both;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-step > legend {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.3vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.question-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.question-help {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option-grid--single {
  grid-template-columns: 1fr;
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 85px;
  align-items: center;
  grid-template-columns: 21px 46px 1fr;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.choice-card:hover {
  border-color: #abc5bc;
  background: #fbfcfb;
}

.choice-card:has(input:checked) {
  border-color: var(--teal);
  background: #f5faf8;
  box-shadow: 0 0 0 3px rgba(47, 111, 100, 0.08);
}

.choice-card:has(input:focus-visible),
.check-card:has(input:focus-visible) {
  outline: 3px solid rgba(47, 111, 100, 0.24);
  outline-offset: 3px;
}

.choice-card input,
.check-card input,
.pill-options input,
.consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-control {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1.5px solid #bac6c2;
  border-radius: 50%;
}

.choice-card input:checked + .choice-control {
  border: 6px solid var(--teal);
}

.choice-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-soft);
}

.choice-icon svg {
  width: 25px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  color: var(--navy);
  font-size: 0.86rem;
}

.choice-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.69rem;
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}

.wizard-actions--end {
  justify-content: flex-end;
}

.field-error {
  display: none;
  margin: 14px 0 0;
  color: #a33c35;
  font-size: 0.74rem;
  font-weight: 600;
}

.field-error.is-visible {
  display: block;
}

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

.field {
  display: block;
}

.field--full {
  grid-column: 1 / -1;
}

.field > span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  background: var(--white);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 100px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 111, 100, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #66757c;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #a33c35;
}

.input-hint {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.62rem;
}

.sub-question {
  margin-top: 27px;
}

.sub-question > p {
  margin-bottom: 11px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.pill-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-options label {
  position: relative;
  cursor: pointer;
}

.pill-options span {
  display: block;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.pill-options input:checked + span {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal-dark);
}

.pill-options label:has(input:focus-visible) span {
  outline: 3px solid rgba(47, 111, 100, 0.24);
  outline-offset: 3px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.check-card {
  position: relative;
  display: grid;
  min-height: 67px;
  align-items: center;
  grid-template-columns: 21px 1fr;
  gap: 12px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.check-card:hover {
  border-color: #abc5bc;
}

.check-card:has(input:checked) {
  border-color: var(--teal);
  background: #f5faf8;
}

.check-control {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1.5px solid #b9c6c1;
  border-radius: 5px;
}

.check-card input:checked + .check-control,
.consent input:checked + .check-control {
  border-color: var(--teal);
  background: var(--teal);
}

.check-card input:checked + .check-control::after,
.consent input:checked + .check-control::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
  transform: rotate(-45deg);
}

.check-card strong,
.check-card small {
  display: block;
}

.check-card strong {
  color: var(--navy);
  font-size: 0.75rem;
}

.check-card small {
  color: var(--muted);
  font-size: 0.61rem;
}

.security-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 11px;
  background: var(--sand);
}

.security-note svg {
  width: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  fill: none;
  stroke: #7b6739;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-note p {
  margin: 0;
  color: #71613d;
  font-size: 0.67rem;
  line-height: 1.5;
}

.result-celebration {
  max-width: 670px;
  margin: 0 auto 30px;
  text-align: center;
}

.result-check {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 0 auto 17px;
  border-radius: 50%;
  background: var(--teal-light);
}

.result-check svg {
  width: 32px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-celebration h2 {
  margin-bottom: 13px;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
}

.result-celebration > p:last-child {
  color: var(--muted);
  font-size: 0.87rem;
}

.result-summary {
  padding: 19px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--warm-white);
}

.result-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.result-progress strong {
  display: block;
  color: var(--navy);
  font-size: 0.83rem;
}

.result-percentage {
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.result-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.result-column {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.result-column__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.result-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 10px;
}

.result-icon--now {
  background: var(--sand);
}

.result-icon--later {
  background: var(--blue-soft);
}

.result-icon svg {
  width: 21px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-column__head small {
  display: block;
  color: var(--teal);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-column__head h3 {
  margin: 1px 0 0;
  font-size: 0.97rem;
}

.result-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-column li {
  position: relative;
  margin-top: 9px;
  padding-left: 19px;
  color: #53636e;
  font-size: 0.7rem;
  line-height: 1.5;
}

.result-column li::before {
  position: absolute;
  top: 0.65em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.recommendation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 20px 22px;
  border-radius: 14px;
  background: var(--teal-light);
}

.recommendation h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.recommendation p {
  max-width: 580px;
  margin: 0;
  color: #526b65;
  font-size: 0.69rem;
}

.recommendation-badge {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 99px;
  background: var(--white);
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 700;
}

.lead-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.lead-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.lead-card > div:first-child > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.application-steps {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.application-steps li {
  display: grid;
  align-items: start;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  margin-top: 10px;
}

.application-steps li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.66rem;
  font-weight: 800;
}

.application-steps p,
.application-steps strong,
.application-steps small {
  display: block;
  margin: 0;
}

.application-steps strong {
  color: var(--navy);
  font-size: 0.72rem;
}

.application-steps small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.64rem;
}

.noscript-notice {
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid #e6c58f;
  border-radius: 10px;
  background: #fff8ea;
  color: #604617;
}

.noscript-notice a {
  font-weight: 700;
  text-decoration: underline;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.lead-form-grid .field > span {
  margin-bottom: 5px;
  font-size: 0.68rem;
}

.lead-form-grid .field input {
  min-height: 44px;
}

.consent {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.45;
}

.consent .check-control {
  display: block;
}

.consent a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent:has(input:focus-visible) .check-control {
  outline: 3px solid rgba(47, 111, 100, 0.24);
  outline-offset: 3px;
}

.lead-form-grid .button {
  min-height: 48px;
}

.submit-notice {
  display: none;
  margin: 0;
  padding: 9px 11px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 0.67rem;
  text-align: center;
}

.submit-notice.is-visible {
  display: block;
}

.submit-notice.is-error {
  background: #f8e9e6;
  color: #8d342e;
}

.submit-notice.is-success {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.wizard-actions--result {
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 1080px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-visual {
    padding-right: 0;
  }

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

  .benefit-card {
    min-height: 290px;
  }

  .responsibility-grid,
  .visibility-grid,
  .ownership-grid {
    gap: 58px;
  }

  .wizard-shell {
    grid-template-columns: 280px 1fr;
  }

  .wizard-sidebar {
    padding-inline: 26px;
  }

  .wizard-panel {
    padding: 48px 42px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    height: calc(100vh - 78px);
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    border-top: 1px solid var(--border);
    background: var(--white);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav a,
  .primary-nav a:nth-last-child(-n + 2) {
    display: block;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-heading);
    font-size: 1.1rem;
  }

  .nav-open .primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-actions .text-link {
    display: none;
  }

  .nav-actions {
    margin: 0 16px 0 0;
  }

  .nav-actions .button {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 0.78rem;
  }

  .hero-grid,
  .responsibility-grid,
  .visibility-grid,
  .ownership-grid,
  .example-card,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .section--hero {
    padding: 65px 0 85px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .microcopy {
    justify-content: center;
  }

  .hero-intro {
    margin-inline: auto;
  }

  .hero-visual {
    max-width: 570px;
    margin: 18px auto 0;
    padding: 24px;
  }

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

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 22px;
    border-right: 1px solid var(--border);
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .responsibility-copy,
  .visibility-copy,
  .ownership-copy {
    max-width: 680px;
  }

  .visibility-visual {
    max-width: 620px;
    margin: auto;
  }

  .visibility-copy {
    order: -1;
  }

  .example-card {
    min-height: 0;
  }

  .example-copy {
    padding: 56px;
  }

  .example-window {
    margin: 0 45px -38px;
    transform: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: auto;
  }

  .price-card {
    min-height: auto;
  }

  .price-card__head > p:last-child {
    min-height: auto;
  }

  .pricing-start {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .article-card {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
  }

  .article-content h3 {
    min-height: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta {
    padding: 55px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }

  .wizard-main {
    padding-top: 22px;
  }

  .wizard-shell {
    display: block;
    min-height: 0;
  }

  .wizard-sidebar {
    display: none;
  }

  .wizard-panel {
    padding: 38px 46px 46px;
  }

  .wizard-progress-mobile {
    display: block;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 600;
  }

  .wizard-progress-mobile .progress-bar {
    height: 5px;
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 3.8rem);
  }

  h2 {
    font-size: 2.1rem;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand {
    font-size: 1.22rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .primary-nav {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .nav-actions {
    display: none;
  }

  .section--hero {
    padding: 48px 0 62px;
  }

  .hero h1 {
    margin-bottom: 21px;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .ai-assistant-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .microcopy {
    font-size: 0.7rem;
  }

  .hero-visual {
    padding: 12px 0;
  }

  .plan-card {
    padding: 21px 18px;
    border-radius: 22px;
  }

  .plan-row {
    grid-template-columns: 30px 1fr;
  }

  .plan-row .owner {
    display: none;
  }

  .shape {
    display: none;
  }

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

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child,
  .trust-item:nth-child(2n) {
    min-height: 88px;
    padding: 18px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

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

  .benefit-card {
    min-height: 260px;
  }

  .icon-tile {
    margin-bottom: 34px;
  }

  .step {
    grid-template-columns: 44px 1fr;
    gap: 18px;
  }

  .step-number span {
    width: 42px;
    height: 42px;
  }

  .step-tag {
    display: none;
  }

  .responsibility-board {
    padding: 20px 16px;
  }

  .board-row {
    grid-template-columns: 18px 1fr;
    padding: 7px 0;
  }

  .board-row .owner {
    grid-column: 2;
    justify-self: start;
    margin-bottom: 4px;
  }

  .visibility-visual {
    padding: 30px 15px;
  }

  .search-signals span:last-child {
    display: none;
  }

  .ownership-points {
    grid-template-columns: 1fr;
  }

  .example-copy {
    padding: 42px 25px;
  }

  .example-window {
    margin: 0 15px -24px;
  }

  .window-site {
    min-height: 390px;
  }

  .mock-nav {
    padding-inline: 20px;
  }

  .mock-nav i {
    width: 20px;
  }

  .mock-hero {
    min-height: 265px;
    padding: 40px 27px;
  }

  .mock-hero strong {
    font-size: 2rem;
  }

  .mock-metrics {
    padding-inline: 8px;
  }

  .care-plan {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-card {
    display: block;
  }

  .article-art {
    min-height: 165px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .final-cta {
    padding: 40px 24px;
    border-radius: 22px;
  }

  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .wizard-header__inner {
    min-height: 68px;
  }

  .wizard-close span {
    display: none;
  }

  .wizard-main {
    padding: 0 0 40px;
  }

  .wizard-shell {
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .wizard-panel {
    padding: 28px 19px 38px;
  }

  .wizard-step > legend {
    font-size: 1.75rem;
  }

  .question-help {
    margin-bottom: 23px;
  }

  .choice-card {
    grid-template-columns: 20px 1fr;
    padding: 13px 14px;
  }

  .choice-icon {
    display: none;
  }

  .form-grid,
  .check-grid,
  .result-columns,
  .lead-card,
  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .wizard-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .wizard-actions .button {
    width: 100%;
  }

  .recommendation {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-card {
    gap: 20px;
  }

  .consent,
  .lead-form-grid .button,
  .submit-notice {
    grid-column: auto;
  }

  .wizard-actions--result .text-arrow {
    justify-content: center;
  }

  body.startplan-page:has(#sb-cookie-banner.sb-visible) {
    padding-bottom: 124px;
  }

  body.startplan-page:has(#sb-cookie-banner.sb-visible) .wizard-step.is-active .wizard-actions .button--primary {
    position: fixed;
    right: 19px;
    bottom: 112px;
    left: 19px;
    z-index: 99998;
    width: auto;
    box-shadow: 0 12px 30px rgba(23, 50, 77, 0.2);
  }

  body:has(#sb-cookie-banner.sb-visible) #sb-chat-widget .sb-cw-trigger {
    bottom: 124px !important;
  }

  #sb-cookie-banner button {
    min-height: 44px !important;
  }
}

/* Simplified package-aware intake */
.intake-main {
  min-height: calc(100vh - 78px);
  padding: 42px 0 100px;
  background:
    radial-gradient(circle at 50% 0, rgba(47, 111, 100, 0.08), transparent 36%),
    var(--warm-white);
}

.startplan-page .site-header .primary-nav,
.startplan-page .site-header .nav-actions,
.startplan-page .site-header .nav-toggle {
  display: none;
}

.startplan-page .site-header .nav-shell {
  justify-content: flex-start;
}

.startplan-page .sb-cw-trigger {
  right: 0 !important;
  bottom: 8px !important;
  width: 44px !important;
  height: 44px !important;
}

.intake-shell {
  max-width: 940px;
}

.intake-intro {
  max-width: 820px;
  margin: 0 auto 21px;
  text-align: center;
}

.intake-intro h1 {
  max-width: 800px;
  margin: 9px auto 12px;
  font-size: clamp(2.35rem, 4.6vw, 3.75rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.intake-intro > p:last-of-type {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1rem;
}

.intake-package-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 660px;
  margin: 17px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(47, 111, 100, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 30px rgba(23, 49, 59, 0.06);
  text-align: left;
}

.intake-package-context[hidden] {
  display: none;
}

.intake-package-context > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 2px 10px;
}

.intake-package-context span {
  grid-column: 1 / -1;
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intake-package-context strong {
  color: var(--navy);
  font-size: 0.91rem;
}

.intake-package-context small {
  color: var(--muted);
  font-size: 0.73rem;
}

.intake-package-context a {
  flex: 0 0 auto;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 750;
}

.intake-progress {
  max-width: 820px;
  margin: 0 auto 13px;
}

.intake-progress > div:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.68rem;
}

.intake-progress > div:first-child strong {
  color: var(--navy);
}

.intake-progress .progress-bar {
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #dfe8e4;
}

.intake-progress .progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transition: width 220ms ease;
}

.intake-form {
  max-width: 860px;
  margin: 0 auto;
}

.intake-step {
  margin: 0;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(23, 49, 59, 0.08);
}

.intake-step[hidden] {
  display: none;
}

.intake-step.is-active {
  animation: step-in 220ms ease both;
}

.intake-step > legend {
  float: left;
  width: 100%;
  margin: 0 0 9px;
  padding: 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.intake-step > legend.sr-only {
  position: absolute;
  float: none;
  width: 1px;
  max-width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.intake-step > legend + .question-help {
  clear: both;
  padding-top: 9px;
}

.intake-search-field {
  position: relative;
  display: block;
  margin-top: 26px;
  padding: 5px;
  border: 1px solid #cbd8d4;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 13px 36px rgba(23, 49, 59, 0.11);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.intake-search-field:focus-within {
  border-color: var(--teal);
  box-shadow: 0 15px 40px rgba(47, 111, 100, 0.16), 0 0 0 3px rgba(47, 111, 100, 0.1);
}

.intake-search-field textarea {
  display: block;
  width: 100%;
  min-height: 145px;
  padding: 21px 230px 21px 21px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.55;
  resize: vertical;
}

.intake-search-field textarea::placeholder {
  color: #66757c;
}

.intake-search-field:has(textarea[aria-invalid="true"]) {
  border-color: #a33c35;
}

.intake-search-field .button {
  position: absolute;
  right: 14px;
  bottom: 14px;
}

.intake-examples {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.intake-examples > span {
  color: var(--muted);
  font-size: 0.68rem;
}

.intake-examples button {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: #fafbf9;
  color: var(--teal-dark);
  font: inherit;
  font-size: 0.69rem;
  font-weight: 700;
  cursor: pointer;
}

.intake-examples button:hover,
.intake-examples button:focus-visible {
  border-color: var(--teal);
  background: var(--blue-soft);
}

.intake-trustline {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.69rem;
  text-align: center;
}

.intake-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-top: 25px;
}

.intake-status-grid label {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.intake-status-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.intake-status-grid label > span {
  display: flex;
  min-height: 82px;
  flex-direction: column;
  justify-content: center;
  padding: 16px 17px 16px 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfcfa;
}

.intake-status-grid label > span::before {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 17px;
  height: 17px;
  border: 2px solid #9fb0ab;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.intake-status-grid input:checked + span {
  border-color: var(--teal);
  background: var(--blue-soft);
  box-shadow: 0 0 0 2px rgba(47, 111, 100, 0.09);
}

.intake-status-grid input:checked + span::before {
  border: 5px solid var(--teal);
  background: var(--white);
}

.intake-status-grid input:focus-visible + span {
  outline: 3px solid rgba(47, 111, 100, 0.22);
  outline-offset: 2px;
}

.intake-status-grid strong,
.intake-status-grid small {
  display: block;
  overflow-wrap: anywhere;
}

.intake-status-grid strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.intake-status-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
}

.intake-subsection {
  margin-top: 30px;
  padding-top: 27px;
  border-top: 1px solid var(--border);
}

.intake-subsection h2 {
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.intake-subsection > p {
  color: var(--muted);
  font-size: 0.75rem;
}

.intake-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.intake-checks label {
  position: relative;
  cursor: pointer;
}

.intake-checks input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.intake-checks span {
  display: block;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: #fafbf9;
  color: #52656b;
  font-size: 0.72rem;
  font-weight: 700;
}

.intake-checks input:checked + span {
  border-color: var(--teal);
  background: var(--blue-soft);
  color: var(--teal-dark);
}

.intake-checks input:checked + span::before {
  margin-right: 6px;
  content: "✓";
}

.intake-checks input:focus-visible + span {
  outline: 3px solid rgba(47, 111, 100, 0.22);
  outline-offset: 2px;
}

.intake-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 25px;
}

.intake-result__head {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 26px;
}

.intake-result__head .result-check {
  flex: 0 0 auto;
}

.intake-result__head h2 {
  margin: 2px 0 8px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.intake-result__head p:last-child {
  color: var(--muted);
}

.intake-offer-card {
  padding: 25px;
  border: 1px solid rgba(47, 111, 100, 0.3);
  border-radius: 18px;
  background: linear-gradient(145deg, #f2f8f5, #fff);
}

.intake-offer-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.intake-offer-card__head span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intake-offer-card__head h3 {
  font-size: 1.45rem;
}

.intake-offer-card__head > strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.28rem;
  text-align: right;
}

.intake-offer-card > p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.79rem;
}

.intake-offer-card h4 {
  margin-top: 21px;
  color: var(--navy);
  font-size: 0.78rem;
}

.intake-offer-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.intake-offer-card li {
  position: relative;
  padding-left: 23px;
  color: #40555d;
  font-size: 0.74rem;
}

.intake-offer-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 800;
}

.intake-scope-note {
  padding-top: 15px;
  border-top: 1px solid rgba(47, 111, 100, 0.18);
  font-size: 0.69rem !important;
}

.intake-scope-note.is-warning {
  padding: 12px 13px;
  border: 1px solid #e9c36d;
  border-radius: 10px;
  background: #fff9e9;
  color: #6c521a !important;
}

.intake-next-steps {
  margin-top: 18px;
  padding: 23px 25px;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.intake-next-steps h3 {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.intake-next-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intake-next-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
}

.intake-next-steps li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 800;
}

.intake-next-steps p {
  color: #455961;
  font-size: 0.75rem;
}

.intake-application {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 18px;
  padding: 28px;
  border-radius: 20px;
  background: var(--navy);
}

.intake-application__process h3,
.intake-application__process > p:not(.eyebrow) {
  color: var(--white);
}

.intake-application__process h3 {
  margin: 6px 0 10px;
  font-size: 1.4rem;
}

.intake-application__process > p:not(.eyebrow) {
  opacity: 0.78;
  font-size: 0.76rem;
}

.intake-application .application-steps {
  margin-top: 20px;
}

.intake-application .application-steps li {
  color: var(--white);
}

.intake-application .application-steps li > span {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.intake-application .application-steps strong {
  color: var(--white);
}

.intake-application .application-steps small {
  color: rgba(255, 255, 255, 0.67);
}

.intake-application .lead-form-grid {
  align-self: start;
  padding: 22px;
  border-radius: 15px;
  background: var(--white);
}

.intake-payment-note {
  margin: -2px 0 0;
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
}

.intake-success {
  padding: clamp(34px, 7vw, 68px);
  text-align: center;
}

.intake-success[hidden] {
  display: none;
}

.intake-success .result-check {
  margin: 0 auto 15px;
}

.intake-success.is-payment-cancelled .result-check {
  background: #fff4d8;
}

.intake-success.is-payment-cancelled .result-check svg {
  stroke: #8a6417;
}

.intake-success.is-payment-cancelled .intake-success__status {
  border-color: rgba(138, 100, 23, 0.26);
  background: #fffaf0;
}

.intake-success.is-payment-cancelled .intake-success__status span {
  color: #765515;
}

.intake-success h2 {
  margin: 6px auto 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.intake-success > p:not(.question-kicker) {
  max-width: 610px;
  margin: 0 auto 18px;
  color: var(--muted);
}

.intake-success__status {
  display: grid;
  gap: 6px;
  max-width: 560px;
  margin: 24px auto;
  padding: 21px;
  border: 1px solid rgba(47, 111, 100, 0.28);
  border-radius: 15px;
  background: var(--blue-soft);
}

.intake-success__status span {
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intake-success__status strong {
  color: var(--navy);
}

.intake-success__status small {
  color: var(--muted);
}

@media (max-width: 720px) {
  .intake-main {
    padding: 30px 0 78px;
  }

  .intake-intro {
    margin-bottom: 24px;
  }

  .intake-intro h1 {
    font-size: clamp(2.1rem, 10.5vw, 3.25rem);
  }

  .intake-package-context {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .intake-package-context > div {
    grid-template-columns: 1fr;
  }

  .intake-package-context span {
    display: none;
  }

  .intake-package-context a {
    margin-left: auto;
  }

  .intake-step {
    padding: 25px 19px;
    border-radius: 19px;
  }

  .intake-search-field {
    padding: 4px;
    border-radius: 17px;
  }

  .intake-search-field textarea {
    min-height: 132px;
    padding: 17px;
    font-size: 0.95rem;
  }

  .intake-search-field .button {
    position: static;
    width: calc(100% - 16px);
    margin: 0 8px 8px;
  }

  .intake-examples {
    align-items: stretch;
    flex-direction: column;
  }

  .intake-examples > span {
    text-align: center;
  }

  .intake-examples button {
    width: 100%;
  }

  .intake-status-grid,
  .intake-fit-grid,
  .intake-offer-card ul,
  .intake-application {
    grid-template-columns: 1fr;
  }

  .intake-offer-card__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .intake-offer-card__head > strong {
    text-align: left;
  }

  .intake-application {
    padding: 22px 16px;
  }

  .intake-application .lead-form-grid {
    padding: 18px 15px;
  }

  .intake-result__head {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* References and legal pages */
.footer-link-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.footer-link-button:hover {
  color: var(--teal-dark);
}

.footer-link-button:focus-visible {
  outline: 3px solid rgba(47, 111, 100, 0.28);
  outline-offset: 4px;
}

.section--compact {
  padding-block: 72px;
}

.references-hero {
  padding-top: 100px;
  padding-bottom: 70px;
  background:
    radial-gradient(circle at 92% 12%, rgba(47, 111, 100, 0.12), transparent 34%),
    var(--warm-white);
}

.references-hero__grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 88px;
}

.references-hero h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
}

.references-page h1,
.references-page h2,
.references-page h3 {
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.references-hero__intro {
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.references-hero__intro > p:first-child {
  margin-bottom: 20px;
}

.micro-note {
  padding-left: 18px;
  border-left: 3px solid var(--teal);
  color: #65747d;
  font-size: 0.78rem;
  line-height: 1.65;
}

.featured-case {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  grid-template-columns: minmax(0, 1fr);
}

.featured-case__media {
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 1265 / 712;
  border-bottom: 1px solid var(--border);
  background: var(--blue-soft);
}

.featured-case__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
}

.featured-case__content {
  display: grid;
  padding: 48px 52px 52px;
  align-items: start;
  column-gap: 64px;
  grid-template-areas:
    "meta meta"
    "kicker steps"
    "title steps"
    "lead outcome"
    "button outcome";
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.featured-case__content h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  grid-area: title;
}

.featured-case__content > .project-meta {
  margin-bottom: 32px;
  grid-area: meta;
}

.featured-case__content > .eyebrow {
  grid-area: kicker;
}

.project-lead {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.04rem;
}

.featured-case__content > .project-lead {
  grid-area: lead;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.project-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f8faf9;
  color: #52646d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.story-steps {
  display: grid;
  gap: 17px;
  margin-bottom: 28px;
}

.featured-case__content > .story-steps {
  margin-bottom: 24px;
  grid-area: steps;
}

.story-steps > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
}

.story-steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.story-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.6;
}

.story-steps strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
}

.project-outcome {
  margin-bottom: 28px;
  padding: 19px 20px;
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  background: var(--teal-light);
}

.featured-case__content > .project-outcome {
  margin-bottom: 0;
  grid-area: outcome;
}

.featured-case__content > .button {
  justify-self: start;
  grid-area: button;
}

.project-outcome strong {
  color: var(--teal-dark);
  font-size: 0.79rem;
}

.project-outcome p {
  margin: 5px 0 0;
  color: #38564f;
  font-size: 0.8rem;
  line-height: 1.6;
}

.projects-section {
  background: var(--white);
}

.section-heading--wide {
  display: grid;
  align-items: end;
  grid-template-columns: 1.05fr 0.7fr;
  gap: 90px;
}

.section-heading--wide h2 {
  margin-bottom: 0;
}

.section-heading--wide > p {
  margin-bottom: 7px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.project-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--warm-white);
  box-shadow: var(--shadow-sm);
}

.project-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--border);
  background: var(--blue-soft);
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 280ms ease;
}

.project-card__image:hover img {
  transform: scale(1.018);
}

.project-card__body {
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  padding: 31px;
}

.project-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
}

.project-card__body > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.project-deliverables {
  display: grid;
  width: 100%;
  gap: 8px;
  margin: 0 0 25px;
  padding: 0;
  color: #41545e;
  font-size: 0.78rem;
  list-style: none;
}

.project-deliverables li {
  position: relative;
  padding-left: 20px;
}

.project-deliverables li::before {
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.project-card .text-arrow {
  margin-top: auto;
}

.project-card--wide {
  display: flex;
  grid-column: 1 / -1;
}

.project-card--wide .project-card__image {
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 0;
  aspect-ratio: 1265 / 712;
  border-right: 0;
  border-bottom: 1px solid var(--border);
}

.project-card--wide .project-card__body {
  width: min(100%, 920px);
  align-self: center;
  padding: 42px;
}

.references-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 58px;
  padding: 48px 52px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.1), transparent 35%),
    var(--navy);
  color: #eaf2f5;
  box-shadow: var(--shadow-md);
}

.references-cta > div {
  max-width: 720px;
}

.references-cta h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.references-cta p:last-child {
  margin-bottom: 0;
  color: #d9e7eb;
}

.legal-hero {
  padding: 88px 0 74px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 86% 5%, rgba(47, 111, 100, 0.13), transparent 35%),
    var(--warm-white);
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.1rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-hero small {
  color: #6d7c84;
  font-size: 0.78rem;
}

.legal-section {
  background: var(--white);
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  gap: 80px;
}

.legal-toc {
  position: sticky;
  top: 105px;
  padding: 23px 21px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
}

.legal-toc > strong {
  display: block;
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 0.82rem;
}

.legal-toc ol {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 21px;
  color: #66767e;
  font-size: 0.7rem;
}

.legal-toc a {
  display: inline-block;
  padding-block: 3px;
}

.legal-toc a:hover {
  color: var(--teal-dark);
}

.legal-content {
  min-width: 0;
}

.legal-summary {
  margin-bottom: 54px;
  padding: 25px 27px;
  border-left: 5px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--teal-light);
}

.legal-summary strong {
  color: var(--teal-dark);
}

.legal-summary p {
  margin: 6px 0 0;
  color: #38564f;
  line-height: 1.7;
}

.legal-content > section {
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 110px;
}

.legal-content > section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.legal-content p,
.legal-content li,
.legal-content td,
.legal-content th {
  color: #465861;
  font-size: 0.93rem;
  line-height: 1.75;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 17px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 23px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content a:not(.button) {
  color: var(--teal-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content address {
  color: #465861;
  font-style: normal;
  line-height: 1.8;
}

.legal-table-wrap {
  margin: 25px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.legal-content th,
.legal-content td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 0.76rem;
}

.legal-content tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .references-hero__grid,
  .section-heading--wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .featured-case__content {
    column-gap: 0;
    grid-template-areas:
      "meta"
      "kicker"
      "title"
      "lead"
      "steps"
      "outcome"
      "button";
    grid-template-columns: minmax(0, 1fr);
  }

  .project-card--wide {
    display: flex;
  }

  .project-card--wide .project-card__image {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
  }
}

@media (max-width: 720px) {
  .section--compact {
    padding-block: 48px;
  }

  .references-hero {
    padding-top: 70px;
    padding-bottom: 48px;
  }

  .references-hero h1 {
    max-width: 13ch;
    font-size: clamp(2.4rem, 11.5vw, 3.35rem);
    line-height: 1.02;
  }

  .references-hero__intro {
    font-size: 0.98rem;
  }

  .featured-case__content {
    padding: 31px 23px 35px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card--wide {
    grid-column: auto;
  }

  .project-card__body,
  .project-card--wide .project-card__body {
    padding: 25px 22px 29px;
  }

  .references-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
    padding: 36px 25px;
  }

  .references-cta .button {
    width: 100%;
  }

  .legal-hero {
    padding: 64px 0 52px;
  }

  .legal-hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.7rem);
  }

  .legal-section {
    padding-top: 60px;
  }

  .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    padding: 21px 19px;
  }

  .legal-content > section {
    padding-bottom: 32px;
    margin-bottom: 34px;
  }

  .footer-bottom div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
}

/* Dutch knowledge base */
.blog-page,
.article-page {
  background: #f7f8f5;
}

.blog-hero {
  padding: 104px 0 70px;
  background:
    radial-gradient(circle at 84% 18%, rgba(47, 111, 100, 0.13), transparent 28%),
    linear-gradient(180deg, #f2f6f2 0%, #f7f8f5 100%);
}

.blog-hero__inner {
  max-width: 850px;
}

.blog-hero h1,
.article-hero h1 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.blog-hero h1 {
  max-width: 13ch;
  margin: 14px 0 22px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.blog-hero__intro {
  max-width: 720px;
  margin: 0;
  color: #43565f;
  font-size: clamp(1.04rem, 2vw, 1.23rem);
  line-height: 1.7;
}

.blog-section {
  padding: 78px 0 104px;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}

.blog-featured__visual {
  display: grid;
  min-height: 390px;
  place-items: center;
  background:
    linear-gradient(140deg, rgba(47, 111, 100, 0.93), rgba(13, 35, 52, 0.96)),
    #2f6f64;
}

.blog-featured__visual span {
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.blog-featured__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  color: var(--white);
}

.blog-featured__body .article-label {
  color: #a9d8cd;
}

.blog-featured__body h2 {
  margin: 12px 0 18px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
}

.blog-featured__body p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

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

.knowledge-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(13, 35, 52, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.knowledge-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 44px rgba(13, 35, 52, 0.1);
}

.knowledge-card__marker {
  display: grid;
  width: 112px;
  flex: 0 0 112px;
  place-items: center;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 1.55rem;
  font-weight: 800;
}

.knowledge-card__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 30px;
}

.article-label {
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.knowledge-card h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.14;
}

.knowledge-card p:not(.article-label) {
  margin: 0 0 22px;
  color: #52626a;
  line-height: 1.65;
}

.knowledge-card .text-arrow {
  margin-top: auto;
}

.article-hero {
  padding: 82px 0 60px;
  background: linear-gradient(180deg, #f2f6f2 0%, #f7f8f5 100%);
}

.article-hero__inner {
  max-width: 920px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: #66757c;
  font-size: 0.84rem;
}

.breadcrumbs a {
  color: var(--teal-dark);
  font-weight: 700;
}

.article-hero h1 {
  max-width: 18ch;
  margin: 12px 0 24px;
  font-size: clamp(2.65rem, 6vw, 5rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
}

.article-deck {
  max-width: 760px;
  color: #40545d;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 27px;
  color: #66757c;
  font-size: 0.83rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 64px;
  justify-content: center;
  padding: 70px 0 105px;
}

.article-toc {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.article-toc strong {
  display: block;
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 0.82rem;
}

.article-toc a {
  display: block;
  padding: 7px 0;
  color: #53656d;
  font-size: 0.78rem;
  line-height: 1.45;
}

.article-toc a:hover {
  color: var(--teal-dark);
}

.article-body {
  min-width: 0;
}

.article-body > p:first-child {
  color: #344c55;
  font-size: 1.12rem;
  line-height: 1.75;
}

.article-body h2 {
  margin: 52px 0 18px;
  scroll-margin-top: 110px;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  line-height: 1.08;
}

.article-body h3 {
  margin: 31px 0 12px;
  font-size: 1.24rem;
}

.article-body p,
.article-body li {
  color: #465a63;
  line-height: 1.78;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
  padding-left: 23px;
}

.article-body li + li {
  margin-top: 8px;
}

.article-body a:not(.button) {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-note,
.article-checklist,
.article-sourcebox {
  margin: 34px 0;
  padding: 25px 27px;
  border: 1px solid #cfe2dc;
  border-radius: 14px;
  background: var(--teal-light);
}

.article-note strong,
.article-checklist strong,
.article-sourcebox strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.article-sourcebox {
  background: #f4f6f5;
}

.article-sourcebox li {
  font-size: 0.87rem;
}

.article-cta {
  margin-top: 54px;
  padding: 36px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
}

.article-cta h2 {
  margin-top: 0;
  color: var(--white);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.article-cta .button {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .blog-featured,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-layout {
    gap: 36px;
  }

  .article-toc {
    position: static;
  }
}

@media (max-width: 720px) {
  .blog-hero,
  .article-hero {
    padding-top: 62px;
  }

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

  .blog-featured__visual {
    min-height: 220px;
  }

  .blog-featured__body {
    padding: 31px 24px 36px;
  }

  .knowledge-card {
    flex-direction: column;
  }

  .knowledge-card__marker {
    width: 100%;
    height: 92px;
    flex-basis: 92px;
  }

  .knowledge-card__body {
    padding: 25px 22px 29px;
  }

  .article-layout {
    padding: 48px 0 76px;
  }

  .article-toc {
    padding: 20px;
  }

  .article-cta {
    padding: 28px 23px;
  }
}

/* Outplacement naar ondernemerschap */
.employer-bridge {
  padding: 54px 0;
  background: var(--teal-light);
}

.employer-bridge__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid #c5ddd5;
  border-radius: 20px;
  background: var(--white);
}

.employer-bridge__inner h2 {
  max-width: 22ch;
  margin: 8px 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.employer-bridge__inner p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: #53666d;
  line-height: 1.65;
}

.outplacement-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 124px) 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(47, 111, 100, 0.14), transparent 31%),
    linear-gradient(180deg, #f1f6f2 0%, #f7f8f5 100%);
}

.outplacement-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.outplacement-hero__copy h1 {
  max-width: 13ch;
  margin: 14px 0 24px;
  font-size: clamp(3rem, 6.6vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.outplacement-hero__intro {
  max-width: 720px;
  margin: 0;
  color: #40545d;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.outplacement-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.outplacement-hero__note {
  max-width: 690px;
  margin: 22px 0 0;
  color: #66767c;
  font-size: 0.83rem;
  line-height: 1.55;
}

.outplacement-brief {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid #c8d9d4;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(23, 49, 59, 0.09);
}

.outplacement-brief__label,
.outplacement-card-label {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.outplacement-brief h2 {
  margin: 0 0 26px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.outplacement-brief ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outplacement-brief li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.outplacement-brief li span {
  grid-row: 1 / 3;
  color: var(--teal-dark);
  font: 800 0.72rem/1.5 var(--font-body);
}

.outplacement-brief li strong,
.outplacement-brief li small {
  display: block;
}

.outplacement-brief li strong {
  color: var(--navy);
  font-size: 0.96rem;
}

.outplacement-brief li small {
  color: #697980;
  font-size: 0.78rem;
  line-height: 1.5;
}

.outplacement-context__grid,
.outplacement-care__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.outplacement-context h2,
.outplacement-care h2 {
  max-width: 22ch;
  margin: 12px 0 0;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.04;
}

.outplacement-context__copy p,
.outplacement-care p {
  margin: 0 0 20px;
  color: #4e626a;
  font-size: 1.03rem;
  line-height: 1.8;
}

.outplacement-route {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 50px;
}

.outplacement-route article {
  min-height: 286px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

.outplacement-route article:nth-child(2),
.outplacement-route article:nth-child(4) {
  margin-top: 26px;
}

.outplacement-route span {
  display: inline-flex;
  min-width: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.outplacement-route h3 {
  margin: 44px 0 13px;
  font-size: 1.45rem;
}

.outplacement-route p {
  margin: 0;
  color: #566970;
  font-size: 0.89rem;
  line-height: 1.7;
}

.outplacement-delivery__grid,
.outplacement-pricing__grid,
.outplacement-roles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.outplacement-delivery__grid article,
.outplacement-pricing__grid article {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.outplacement-delivery__grid h3,
.outplacement-pricing__grid h3,
.outplacement-roles__grid h3 {
  margin: 6px 0 24px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.outplacement-delivery__grid ul,
.outplacement-pricing__grid ul,
.outplacement-roles__grid ul,
.outplacement-contact__copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.outplacement-delivery__grid li,
.outplacement-pricing__grid li,
.outplacement-roles__grid li,
.outplacement-contact__copy li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-top: 1px solid var(--border);
  color: #52666e;
  font-size: 0.88rem;
  line-height: 1.5;
}

.outplacement-delivery__grid li::before,
.outplacement-pricing__grid li::before,
.outplacement-roles__grid li::before,
.outplacement-contact__copy li::before {
  position: absolute;
  top: 13px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.section--navy.outplacement-roles {
  background: var(--navy);
  color: var(--white);
}

.outplacement-roles .section-heading h2,
.outplacement-roles__grid h3 {
  color: var(--white);
}

.outplacement-roles .section-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.outplacement-roles__grid article {
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
}

.outplacement-roles__grid li {
  border-color: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.76);
}

.outplacement-roles__grid li::before {
  background: #80c4b6;
}

.outplacement-pricing__grid article {
  position: relative;
}

.outplacement-pricing__grid .outplacement-price--featured {
  border-color: var(--teal);
  box-shadow: 0 22px 60px rgba(23, 49, 59, 0.11);
}

.outplacement-pricing__grid .popular-label {
  top: -13px;
  right: 24px;
}

.outplacement-pricing__grid .price {
  margin-bottom: 28px;
}

.outplacement-pricing__note {
  max-width: 930px;
  margin: 28px auto 0;
  color: #66777e;
  font-size: 0.78rem;
  line-height: 1.65;
  text-align: center;
}

.outplacement-source-list {
  display: grid;
  gap: 12px;
}

.outplacement-source-list a {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  border: 1px solid #cbdcd6;
  border-radius: 13px;
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.outplacement-source-list a:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.outplacement-source-list strong {
  color: var(--navy);
  font-size: 0.94rem;
}

.outplacement-source-list span {
  color: #697a80;
  font-size: 0.78rem;
}

.outplacement-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

.section--contact.outplacement-contact-section {
  background: var(--navy);
}

.outplacement-contact__copy h2 {
  max-width: 12ch;
  margin: 12px 0 20px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.outplacement-contact__copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.outplacement-contact__copy ul {
  margin-top: 26px;
}

.outplacement-contact__copy li {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
}

.outplacement-contact__copy li::before {
  background: #8dd2c4;
}

.outplacement-form {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 20px;
  background: var(--white);
  color: var(--navy);
}

.outplacement-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.outplacement-form label {
  display: block;
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 750;
}

.outplacement-form label > span {
  color: #74838a;
  font-weight: 500;
}

.outplacement-form input,
.outplacement-form select,
.outplacement-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1px solid #9fafa9;
  border-radius: 7px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.92rem;
}

.outplacement-form textarea {
  min-height: 112px;
  resize: vertical;
}

.outplacement-form input:focus,
.outplacement-form select:focus,
.outplacement-form textarea:focus {
  border-color: var(--teal-dark);
  outline: 3px solid rgba(47, 111, 100, 0.2);
  outline-offset: 1px;
}

.outplacement-form .outplacement-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: #586a70;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}

.outplacement-form .outplacement-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--teal-dark);
}

.outplacement-consent a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.outplacement-form .button--white {
  background: var(--teal-dark);
  color: var(--white);
}

.outplacement-form__status {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
}

.outplacement-form__status.is-success {
  color: #236254;
}

.outplacement-form__status.is-error {
  color: #a13f3f;
}

@media (max-width: 980px) {
  .outplacement-hero__grid,
  .outplacement-context__grid,
  .outplacement-care__grid,
  .outplacement-contact {
    grid-template-columns: 1fr;
  }

  .outplacement-hero__copy h1 {
    max-width: 15ch;
  }

  .outplacement-brief {
    max-width: 720px;
  }

  .outplacement-route {
    grid-template-columns: 1fr 1fr;
  }

  .outplacement-route article:nth-child(2),
  .outplacement-route article:nth-child(4) {
    margin-top: 0;
  }

  .outplacement-delivery__grid,
  .outplacement-pricing__grid,
  .outplacement-roles__grid {
    grid-template-columns: 1fr;
  }

  .outplacement-contact {
    gap: 36px;
  }

  .outplacement-contact__copy h2 {
    max-width: 16ch;
  }
}

@media (max-width: 720px) {
  .employer-bridge__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .outplacement-hero {
    padding: 62px 0 72px;
  }

  .outplacement-hero__copy h1 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.25rem);
    line-height: 1.01;
    letter-spacing: -0.045em;
  }

  .outplacement-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .outplacement-hero__actions .button {
    width: 100%;
  }

  .outplacement-route {
    grid-template-columns: 1fr;
  }

  .outplacement-route article {
    min-height: 0;
  }

  .outplacement-route h3 {
    margin-top: 28px;
  }

  .outplacement-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 380px) {
  .outplacement-hero__copy h1 {
    font-size: 2.05rem;
  }

  .outplacement-brief,
  .outplacement-form,
  .outplacement-delivery__grid article,
  .outplacement-pricing__grid article,
  .outplacement-roles__grid article {
    padding: 22px 18px;
  }
}
