/* ---------------------------------------------------
   Design tokens, derived from the JCAdvisory mockup
   (ui/JCAdvisory Website.dc.html). Everything below
   consumes these variables, so retuning tokens restyles
   the whole site without touching markup.
--------------------------------------------------- */
:root {
  --color-bg: #f2f3f5;
  --color-bg-alt: #ffffff;
  --color-bg-dark: #1b3a5c;
  --color-ink: #101e2b;
  --color-text: #0f1a22;
  --color-text-muted: #46535e;
  --color-text-soft: #74797e;
  --color-accent: #2f80ed;
  --color-accent-soft: #8fbbf2;
  --color-on-dark: #edf2f7;
  --color-on-dark-soft: rgba(237, 242, 247, 0.7);
  --color-border: rgba(15, 26, 34, 0.1);
  --color-border-soft: rgba(15, 26, 34, 0.09);

  --font-body: "IBM Plex Mono", ui-monospace, monospace;
  --font-heading: "Space Grotesk", sans-serif;

  --container-width: 1220px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;

  --radius: 3px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-2);
  color: var(--color-text);
}

p {
  margin: 0 0 var(--space-2);
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

::selection {
  background: rgba(47, 128, 237, 0.18);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 3rem;
}

.logo-mark {
  width: 20px;
  height: 20px;
  background: var(--color-ink);
  display: block;
  flex-shrink: 0;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.84375rem;
  font-weight: 500;
  color: #fff;
  background: var(--color-ink);
  padding: 14px 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s ease;
}

.button:hover {
  background: var(--color-accent);
  color: #fff;
}

.button .arrow {
  font-size: 0.75rem;
  opacity: 0.8;
}

.link-underline {
  font-family: var(--font-heading);
  font-size: 0.84375rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.link-underline:hover {
  color: var(--color-accent);
}

.button-ghost {
  font-family: var(--font-heading);
  font-size: 0.84375rem;
  color: var(--color-text);
  background: none;
  border: 1px solid rgba(15, 26, 34, 0.25);
  padding: 12px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(10px);
  background: rgba(242, 243, 245, 0.85);
  border-bottom: 1px solid var(--color-border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--color-text);
  transition: color 0.15s ease;
}

.nav a:hover {
  color: var(--color-accent);
}

.nav-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text);
  display: block;
}

.nav-extra {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(15, 26, 34, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 26, 34, 0.05) 1px, transparent 1px);
  background-size: 112px 112px;
}

.hero-glow {
  position: absolute;
  top: -180px;
  left: 0;
  right: 0;
  height: 820px;
  pointer-events: none;
  opacity: 0.6;
  filter: blur(90px);
  background: radial-gradient(420px 300px at 20% 34%, #a8ccea 0%, transparent 70%),
    radial-gradient(460px 320px at 50% 20%, #f7d9a6 0%, transparent 70%),
    radial-gradient(420px 300px at 74% 38%, #f2b9a8 0%, transparent 70%),
    radial-gradient(360px 260px at 90% 16%, #e7c9de 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  padding: 6.5rem 3rem 6rem;
}

.eyebrow {
  font-size: 0.71875rem;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 2.75rem;
  max-width: 14em;
}

.hero-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.hero-copy p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: #2b3740;
  max-width: 34em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 1.375rem;
}

.panel-dark {
  background: var(--color-bg-dark);
  color: var(--color-on-dark);
  padding: 2.375rem;
}

.panel-eyebrow {
  font-size: 0.71875rem;
  letter-spacing: 0.16em;
  color: rgba(237, 242, 247, 0.6);
  margin-bottom: 24px;
}

.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.numbered-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}

.numbered-item .num {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--color-accent-soft);
}

.numbered-item span:last-child {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--color-on-dark);
}

.panel-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(237, 242, 247, 0.22);
  font-size: 0.78125rem;
  line-height: 1.75;
  color: var(--color-on-dark-soft);
}

/* Strip */
.strip {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.strip-inner {
  padding: 26px 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 0.78125rem;
  color: var(--color-text-muted);
}

.strip .dot {
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  display: block;
  border-radius: 50%;
}

/* Sections */
.section {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 76px;
}

.section > .container {
  padding-top: 6rem;
  padding-bottom: 6.5rem;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-on-dark);
  border-bottom: none;
}

.section-dark h2 {
  color: var(--color-on-dark);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.kicker-num {
  font-size: 0.71875rem;
  letter-spacing: 0.16em;
  color: var(--color-accent);
}

.kicker-num-light {
  color: var(--color-accent-soft);
}

.kicker-rule {
  width: 28px;
  height: 1px;
  background: var(--color-accent);
  display: block;
}

.kicker-rule-light {
  background: var(--color-accent-soft);
}

.kicker-label {
  font-size: 0.71875rem;
  letter-spacing: 0.16em;
  color: var(--color-text-soft);
}

.kicker-label-light {
  color: rgba(237, 242, 247, 0.65);
}

.section h2 {
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.lede {
  font-size: 0.84375rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 44em;
  margin-bottom: 3.5rem;
}

.lede-light {
  color: rgba(237, 242, 247, 0.7);
}

/* Card grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.5rem;
}

.card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-soft);
  padding: 2rem 1.875rem 2.125rem;
}

.section-alt .card {
  background: var(--color-bg);
}

.card h3 {
  font-size: 1.3125rem;
  color: var(--color-accent);
  margin: 0 0 12px;
}

.card p {
  font-size: 0.8125rem;
  margin: 0;
}

.illustration {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  margin-bottom: 26px;
}

.illustration span {
  font-size: 0.65625rem;
  color: var(--color-text-soft);
  background: var(--color-bg-alt);
  padding: 5px 8px;
}

.illustration-media {
  aspect-ratio: 16 / 9;
  padding: 0;
  align-items: stretch;
  overflow: hidden;
}

.illustration-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.illustration-slate {
  background: linear-gradient(140deg, #e1e7ee 0%, #f2f4f6 100%);
}

.illustration-lilac {
  background: linear-gradient(140deg, #e5e2ee 0%, #f2f4f6 100%);
}

.illustration-profile {
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(15, 26, 34, 0.08);
  padding: 0;
  align-items: stretch;
  overflow: hidden;
}

.illustration-profile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Process panel */
.process-panel {
  margin-top: 2.75rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-soft);
  padding: 2.25rem 2.125rem 2.125rem;
}

.section-alt .process-panel {
  background: var(--color-bg);
}

.process-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 2.125rem;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.process-label {
  font-size: 0.71875rem;
  letter-spacing: 0.14em;
  color: var(--color-text-soft);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.timeline-track {
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(15, 26, 34, 0.14);
}

.timeline-track-fill {
  right: auto;
  width: 83.33%;
  background: var(--color-accent);
}

.timeline-step {
  position: relative;
  padding-right: 22px;
}

.timeline-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1.5px solid rgba(15, 26, 34, 0.28);
  box-sizing: border-box;
  margin-bottom: 20px;
  display: block;
}

.section-alt .timeline-dot {
  background: var(--color-bg);
}

.timeline-dot-filled {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.timeline-step-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.timeline-step-desc {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.process-legend {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border-soft);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.legend-item-wide {
  grid-column: 1 / span 5;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1.5px solid rgba(15, 26, 34, 0.28);
  box-sizing: border-box;
  display: block;
}

.section-alt .legend-dot {
  background: var(--color-bg);
}

.legend-dot-filled {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* Stat grid (oplevert) */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.stat-cell {
  background: #f7f8fa;
  padding: 1.875rem 1.75rem;
}

.stat-cell h3 {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin: 0 0 12px;
}

.stat-cell p {
  font-size: 0.78125rem;
  margin: 0;
}

/* Profile grid */
.profile-role {
  font-size: 0.71875rem;
  letter-spacing: 0.03em;
  color: var(--color-text-soft);
  margin-bottom: 16px;
}

.profile h3 {
  font-size: 1.375rem;
  color: var(--color-accent);
  margin: 0 0 6px;
}

.profile p {
  font-size: 0.84375rem;
}

/* Step cards (aanpak) */
.step-card {
  background: #f7f8fa;
  border: 1px solid var(--color-border-soft);
  border-top: 2px solid var(--color-accent);
  padding: 2.5rem 2.375rem;
  display: flex;
  flex-direction: column;
}

.step-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.step-label {
  font-size: 0.71875rem;
  letter-spacing: 0.14em;
  color: var(--color-accent);
}

.step-meta {
  font-size: 0.71875rem;
  color: var(--color-text-soft);
}

.step-card h3 {
  font-size: 1.875rem;
  margin: 0 0 16px;
}

.step-desc {
  font-size: 0.84375rem;
  line-height: 1.8;
  margin: 0 0 2rem;
  flex: 1;
}

.step-sub {
  font-size: 0.71875rem;
  letter-spacing: 0.14em;
  color: var(--color-text-soft);
  margin-bottom: 6px;
}

.step-list {
  display: flex;
  flex-direction: column;
}

.step-list-item {
  border-top: 1px solid rgba(15, 26, 34, 0.12);
  padding: 16px 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #2b3740;
}

.step-price {
  border-top: 1px solid rgba(15, 26, 34, 0.12);
  padding-top: 20px;
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  letter-spacing: -0.02em;
  color: var(--color-accent);
}

.price-prefix {
  font-family: var(--font-body);
  font-size: 0.71875rem;
  color: var(--color-text-soft);
}

.fine-print {
  margin-top: 20px;
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--color-text-soft);
}

/* Example (voorbeeld) */
.example-grid {
  margin-bottom: 3.5rem;
}

.example-title {
  font-size: 1.25rem;
  color: var(--color-accent-soft);
  margin: 0 0 12px;
}

.example-copy {
  font-size: 0.8125rem;
  line-height: 1.85;
  color: rgba(237, 242, 247, 0.78);
  margin: 0;
}

.stat-row {
  border-top: 1px solid rgba(237, 242, 247, 0.2);
  border-bottom: 1px solid rgba(237, 242, 247, 0.2);
  padding: 2.75rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-number-accent {
  color: var(--color-accent-soft);
}

.stat-caption {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(237, 242, 247, 0.65);
}

/* Contact */
.contact-section {
  position: relative;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.contact-section .hero-grid-bg {
  background-image: linear-gradient(rgba(15, 26, 34, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 26, 34, 0.04) 1px, transparent 1px);
}

.contact-section > .container {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 26px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label span {
  font-size: 0.78125rem;
  color: #2b3740;
}

.contact-form input,
.contact-form textarea {
  background: #f7f8fa;
  border: 1px solid rgba(47, 128, 237, 0.35);
  padding: 15px 14px;
  font-size: 0.84375rem;
  border-radius: 2px;
  outline: none;
  font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.form-message {
  margin-bottom: 26px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.75rem;
  color: var(--color-text-soft);
}

.form-error {
  margin-top: 14px;
  font-size: 0.8125rem;
  color: #c0392b;
}

.sent-panel {
  border: 1px solid rgba(47, 128, 237, 0.35);
  background: #f7f8fa;
  padding: 3.5rem 2.75rem;
}

.sent-panel h3 {
  font-size: 1.875rem;
  margin: 0 0 14px;
}

.sent-panel p {
  font-size: 0.84375rem;
  max-width: 34em;
  margin-bottom: 26px;
}

.contact-block {
  margin-bottom: 26px;
}

.contact-block:last-child {
  margin-bottom: 0;
}

.contact-block-title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  margin-bottom: 8px;
  color: var(--color-accent-soft);
}

.contact-link {
  font-size: 0.8125rem;
  color: var(--color-on-dark);
}

.contact-link:hover {
  color: var(--color-accent-soft);
}

.contact-plain {
  font-size: 0.8125rem;
  color: var(--color-on-dark);
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--color-bg);
  border-top: 1px solid rgba(15, 26, 34, 0.12);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  bottom: -280px;
  left: 0;
  right: 0;
  height: 520px;
  pointer-events: none;
  opacity: 0.5;
  filter: blur(90px);
  background: radial-gradient(380px 240px at 18% 70%, #a8ccea 0%, transparent 70%),
    radial-gradient(420px 260px at 50% 80%, #f7d9a6 0%, transparent 70%),
    radial-gradient(380px 240px at 82% 70%, #f2b9a8 0%, transparent 70%);
}

.footer-inner {
  position: relative;
}

.footer-grid {
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footer-about p {
  font-size: 0.78125rem;
  max-width: 32em;
  margin: 0;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.78125rem;
}

.footer-links a {
  color: var(--color-text);
}

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

.footer-bottom {
  border-top: 1px solid rgba(15, 26, 34, 0.12);
  padding: 26px 0;
  text-align: center;
  font-size: 0.71875rem;
  color: var(--color-text-soft);
}

/* Mobile sticky CTA bar (shown only at narrow widths, see media query) */
.mobile-sticky-cta {
  display: none;
}

/* ---------------------------------------------------
   Responsive
--------------------------------------------------- */
@media (max-width: 960px) {
  .hero-columns,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .timeline,
  .process-legend {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline-track,
  .timeline-track-fill {
    display: none;
  }

  .timeline-step {
    margin-bottom: 1.5rem;
  }

  .legend-item-wide {
    grid-column: span 2;
  }

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

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

@media (max-width: 860px) {
  .nav,
  .header-inner > .button {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 3rem 1.25rem;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .header-inner.nav-open .nav a {
    font-size: 1rem;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border-soft);
  }

  .header-inner.nav-open .nav a:last-child {
    border-bottom: none;
  }

  .header-inner.nav-open .nav-dot {
    display: none;
  }

  .header-inner.nav-open .nav-extra {
    display: block;
  }

  .header-inner.nav-open > .button {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }

  .header-inner {
    height: 60px;
  }

  .section {
    scroll-margin-top: 60px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .header-inner.nav-open .nav {
    top: 60px;
    max-height: calc(100vh - 60px);
    padding: 0.5rem 1.5rem 1.25rem;
  }

  .hero-inner {
    padding: 3.5rem 1.5rem 3rem;
  }

  .panel-dark {
    padding: 1.875rem 1.375rem;
  }

  .section > .container {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

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

  .stat-grid,
  .process-legend {
    grid-template-columns: 1fr;
  }

  .process-legend {
    row-gap: 12px;
  }

  .legend-item-wide {
    grid-column: 1;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
  }

  /* Vertical dot-timeline, matching the mobile mockup */
  .process-panel {
    padding: 1.75rem 1.375rem 1.625rem;
  }

  .timeline {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .timeline-track {
    display: block;
    top: 7px;
    bottom: 14px;
    left: 7px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .timeline-track-fill {
    display: block;
    width: 1px;
    height: 78%;
  }

  .timeline-step {
    padding-right: 0;
    padding-left: 32px;
    margin-bottom: 0;
  }

  .timeline-dot {
    position: absolute;
    left: 0;
    top: 1px;
    margin-bottom: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  /* Sticky mobile CTA bar */
  body {
    padding-bottom: 84px;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
    background: rgba(242, 243, 245, 0.94);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-border);
    padding: 12px 1.5rem 16px;
  }

  .mobile-sticky-cta .button {
    width: 100%;
    justify-content: center;
  }
}
