/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -136px;
  padding: calc(var(--space-16) + 136px) 0 calc(var(--space-16) + 80px);
  overflow: hidden;
  background: var(--color-cream);
}

/* Animated background blobs */
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__blob { animation: blobDrift 18s ease-in-out infinite alternate; }
}

.hero__blob--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  top: -160px; right: -80px;
  animation-duration: 22s !important;
}
.hero__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,163,208,0.16) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation-duration: 26s !important;
  animation-direction: alternate-reverse !important;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,176,136,0.10) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation-duration: 30s !important;
}

@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, 14px) scale(1.05); }
}

/* Floating shapes */
.hero__shapes { position: absolute; inset: 0; }

.shape {
  position: absolute;
  border-radius: var(--radius-lg);
}

.shape--1 { width: 96px; height: 96px; top: 18%; right: 13%; border: 2px solid rgba(255,107,53,0.12); }
.shape--2 { width: 60px; height: 60px; top: 56%; right: 21%; border-radius: 50%; border: 2px solid rgba(91,163,208,0.28); background: rgba(91,163,208,0.04); }
.shape--3 { width: 68px; height: 68px; top: 30%; right: 5%; border: 2px solid rgba(255,107,53,0.09); }
.shape--4 { width: 34px; height: 34px; top: 72%; right: 38%; border-radius: 50%; background: rgba(255,176,136,0.15); border: none; }
.shape--5 { width: 78px; height: 78px; top: 62%; left: 6%; border-radius: 50%; border: 2px solid rgba(91,163,208,0.20); }
.shape--6 { width: 44px; height: 44px; top: 28%; left: 3%; border: 2px solid rgba(91,163,208,0.14); }

@media (prefers-reduced-motion: no-preference) {
  .shape { animation: shapeFloat 22s ease-in-out infinite; }
  .shape--1 { animation-duration: 20s; }
  .shape--2 { animation-duration: 24s; animation-direction: reverse; }
  .shape--3 { animation-duration: 28s; animation-delay: -4s; }
  .shape--4 { animation-duration: 18s; animation-delay: -9s; }
  .shape--5 { animation-duration: 32s; animation-delay: -12s; animation-direction: reverse; }
  .shape--6 { animation-duration: 26s; animation-delay: -7s; }
}

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(6deg); }
  66%       { transform: translateY(-7px) rotate(-4deg); }
}

/* Hero inner: 2-column split */
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 52fr 48fr;
  gap: var(--space-12);
  align-items: center;
}

/* Hero greeting line */
.hero__greeting {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: var(--space-4);
  letter-spacing: 0.01em;
}

.hero__greeting-dot {
  width: 8px; height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__greeting-dot {
    animation: dotPop 2.4s ease-in-out infinite;
  }
}
@keyframes dotPop {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.5); box-shadow: 0 0 0 4px rgba(255,107,53,0.15); }
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-dark-blue);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.badge__pulse {
  width: 6px; height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .badge__pulse { animation: badgePulse 2.2s ease-in-out infinite; }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(255,107,53,0); }
}

/* Hero title */
.hero__title {
  font-size: clamp(var(--text-4xl), 5.5vw, var(--text-7xl));
  font-weight: 800;
  line-height: 1.06;
  color: var(--color-dark-blue);
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
  max-width: 680px;
}

.hero__accent {
  color: var(--color-light-blue);
  position: relative;
  display: inline-block;
}

.hero__squiggle {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 16px;
  overflow: visible;
  pointer-events: none;
}

.hero__subtitle {
  font-size: clamp(var(--text-base), 1.8vw, var(--text-lg));
  color: var(--color-mid-gray);
  line-height: 1.78;
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Illustration */
.hero__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__svg {
  width: 100%;
  max-width: 540px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl), 0 24px 64px rgba(11,58,93,0.10);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-mid-gray);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
  z-index: 1;
}
.scroll-indicator:hover { opacity: 1; }

.scroll-indicator__line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--color-orange), transparent);
  border-radius: 1px;
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-indicator__line { animation: scrollPulse 2s ease-in-out infinite; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero__illustration { order: -1; }
  .hero__svg { max-width: 460px; max-height: 320px; }
}
@media (max-width: 480px) {
  .hero__svg { max-height: 260px; border-radius: 16px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ── Hero: afbeeldingsvariant ───────────────────────────────────── */
.hero--image { background: var(--color-dark-blue); }

.hero__bg-image {
  position: absolute;
  inset: 0;
  background: url('../assets/Achtergrond.png') center 42% / cover no-repeat;
  z-index: 0;
  filter: contrast(1.15) saturate(1.12) brightness(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5,25,46,0.80) 0%,
    rgba(11,58,93,0.52) 40%,
    rgba(5,25,46,0.88) 100%
  );
  z-index: 1;
}

.hero--image .hero__blob   { display: none; }
.hero--image .hero__shapes .shape { border-color: rgba(255,255,255,0.07); background: transparent; }

.hero--image .hero__inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 860px;
  justify-items: center;
}

.hero--image .hero__illustration { display: none; }
.hero--image .hero__title        { color: var(--color-white); max-width: none; text-shadow: 0 3px 28px rgba(5,20,40,0.45); }
.hero--image .hero__accent       { color: var(--color-light-blue); }
.hero--image .hero__subtitle     { color: rgba(255,255,255,0.78); max-width: 620px; }
.hero--image .hero__greeting     { color: rgba(255,255,255,0.82); }
.hero--image .hero__greeting-dot { background: var(--color-orange); }
.hero--image .hero__badge {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--color-white);
}
.hero--image .hero__actions { justify-content: center; }
.hero--image .compass-rose  { color: var(--color-white); opacity: 0.07; }

/* ── Stats strip ─────────────────────────────────────────────────── */
.stats { background: var(--color-white); padding: var(--space-16) 0; border-top: 1px solid var(--color-border); }

.stats__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.stat-card {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-6) var(--space-6);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-5px) rotate(0.5deg); box-shadow: var(--shadow-lg); }
.stat-card:nth-child(odd)  { background: var(--color-orange-pale); border-color: rgba(255,107,53,0.12); }
.stat-card:nth-child(even) { background: rgba(91,163,208,0.07); border-color: rgba(91,163,208,0.18); }
.stat-card:nth-child(even) .stat__value { color: var(--color-light-blue); }
.stat-card:nth-child(even) .stat__plus  { color: var(--color-dark-blue); }

.stat-card__icon {
  width: 44px; height: 44px;
  margin: 0 auto var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  font-weight: 800;
  color: var(--color-dark-blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat__plus {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-orange);
  margin-left: 2px;
}

.stat__label {
  font-size: var(--text-xs);
  color: var(--color-mid-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
}

/* ── Process section ─────────────────────────────────────────────── */
.process__row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: var(--space-12);
}

.process__card {
  flex: 1 1 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  border-top-width: 4px;
  padding: var(--space-8);
  cursor: default;
  transition:
    transform 0.35s var(--ease-bounce),
    box-shadow 0.3s ease,
    border-top-width 0.25s var(--ease-bounce);
  will-change: transform;
  position: relative;
}

.process__card--orange { border-top-color: var(--color-orange); }
.process__card--blue   { border-top-color: var(--color-light-blue); }
.process__card--dark   { border-top-color: var(--color-dark-blue); }

.process__card:hover {
  transform: translateY(-8px) rotate(0.6deg);
  box-shadow: var(--shadow-xl);
  border-top-width: 7px;
}

.process__number {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-4);
}
.process__card--orange .process__number { color: var(--color-orange); }
.process__card--blue   .process__number { color: var(--color-light-blue); }
.process__card--dark   .process__number { color: var(--color-dark-blue); }

.process__title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-dark-blue);
  margin-bottom: var(--space-3);
}

.process__desc {
  font-size: var(--text-base);
  color: var(--color-mid-gray);
  line-height: 1.75;
}

.process__reveal {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition: clip-path 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}
.process__card:hover .process__reveal {
  clip-path: inset(0 0 0% 0);
  opacity: 1;
  margin-top: var(--space-4);
}

.process__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-mid-gray);
  line-height: 1.65;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

/* Hand-drawn arrows between cards */
.process__arrow {
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px; /* roughly align with card content start */
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-spring);
}

.process__arrow.is-visible { opacity: 1; transform: translateX(0); }

@media (max-width: 768px) {
  .process__row { flex-direction: column; gap: var(--space-4); }
  .process__arrow {
    transform: rotate(90deg) translateY(0);
    padding-top: 0;
    width: 100%;
    flex: 0 0 auto;
    justify-content: center;
  }
  .process__arrow.is-visible { opacity: 0.6; }
}

/* ── Services ────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-8);
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Orange top "tape" decoration */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: var(--space-6);
  width: 36px; height: 4px;
  background: var(--color-orange);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: height 0.25s var(--ease-bounce);
}
.service-card:hover::before { height: 8px; }

.service-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: var(--shadow-xl);
}

/* 2nd service card: light-blue accent */
.service-card:nth-child(2)::before { background: var(--color-light-blue); }
.service-card:nth-child(2) .service-card__icon { background: rgba(91,163,208,0.10); }
.service-card:nth-child(2):hover .service-card__icon { background: rgba(91,163,208,0.18); }
.service-card:nth-child(2) .service-card__link { color: var(--color-light-blue); }

.service-card__icon {
  width: 60px; height: 60px;
  background: var(--color-orange-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  transition: transform 0.35s var(--ease-bounce), background 0.2s;
}
.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-4deg);
  background: rgba(255,107,53,0.12);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-dark-blue);
  margin-bottom: var(--space-3);
}

.service-card__desc {
  font-size: var(--text-base);
  color: var(--color-mid-gray);
  line-height: 1.75;
  flex: 1;
  margin-bottom: var(--space-4);
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-orange);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  margin-top: auto;
}
.service-card:hover .service-card__link { opacity: 1; transform: translateY(0); }
.service-card__link:hover { color: var(--color-dark-blue); }

@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card__link { opacity: 1; transform: none; }
}

/* ── Why / Cards Stack ───────────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.why__body {
  font-size: var(--text-base);
  color: var(--color-mid-gray);
  line-height: 1.82;
  margin-bottom: var(--space-8);
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.why__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-dark-gray);
  font-weight: 500;
}

.why__check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--color-orange-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.why__item:nth-child(even) .why__check { background: rgba(91,163,208,0.10); }

/* Cards stack visual */
.why__visual {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why__stack {
  position: relative;
  width: 340px;
  height: 320px;
}

.why__stack-card {
  position: absolute;
  width: 310px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.why__stack-card--back {
  background: var(--color-orange-pale);
  border-color: rgba(255,107,53,0.15);
  transform: rotate(-6deg) translate(-16px, 24px);
  top: 24px; left: 4px;
  z-index: 1;
}

.why__stack-card--mid {
  background: #EEF5FB;
  border-color: rgba(91,163,208,0.18);
  transform: rotate(3.5deg) translate(8px, 10px);
  top: 12px; left: 8px;
  z-index: 2;
}

.why__stack-card--front {
  background: var(--color-white);
  transform: rotate(-0.8deg);
  top: 0; left: 16px;
  z-index: 3;
  transition: transform 0.4s var(--ease-bounce);
}

.why__stack:hover .why__stack-card--front {
  transform: rotate(0deg) translateY(-6px);
}

.why__stack-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.why__stack-dot {
  width: 7px; height: 7px;
  background: var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.why__check-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-dark-gray);
  font-weight: 500;
}

.why__check-row--pending { color: var(--color-mid-gray); }
.why__check-row--pending span { text-decoration-line: none; }

.why__check-row svg { flex-shrink: 0; margin-top: 2px; }

/* Floating labels around the stack */
.why__float {
  position: absolute;
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 800;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 10;
}

.why__float--1 {
  background: var(--color-orange);
  color: var(--color-white);
  bottom: 0; right: -8px;
}
.why__float--2 {
  background: var(--color-dark-blue);
  color: var(--color-white);
  top: 4px; right: -12px;
}

@media (prefers-reduced-motion: no-preference) {
  .why__float--1 { animation: floatBob 3.2s ease-in-out infinite alternate; }
  .why__float--2 { animation: floatBob 3.8s ease-in-out infinite alternate-reverse; }
}
@keyframes floatBob {
  from { transform: translateY(0); }
  to   { transform: translateY(-6px); }
}

@media (max-width: 900px) {
  .why__grid { grid-template-columns: 1fr; }
  .why__visual { height: 300px; margin-top: var(--space-8); }
}

/* ── Testimonial ─────────────────────────────────────────────────── */
.testimonial__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* Big decorative quote mark behind text */
.testimonial__bg-quote {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 240px;
  line-height: 1;
  color: var(--color-orange);
  opacity: 0.07;
  font-family: Georgia, serif;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.testimonial__text {
  position: relative;
  z-index: 1;
  font-size: clamp(var(--text-lg), 2.2vw, var(--text-2xl));
  font-weight: 500;
  color: var(--color-dark-blue);
  line-height: 1.68;
  font-style: italic;
  margin-bottom: var(--space-8);
}

.testimonial__author {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange), var(--color-dark-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.testimonial__name {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-dark-blue);
  text-align: left;
}

.testimonial__role {
  font-size: var(--text-xs);
  color: var(--color-mid-gray);
  margin-top: 2px;
  text-align: left;
}

/* ── Final CTA ───────────────────────────────────────────────────── */
.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--space-24) var(--space-6);
}

.cta-final__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cta-final__blob--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.18) 0%, transparent 70%);
  top: -100px; right: -80px;
}
.cta-final__blob--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(91,163,208,0.12) 0%, transparent 70%);
  bottom: -80px; left: -60px;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final__title {
  font-size: clamp(var(--text-3xl), 5.5vw, var(--text-7xl));
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}

.cta-final__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.cta-final__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  background: var(--color-dark-blue);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer__signoff {
  text-align: center;
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-12);
}

.footer__signoff-text {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.footer__signoff-boat {
  font-size: var(--text-lg);
  display: inline-flex;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-top: var(--space-4);
  max-width: 300px;
}

.footer__heading {
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--color-white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.28);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
  .cta-final__actions { flex-direction: column; align-items: center; }
}

/* ── Form (contact page) ─────────────────────────────────────────── */
.form__group { margin-bottom: var(--space-6); }
.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: var(--space-2);
}
.form__input,
.form__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-dark-gray);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__status { margin-top: var(--space-4); font-size: var(--text-sm); }
.form__status.success { color: #16a34a; }
.form__status.error   { color: #dc2626; }

/* ═══════════════════════════════════════════════════════════════════
   NAUTISCHE ELEMENTEN
═══════════════════════════════════════════════════════════════════ */

/* ── Kompasroos (grote achtergrond) ─────────────────────────────── */
.compass-rose {
  position: absolute;
  color: var(--color-dark-blue);
  opacity: 0.038;
  pointer-events: none;
  user-select: none;
}

.hero .compass-rose {
  width: 560px;
  height: 560px;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.cta-final .compass-rose {
  width: 480px;
  height: 480px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  color: var(--color-white);
}

@media (prefers-reduced-motion: no-preference) {
  .compass-rose { animation: compassSpin 160s linear infinite; }

  .hero .compass-rose { transform-origin: center center; }
  .cta-final .compass-rose {
    top: 50%; left: 50%;
    animation: compassSpinCenter 200s linear infinite;
  }
}

@keyframes compassSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@keyframes compassSpinCenter {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── Rollende golven (hero onderkant) ───────────────────────────── */
.hero__wave-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  pointer-events: none;
  z-index: 2;
}

.hero__wave-svg {
  display: block;
  width: 100%;
  height: 90px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__wave-track {
    animation: waveScroll 22s linear infinite;
  }
}

@keyframes waveScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Golf-scheider tussen secties ───────────────────────────────── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
  pointer-events: none;
}
.wave-divider svg { display: block; width: 100%; }

/* ── Zeekaart grid (process-sectie achtergrond) ─────────────────── */
.section--chart {
  background-image:
    linear-gradient(rgba(91,163,208,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,163,208,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Coördinaten labels (decoratief) */
.chart-coords {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  display: flex;
  gap: var(--space-4);
  font-size: 10px;
  font-weight: 700;
  color: rgba(91,163,208,0.55);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
}

/* ── Koerslijn (process route) ──────────────────────────────────── */
.process__route {
  position: absolute;
  top: 68px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  pointer-events: none;
  z-index: 0;
  display: none;
}

@media (min-width: 769px) {
  .process__route { display: block; }
  .process__row { position: relative; }
}

/* ── Anker watermark (footer) ───────────────────────────────────── */
.footer__anchor-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-12);
}

.footer__anchor {
  color: rgba(255,255,255,0.07);
  width: 80px;
  height: 100px;
}

/* ── Golf voor footer ───────────────────────────────────────────── */
.footer-wave {
  line-height: 0;
  overflow: hidden;
  background: var(--color-orange-pale);
}
.footer-wave svg { display: block; width: 100%; }

/* ── Touwbaan (decoratieve rand) ────────────────────────────────── */
.rope-border {
  border-top: 3px solid transparent;
  border-image: repeating-linear-gradient(
    90deg,
    var(--color-orange) 0px,
    var(--color-orange) 8px,
    transparent 8px,
    transparent 14px,
    var(--color-light-blue) 14px,
    var(--color-light-blue) 22px,
    transparent 22px,
    transparent 28px
  ) 1;
}

/* ── Wind / richting indicator in stats ─────────────────────────── */
.stat-card--north .stat-card__icon svg { color: var(--color-orange); }

/* ── Deining animatie op SVG illustraties ───────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .hero__svg {
    animation: swellFloat 7s ease-in-out infinite alternate;
  }
}
@keyframes swellFloat {
  from { transform: translateY(0px) rotate(0deg); }
  to   { transform: translateY(-8px) rotate(0.4deg); }
}

/* ── Why-stack: golving hover ───────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .why__stack-card--front {
    animation: cardSwell 6s ease-in-out infinite alternate;
  }
}
@keyframes cardSwell {
  from { transform: rotate(-0.8deg) translateY(0); }
  to   { transform: rotate(-0.8deg) translateY(-4px); }
}
.why__stack:hover .why__stack-card--front {
  animation: none;
  transform: rotate(0deg) translateY(-6px);
}

/* ── Mobile: Compass niet tonen (te breed) ──────────────────────── */
@media (max-width: 900px) {
  .hero .compass-rose { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   VAARGEVOEL — extra nautische sfeer
═══════════════════════════════════════════════════════════════════ */

/* ── Golfovergangen tussen secties ──────────────────────────────── */
.wave-sep {
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
  margin-bottom: -2px;
}
.wave-sep svg { display: block; width: 100%; }

/* ── Stats: horizongloed bovenaan ───────────────────────────────── */
.stats {
  background: linear-gradient(to bottom, rgba(91,163,208,0.08) 0%, var(--color-white) 52%) !important;
  border-top: none !important;
}

/* ── Waterstroomlijnen (why-sectie) ─────────────────────────────── */
.section--blue-pale { position: relative; }

.current-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.current-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(91,163,208,0.28), transparent);
  border-radius: 1px;
}
.current-line--1 { top: 20%; width: 320px; }
.current-line--2 { top: 52%; width: 220px; }
.current-line--3 { top: 78%; width: 280px; }

@media (prefers-reduced-motion: no-preference) {
  .current-line--1 { animation: currentDrift 22s linear infinite; }
  .current-line--2 { animation: currentDrift 30s linear infinite 8s; }
  .current-line--3 { animation: currentDrift 18s linear infinite 14s; }
}
@keyframes currentDrift {
  from { transform: translateX(-340px); }
  to   { transform: translateX(calc(100vw + 340px)); }
}

/* ── Licht-caustic shimmer op blauwe secties ────────────────────── */
.section--blue-pale::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 140% 50% at 12% 20%, rgba(255,255,255,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 100% 45% at 88% 80%, rgba(91,163,208,0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .section--blue-pale::before {
    animation: lightCaustic 16s ease-in-out infinite alternate;
  }
}
@keyframes lightCaustic {
  from { transform: translate(0, 0) scale(1); opacity: 0.7; }
  to   { transform: translate(1.5%, 0.8%) scale(1.05); opacity: 1; }
}
.section--blue-pale .section__container { position: relative; z-index: 1; }

/* ── Schuimbolletjes (hero onderkant) ───────────────────────────── */
.hero__foam {
  position: absolute;
  bottom: 88px;
  left: 0; right: 0;
  pointer-events: none;
  z-index: 3;
}
.foam-dot {
  position: absolute;
  background: rgba(255,255,255,0.70);
  border-radius: 50%;
  width: 4px; height: 4px;
}
@media (prefers-reduced-motion: no-preference) {
  .foam-dot { animation: foamPop 4.5s ease-out infinite; }
  .foam-dot:nth-child(1) { left: 11%; width: 3px; height: 3px; animation-delay: 0s; }
  .foam-dot:nth-child(2) { left: 27%; width: 5px; height: 5px; animation-delay: 1.3s; }
  .foam-dot:nth-child(3) { left: 43%; width: 3px; height: 3px; animation-delay: 2.6s; }
  .foam-dot:nth-child(4) { left: 59%; width: 4px; height: 4px; animation-delay: 0.6s; }
  .foam-dot:nth-child(5) { left: 74%; width: 5px; height: 5px; animation-delay: 1.9s; }
  .foam-dot:nth-child(6) { left: 88%; width: 3px; height: 3px; animation-delay: 3.4s; }
}
@keyframes foamPop {
  0%   { transform: scale(0) translateY(0);    opacity: 0; }
  12%  { opacity: 0.75; }
  55%  { transform: scale(1.3) translateY(-16px); opacity: 0.3; }
  100% { transform: scale(2.6) translateY(-32px); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   INNER PAGE COMPONENTS
═══════════════════════════════════════════════════════════════════ */

/* ── Page Hero (used on over-ons, diensten, cases, contact) ─────── */
.page-hero {
  position: relative;
  background: var(--color-dark-blue);
  margin-top: -136px;
  padding: calc(var(--space-24) + 136px) 0 var(--space-24);
  overflow: hidden;
}

.page-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.page-hero__blob--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(91,163,208,0.16) 0%, transparent 70%);
  top: -80px; right: -100px;
}
.page-hero__blob--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,107,53,0.09) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}

.page-hero .compass-rose {
  width: 440px; height: 440px;
  right: 4%; bottom: -80px;
  color: rgba(255,255,255,1);
  opacity: 0.04;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-light-blue);
  margin-bottom: var(--space-4);
}

.page-hero__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  max-width: 820px;
}

.page-hero__title span { color: var(--color-light-blue); }

.page-hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.60);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Team cards (over-ons) ──────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-card__avatar {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-light-blue) 100%);
  border-radius: 50%;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-md);
}

.team-card__name {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-dark-blue);
  margin-bottom: var(--space-1);
}

.team-card__role {
  font-size: var(--text-xs);
  color: var(--color-orange);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.team-card__bio {
  font-size: var(--text-sm);
  color: var(--color-mid-gray);
  line-height: 1.75;
}

/* ── Values grid (over-ons) ─────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-orange);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card:nth-child(even) { border-top-color: var(--color-light-blue); }

.value-card__icon {
  margin-bottom: var(--space-4);
  color: var(--color-orange);
}
.value-card:nth-child(even) .value-card__icon { color: var(--color-light-blue); }

.value-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: var(--space-2);
}

.value-card__desc {
  font-size: var(--text-sm);
  color: var(--color-mid-gray);
  line-height: 1.72;
}

/* ── Dienst detail blocks (diensten) ────────────────────────────── */
.dienst-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--color-border);
}
.dienst-block:last-child { border-bottom: none; }
.dienst-block--reverse .dienst-block__visual { order: -1; }

.dienst-block__icon-wrap {
  width: 60px; height: 60px;
  border-radius: var(--radius-lg);
  background: var(--color-orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.dienst-block--blue .dienst-block__icon-wrap { background: rgba(91,163,208,0.10); }

.dienst-block__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: 800;
  color: var(--color-dark-blue);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.dienst-block__desc {
  font-size: var(--text-base);
  color: var(--color-mid-gray);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.dienst-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.dienst-block__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-dark-gray);
  line-height: 1.6;
}
.dienst-block__item::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.dienst-block--blue .dienst-block__item::before { background: var(--color-light-blue); }

.dienst-block__visual {
  background: linear-gradient(135deg, var(--color-dark-blue) 0%, #1a5580 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.dienst-block__visual::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
  right: -60px; top: -60px;
}

.dienst-block__tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}

.dienst-tag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s, border-color 0.2s;
}
.dienst-tag:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.22); }

@media (max-width: 840px) {
  .dienst-block {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .dienst-block--reverse .dienst-block__visual { order: 0; }
}

/* ── Cases grid (cases) ─────────────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.case-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s ease;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.case-card__header {
  padding: var(--space-6) var(--space-6) var(--space-5);
  background: linear-gradient(135deg, var(--color-dark-blue) 0%, #1a5580 100%);
  position: relative;
  overflow: hidden;
}
.case-card__header::after {
  content: '';
  position: absolute;
  right: -30px; top: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.06);
}

.case-card__industry {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-light-blue);
  margin-bottom: var(--space-1);
}

.case-card__company {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.case-card__result-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 4px 12px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 800;
}

.case-card__body {
  padding: var(--space-6);
}

.case-card__challenge {
  font-size: var(--text-sm);
  color: var(--color-mid-gray);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

.case-card__outcomes {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.case-card__outcome {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-dark-gray);
  font-weight: 500;
  line-height: 1.5;
}
.case-card__outcome::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

@media (max-width: 720px) {
  .cases-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── Contact page layout ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: var(--space-16);
  margin-top: var(--space-12);
  align-items: start;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.contact-info-card {
  background: var(--color-dark-blue);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
}

.contact-info-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info-item:last-child { border-bottom: none; }

.contact-info-item__icon {
  width: 36px; height: 36px;
  background: rgba(91,163,208,0.15);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light-blue);
}

.contact-info-item__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.42);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-info-item__value {
  font-size: var(--text-sm);
  color: var(--color-white);
  font-weight: 500;
}

.what-happens__title {
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.what-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.what-step {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.what-step__num {
  width: 28px; height: 28px;
  background: var(--color-orange-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 1px;
}

.what-step__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 3px;
}

.what-step__desc {
  font-size: var(--text-sm);
  color: var(--color-mid-gray);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
}
