/* ═══════════════════════════════════════════════════════════════════════════
   Forms — contact, offerte-wizard, vacatures
   Prefixen: .fm- (contact/offerte) en .vc- (vacatures)
   Mobile-first, respect reduced-motion
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Shared: cinematic hero ─────────────────────────────────────── */
.fm-page,
.vc-page { --fm-radius: 20px; }

.fm-hero,
.vc-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-cream);
  padding-block: clamp(4rem, 10vw, 8rem) clamp(3.5rem, 8vw, 6rem);
  min-height: clamp(420px, 60vh, 640px);
  display: grid;
  align-items: end;
}

.fm-hero__bg,
.vc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--color-forest-dark);
}
.fm-hero__bg img,
.vc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: fm-drift 22s var(--ease) infinite alternate;
}
@keyframes fm-drift {
  from { transform: scale(1.05) translate3d(-1%, 0, 0); }
  to   { transform: scale(1.1) translate3d(2%, -1%, 0); }
}
.fm-hero__scrim,
.vc-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 24, 15, 0.15) 0%, rgba(20, 24, 15, 0.55) 55%, rgba(20, 41, 26, 0.9) 100%),
    radial-gradient(60% 60% at 20% 10%, rgba(107, 142, 78, 0.2), transparent 70%);
}

.fm-hero__inner,
.vc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.fm-crumbs,
.vc-crumbs {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 246, 240, 0.7);
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.fm-crumbs a,
.vc-crumbs a { color: inherit; opacity: 0.85; }
.fm-crumbs a:hover,
.vc-crumbs a:hover { color: var(--color-moss-light); opacity: 1; }

.fm-hero__eyebrow,
.vc-hero__eyebrow {
  color: var(--color-moss-light);
  margin-bottom: 1.25rem;
}
.fm-hero__eyebrow::before,
.vc-hero__eyebrow::before { background: currentColor; }

.fm-hero__title,
.vc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.fm-hero__title em,
.vc-hero__title em {
  font-style: italic;
  color: var(--color-moss-light);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.fm-hero__lead,
.vc-hero__lead {
  font-size: var(--step-2);
  line-height: 1.45;
  color: rgba(247, 246, 240, 0.88);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.fm-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(247, 246, 240, 0.18);
}
.fm-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 8rem;
}
.fm-hero__meta-label {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(151, 188, 98, 0.9);
}
.fm-hero__meta-value {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--color-cream);
  line-height: 1.2;
}

.vc-hero__meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

/* ─── SPLIT: form + aside (contact) ───────────────────────────────── */
.fm-split-section { padding-block: clamp(3rem, 6vw, 5rem); }
.fm-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 960px) {
  .fm-split { grid-template-columns: 1fr; }
}

/* Form wrap */
.fm-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--fm-radius);
  padding: clamp(1.5rem, 3vw, 2.75rem);
  box-shadow: 0 30px 60px -40px rgba(20, 41, 26, 0.25);
}
.fm-form-header { margin-bottom: 2rem; }
.fm-form-header__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: 0.75rem;
}
.fm-form-header__title {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}
.fm-form-header__desc {
  color: var(--color-slate);
  max-width: 44ch;
}

/* Form fields — richer than base .field */
.fm-form { gap: 1.5rem; }
.fm-field label {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  font-weight: 500;
  color: var(--color-ink);
  letter-spacing: -0.005em;
}
.fm-field input,
.fm-field textarea,
.fm-field select {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 0.95em 1.1em;
  transition:
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
  width: 100%;
}
.fm-field input::placeholder,
.fm-field textarea::placeholder {
  color: var(--color-mist);
  opacity: 0.8;
}
.fm-field input:hover,
.fm-field textarea:hover,
.fm-field select:hover { border-color: var(--color-moss); }
.fm-field input:focus,
.fm-field textarea:focus,
.fm-field select:focus {
  outline: none;
  border-color: var(--color-forest);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(107, 142, 78, 0.18);
}
.fm-field input:user-invalid,
.fm-field textarea:user-invalid,
.fm-field select:user-invalid {
  border-color: var(--color-warn);
  box-shadow: 0 0 0 4px rgba(185, 83, 27, 0.12);
}

.fm-form__foot {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}
.fm-form__note {
  font-size: var(--step--2);
  color: var(--color-slate);
  max-width: 42ch;
  line-height: 1.5;
  flex: 1 1 220px;
}
.fm-form__note a { color: var(--color-forest); text-decoration: underline; text-underline-offset: 3px; }

/* Aside */
.fm-aside {
  position: sticky;
  top: 100px;
  align-self: start;
}
.fm-aside__inner {
  background: linear-gradient(155deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
  color: var(--color-cream);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-radius: var(--fm-radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(20, 41, 26, 0.55);
}
.fm-aside__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(151, 188, 98, 0.18), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(20, 41, 26, 0.4), transparent 60%);
  pointer-events: none;
}
.fm-aside__inner > * { position: relative; z-index: 1; }

.fm-aside__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-moss-light);
  display: block;
  margin-bottom: 0.75rem;
}
.fm-aside__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--color-cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.fm-aside__phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: rgba(151, 188, 98, 0.14);
  border: 1px solid rgba(151, 188, 98, 0.35);
  border-radius: 12px;
  color: var(--color-cream);
  transition: background var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
  margin-bottom: 2rem;
}
.fm-aside__phone:hover {
  background: rgba(151, 188, 98, 0.24);
  transform: translateY(-1px);
}
.fm-aside__phone-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--color-moss-light);
}
.fm-aside__phone-number {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
  letter-spacing: -0.015em;
  display: block;
}
.fm-aside__phone-sub {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  color: rgba(247, 246, 240, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.15rem;
}

.fm-aside__channels {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: 0;
  margin: 0 0 2rem;
}
.fm-aside__channel {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(247, 246, 240, 0.12);
}
.fm-aside__channel:last-child { border-bottom: 0; padding-bottom: 0; }
.fm-aside__channel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-moss-light);
}
.fm-aside__channel-label svg { width: 14px; height: 14px; }
.fm-aside__channel-value {
  color: var(--color-cream);
  font-size: var(--step-0);
  line-height: 1.4;
  word-break: break-word;
}
a.fm-aside__channel-value { transition: color var(--dur-fast) var(--ease); }
a.fm-aside__channel-value:hover { color: var(--color-moss-light); }

.fm-aside__cert {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 246, 240, 0.15);
}
.fm-aside__cert-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.fm-aside__cert-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-moss-light);
  color: var(--color-forest-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--step--1);
  flex-shrink: 0;
}
.fm-aside__cert-body { display: flex; flex-direction: column; }
.fm-aside__cert-body strong { color: var(--color-cream); font-weight: 500; font-size: var(--step-0); }
.fm-aside__cert-body span { color: rgba(247, 246, 240, 0.7); font-size: var(--step--2); }

/* ─── Promise row (contact) ───────────────────────────────────────── */
.fm-promise {
  background: var(--color-cream-dark);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding-block: clamp(3rem, 5vw, 4rem);
}
.fm-promise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}
.fm-promise__item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fm-promise__num {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.14em;
  color: var(--color-moss);
}
.fm-promise__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.15;
  color: var(--color-ink);
  letter-spacing: -0.015em;
}
.fm-promise__desc {
  color: var(--color-slate);
  font-size: var(--step-0);
  max-width: 34ch;
}

/* ─── Map section (contact) ───────────────────────────────────────── */
.fm-map-section { padding-block: clamp(3rem, 6vw, 5rem); }
.fm-map {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
  border-radius: var(--fm-radius);
  overflow: hidden;
  min-height: 420px;
}
@media (max-width: 800px) {
  .fm-map { grid-template-columns: 1fr; }
}
.fm-map__panel {
  background: var(--color-forest);
  color: var(--color-cream);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
}
.fm-map__card { max-width: 32ch; }
.fm-map__tag {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-moss-light);
  display: block;
  margin-bottom: 0.5rem;
}
.fm-map__title {
  font-family: var(--font-display);
  font-size: var(--step-4);
  color: var(--color-cream);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.fm-map__addr {
  font-style: normal;
  color: rgba(247, 246, 240, 0.88);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.fm-map__note {
  color: rgba(247, 246, 240, 0.65);
  font-size: var(--step--1);
  margin-bottom: 1.5rem;
}
.fm-map__cta {
  color: var(--color-cream);
  border-color: rgba(247, 246, 240, 0.4);
}
.fm-map__cta:hover {
  background: var(--color-cream);
  color: var(--color-forest);
  border-color: var(--color-cream);
}
.fm-map__frame {
  background: var(--color-cream-dark);
  position: relative;
  min-height: 320px;
}
.fm-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
  display: block;
  min-height: 320px;
}

/* ═══════════════════════════════════════════════════════════════════
   WIZARD — OFFERTE
   ═══════════════════════════════════════════════════════════════════ */

.fm-wizard-section { padding-block: clamp(3rem, 6vw, 5rem); }
.fm-wizard {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--fm-radius);
  padding: clamp(1.5rem, 3vw, 3rem);
  box-shadow: 0 40px 80px -50px rgba(20, 41, 26, 0.35);
  position: relative;
  overflow: hidden;
}

/* Progress */
.fm-wizard__progress { margin-bottom: 2.5rem; }
.fm-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 1rem;
  position: relative;
}
.fm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  position: relative;
  transition: color var(--dur) var(--ease);
  color: var(--color-mist);
}
.fm-step__dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-cream-dark);
  border: 1.5px solid var(--color-line);
  color: var(--color-slate);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 600;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.fm-step__label {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-slate);
  transition: color var(--dur) var(--ease);
}
@media (max-width: 560px) {
  .fm-step__label { display: none; }
}
.fm-step.is-active .fm-step__dot {
  background: var(--color-forest);
  color: var(--color-cream);
  border-color: var(--color-forest);
  transform: scale(1.08);
}
.fm-step.is-active .fm-step__label { color: var(--color-forest); }
.fm-step.is-done .fm-step__dot {
  background: var(--color-moss);
  color: var(--color-cream);
  border-color: var(--color-moss);
}
.fm-step.is-done .fm-step__dot::before {
  content: "";
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--color-cream);
  border-bottom: 2px solid var(--color-cream);
  transform: rotate(-45deg) translateY(-2px);
}
.fm-step.is-done .fm-step__dot span,
.fm-step.is-done .fm-step__dot { font-size: 0; }
.fm-step.is-done .fm-step__label { color: var(--color-moss); }

.fm-progress-bar {
  height: 4px;
  background: var(--color-cream-dark);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.fm-progress-bar__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-moss), var(--color-forest));
  border-radius: 999px;
  transition: width var(--dur) var(--ease);
}
.fm-wizard__counter {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-slate);
  text-align: right;
}

/* Panels */
.fm-panel {
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
  animation: fm-panel-in var(--dur) var(--ease);
}
.fm-panel.is-active { display: block; }
@keyframes fm-panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.fm-panel__head { margin-bottom: 2rem; }
.fm-panel__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: 0.75rem;
}
.fm-panel__title {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 0.6rem;
  max-width: 22ch;
}
.fm-panel__desc {
  color: var(--color-slate);
  max-width: 52ch;
  line-height: 1.5;
}
.fm-panel__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.fm-panel__error {
  margin-top: 1rem;
  color: var(--color-warn);
  font-size: var(--step--1);
  font-weight: 500;
}
.fm-panel__consent {
  margin-top: 1.25rem;
  font-size: var(--step--2);
  color: var(--color-slate);
}
.fm-panel__consent a { color: var(--color-forest); text-decoration: underline; text-underline-offset: 3px; }

/* Dienst radio-cards */
.fm-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.fm-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  border: 1.5px solid var(--color-line);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.fm-card:hover {
  border-color: var(--color-moss);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -20px rgba(20, 41, 26, 0.3);
}
.fm-card__input:focus-visible + .fm-card__media,
.fm-card:focus-within {
  outline: 3px solid rgba(107, 142, 78, 0.4);
  outline-offset: 3px;
}
.fm-card.is-selected {
  border-color: var(--color-forest);
  background: var(--color-white);
  box-shadow: 0 20px 40px -20px rgba(20, 41, 26, 0.4);
}
.fm-card__media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--color-forest-dark);
}
.fm-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.fm-card:hover .fm-card__media img { transform: scale(1.05); }
.fm-card__num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.6rem;
  background: rgba(20, 24, 15, 0.7);
  color: var(--color-cream);
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.1em;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.fm-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}
.fm-card__body--alt {
  padding: 1.75rem 1.5rem;
  align-items: flex-start;
  justify-content: center;
  gap: 0.7rem;
  min-height: 100%;
}
.fm-card--alt {
  background: var(--color-cream-dark);
  border-style: dashed;
}
.fm-card__num-alt {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-cream);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1;
}
.fm-card__title {
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.2;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}
.fm-card__desc {
  color: var(--color-slate);
  font-size: var(--step--1);
  line-height: 1.45;
}
.fm-card__pick {
  display: none;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.75rem;
  color: var(--color-forest);
  font-size: var(--step--1);
  font-weight: 500;
}
.fm-card__pick svg { width: 16px; height: 16px; }
.fm-card.is-selected .fm-card__pick { display: inline-flex; }
.fm-card.is-selected::after {
  content: "";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-forest) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7f6f0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 60% no-repeat;
  z-index: 2;
}

/* Summary */
.fm-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 1.5rem;
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  margin: 0 0 1.5rem;
}
.fm-summary__row {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) 1fr;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--color-line);
}
.fm-summary__row:last-child { border-bottom: 0; padding-bottom: 0; }
@media (max-width: 500px) {
  .fm-summary__row { grid-template-columns: 1fr; gap: 0.15rem; }
}
.fm-summary__label {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-slate);
}
.fm-summary__value {
  color: var(--color-ink);
  font-size: var(--step-0);
  line-height: 1.5;
  word-break: break-word;
  white-space: pre-wrap;
}
.fm-summary__value--empty { color: var(--color-mist); font-style: italic; }

/* Wizard navigation */
.fm-wizard__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-line);
  flex-wrap: wrap;
}
.fm-nav-back { visibility: hidden; }
.fm-wizard.is-step-2 .fm-nav-back,
.fm-wizard.is-step-3 .fm-nav-back,
.fm-wizard.is-step-4 .fm-nav-back { visibility: visible; }
.fm-nav-next[hidden],
.fm-nav-submit[hidden] { display: none !important; }

/* Success */
.fm-success {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  animation: fm-panel-in var(--dur-slow) var(--ease);
}
.fm-success__mark {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-moss);
  color: var(--color-cream);
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  animation: fm-pop var(--dur-slow) var(--ease);
}
.fm-success__mark svg { width: 42px; height: 42px; }
@keyframes fm-pop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
.fm-success__title {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1rem auto;
  max-width: 20ch;
}
.fm-success__lead {
  color: var(--color-slate);
  max-width: 48ch;
  margin: 0 auto 2rem;
  line-height: 1.5;
}
.fm-success__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Trust row */
.fm-trust {
  background: var(--color-forest);
  color: var(--color-cream);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.fm-trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}
.fm-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}
.fm-trust__num {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1;
  color: var(--color-moss-light);
  flex-shrink: 0;
  letter-spacing: -0.02em;
  min-width: 3ch;
}
.fm-trust__item strong {
  display: block;
  font-family: var(--font-body);
  color: var(--color-cream);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.fm-trust__item span {
  color: rgba(247, 246, 240, 0.72);
  font-size: var(--step--1);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════
   VACATURES
   ═══════════════════════════════════════════════════════════════════ */

/* Waarom */
.vc-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.vc-why__item {
  background: var(--color-cream);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--dur) var(--ease);
}
.vc-why__item:hover { background: var(--color-cream-dark); }
.vc-why__num {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  color: var(--color-moss);
  letter-spacing: 0.14em;
}
.vc-why__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-ink);
}
.vc-why__text {
  color: var(--color-slate);
  font-size: var(--step-0);
  line-height: 1.55;
  max-width: 40ch;
}

/* Open vacature rijen */
.vc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vc-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) minmax(0, 2fr) auto;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--color-line);
  align-items: start;
}
.vc-row:last-child { border-bottom: 1px solid var(--color-line); }
@media (max-width: 780px) {
  .vc-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.vc-row__lead {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.vc-row__num {
  font-family: var(--font-display);
  font-size: var(--step-5);
  line-height: 1;
  color: var(--color-moss-light);
  letter-spacing: -0.03em;
}
.vc-row__badge {
  display: inline-block;
  padding: 0.35em 0.85em;
  background: rgba(151, 188, 98, 0.18);
  color: var(--color-forest);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.vc-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
}
.vc-row__pitch {
  color: var(--color-ink-soft);
  font-size: var(--step-1);
  line-height: 1.5;
  max-width: 58ch;
  margin-bottom: 1.25rem;
}
.vc-row__eisen {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem;
}
.vc-row__eisen li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--color-ink-soft);
  font-size: var(--step--1);
  line-height: 1.4;
}
.vc-row__eisen svg {
  width: 16px;
  height: 16px;
  color: var(--color-moss);
  flex-shrink: 0;
  margin-top: 0.2em;
}
.vc-row__meta {
  color: var(--color-slate);
  font-size: var(--step--1);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}
.vc-row__cta { display: flex; align-items: flex-start; }
.vc-row__button { white-space: nowrap; }

/* Foto/quote band */
.vc-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(360px, 45vw, 520px);
  overflow: hidden;
}
@media (max-width: 800px) {
  .vc-band { grid-template-columns: 1fr; min-height: auto; }
}
.vc-band__photo {
  position: relative;
  overflow: hidden;
  background: var(--color-forest-dark);
}
.vc-band__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}
.vc-band__quote {
  background: var(--color-forest);
  color: var(--color-cream);
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.vc-band__quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(151, 188, 98, 0.18), transparent 55%);
  pointer-events: none;
}
.vc-band__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-moss-light);
  position: relative;
}
.vc-band__text {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.2;
  font-style: italic;
  letter-spacing: -0.015em;
  color: var(--color-cream);
  max-width: 22ch;
  position: relative;
}
.vc-band__cite {
  font-size: var(--step--1);
  color: rgba(247, 246, 240, 0.7);
  position: relative;
}

/* Growth (uses existing .split) */
.vc-growth .split__panel--photo { aspect-ratio: 4 / 5; }

/* Apply-sectie */
.vc-apply {
  background: var(--color-cream-dark);
  border-top: 1px solid var(--color-line);
  scroll-margin-top: 100px;
}
.vc-apply__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) {
  .vc-apply__grid { grid-template-columns: 1fr; }
}
.vc-apply__intro {
  position: sticky;
  top: 100px;
  align-self: start;
}
.vc-apply__title {
  font-size: var(--step-5);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.vc-apply__title em {
  font-style: italic;
  color: var(--color-moss);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.vc-apply__desc {
  color: var(--color-slate);
  font-size: var(--step-1);
  line-height: 1.5;
  max-width: 40ch;
  margin-bottom: 2rem;
}
.vc-apply__contact {
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vc-apply__contact-label {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-moss);
}
.vc-apply__contact-value {
  font-family: var(--font-display);
  font-size: var(--step-3);
  color: var(--color-forest);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.vc-apply__contact-value:hover { color: var(--color-ink); }
.vc-apply__contact-mail {
  color: var(--color-ink-soft);
  font-size: var(--step--1);
  word-break: break-word;
}
.vc-apply__contact-mail:hover { color: var(--color-forest); }

.vc-apply__form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--fm-radius);
  padding: clamp(1.5rem, 3vw, 2.75rem);
  box-shadow: 0 40px 80px -50px rgba(20, 41, 26, 0.3);
}
.vc-form { gap: 1.5rem; }

.vc-form__cv-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: rgba(151, 188, 98, 0.12);
  border: 1px solid rgba(107, 142, 78, 0.35);
  border-radius: 10px;
}
.vc-form__cv-hint svg {
  width: 22px;
  height: 22px;
  color: var(--color-forest);
  flex-shrink: 0;
  margin-top: 0.2em;
}
.vc-form__cv-hint strong {
  display: block;
  color: var(--color-forest-dark);
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.vc-form__cv-hint span {
  color: var(--color-ink-soft);
  font-size: var(--step--1);
}
.vc-form__cv-hint a {
  color: var(--color-forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════════════
   Reduced motion
   ═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .fm-hero__bg img,
  .vc-hero__bg img { animation: none; transform: none; }
  .fm-card:hover { transform: none; }
  .fm-panel { animation: none; }
  .fm-success__mark { animation: none; }
  .fm-card:hover .fm-card__media img { transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   Small-screen polish
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .fm-hero__title,
  .vc-hero__title { font-size: clamp(2.1rem, 8vw, 3rem); }
  .fm-wizard { padding: 1.25rem; }
  .fm-form-wrap,
  .vc-apply__form-wrap { padding: 1.25rem; border-radius: 14px; }
  .fm-aside { position: static; }
  .fm-aside__phone-number { font-size: var(--step-2); }
  .vc-row__num { font-size: var(--step-4); }
  .fm-wizard__nav .btn { flex: 1 1 auto; }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE OPTIMISATIES (Agent M5)
   Forms zijn kritiek voor conversie op mobiel — deze sectie fixt:
   - iOS zoom-in bij focus (font-size 16px op inputs)
   - Split → stack, sticky wizard-nav, tap-targets, safe-area
   - Radio-cards touch-feedback, vacatures row-stack
   ═══════════════════════════════════════════════════════════════════ */

/* ─── 900px: tablet-landscape → stack splits, kleinere heroes ─────── */
@media (max-width: 900px) {
  .fm-hero,
  .vc-hero {
    min-height: 60svh;
    padding-block: clamp(3rem, 8vw, 5rem) clamp(2.5rem, 6vw, 4rem);
  }
  .fm-hero__title,
  .vc-hero__title {
    font-size: clamp(2.2rem, 7vw, 3.4rem);
    max-width: 16ch;
  }
  .fm-hero__lead,
  .vc-hero__lead { font-size: var(--step-1); }

  .fm-split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .fm-aside {
    position: static;
    order: 2;
  }
  .fm-form-wrap { order: 1; }

  .vc-apply__intro { position: static; }

  /* Waarom-grid: 4 → 2 op tablet */
  .vc-why__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── 768px: tablet-portrait → compactere heroes, band stack ──────── */
@media (max-width: 768px) {
  .fm-hero__meta {
    gap: 1rem;
    padding-top: 1.25rem;
  }
  .fm-hero__meta-item {
    flex: 1 1 100%;
    min-width: 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(247, 246, 240, 0.12);
  }
  .fm-hero__meta-item:last-child { border-bottom: 0; padding-bottom: 0; }
  .fm-hero__meta-value { font-size: var(--step-0); }

  /* Map: stack + compact iframe */
  .fm-map {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .fm-map__frame,
  .fm-map__frame iframe {
    min-height: 260px;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  /* Vacatures foto/quote band → stack */
  .vc-band { grid-template-columns: 1fr; min-height: auto; }
  .vc-band__photo { aspect-ratio: 16 / 10; }
  .vc-band__photo img { min-height: 0; }

  /* Growth split (uses .split) → foto-panel min-height */
  .vc-growth .split__panel--photo {
    aspect-ratio: 4 / 3;
    min-height: 260px;
  }
}

/* ─── 640px: mobile — form-rows stack, hero-meta 1-col ────────────── */
@media (max-width: 640px) {
  /* Form-rows: alle 2-col → 1-col */
  .fm-form .form-row,
  .vc-form .form-row,
  .fm-wizard__form .form-row {
    grid-template-columns: 1fr;
    display: grid;
    gap: 1.25rem;
  }

  /* iOS zoom-fix: alle inputs minstens 16px */
  .fm-field input,
  .fm-field textarea,
  .fm-field select,
  .vc-form input,
  .vc-form textarea,
  .vc-form select {
    font-size: 16px;
    padding: 0.9em 1em;
    border-radius: 10px;
  }
  /* Textarea comfortabel voor duim-typing */
  .fm-field textarea,
  .vc-form textarea { min-height: 160px; }

  /* Placeholder contrast iets verhoogd */
  .fm-field input::placeholder,
  .fm-field textarea::placeholder {
    color: var(--color-slate);
    opacity: 0.7;
  }

  /* Submit knop full-width */
  .fm-form__foot {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .fm-form__foot .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
  .fm-form__note {
    flex: 0 1 auto;
    text-align: center;
    order: 2;
  }

  /* ─── Contact aside: compacter & phone-CTA prominent ─── */
  .fm-aside__inner {
    padding: 1.5rem 1.35rem;
    border-radius: 16px;
  }
  .fm-aside__title { font-size: var(--step-1); margin-bottom: 1.15rem; }
  .fm-aside__phone {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
    padding: 1.4rem 1rem;
    min-height: 92px;
    border-radius: 14px;
  }
  .fm-aside__phone-icon { width: 32px; height: 32px; }
  .fm-aside__phone-number {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
    letter-spacing: -0.02em;
  }
  .fm-aside__phone-sub { font-size: 11px; letter-spacing: 0.14em; }

  /* Channels compact */
  .fm-aside__channels { gap: 1rem; margin-bottom: 1.5rem; }
  .fm-aside__channel { padding-bottom: 1rem; gap: 0.3rem; }
  .fm-aside__channel-value { font-size: var(--step-0); }

  /* ─── Wizard: progress sticky top ─── */
  .fm-wizard { padding: 1.25rem 1rem; border-radius: 14px; }
  .fm-wizard__progress {
    position: sticky;
    top: 0;
    z-index: 5;
    background: var(--color-white);
    padding: 0.85rem 0 0.6rem;
    margin: -0.5rem 0 1.5rem;
    border-bottom: 1px solid var(--color-line);
  }
  .fm-step__dot { width: 30px; height: 30px; font-size: var(--step--2); }
  .fm-progress-bar { height: 3px; margin-bottom: 0.5rem; }
  .fm-wizard__counter {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-align: center;
  }

  /* Panels compacter */
  .fm-panel__head { margin-bottom: 1.25rem; }
  .fm-panel__title {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
    max-width: none;
  }
  .fm-panel__desc { font-size: var(--step-0); }
  .fm-panel__grid { gap: 1rem; }

  /* Radio-cards: 1-col, full-width, touch-friendly */
  .fm-cards {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .fm-card { min-height: 96px; border-radius: 12px; }
  .fm-card__media {
    aspect-ratio: 3 / 2;
  }
  .fm-card__body {
    padding: 1rem 1.15rem 1.2rem;
    gap: 0.35rem;
  }
  .fm-card__title { font-size: var(--step-0); }
  .fm-card__desc { font-size: var(--step--1); }
  .fm-card__body--alt {
    padding: 1.35rem 1.15rem;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .fm-card__num-alt { width: 38px; height: 38px; font-size: var(--step-1); }
  /* Touch feedback: iets nadrukkelijker bij active */
  .fm-card:active,
  .fm-card.is-tapped {
    transform: scale(0.985);
    border-color: var(--color-moss);
    background: rgba(151, 188, 98, 0.08);
  }
  .fm-card.is-selected::after {
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
  }

  /* Wizard sticky bottom-nav */
  .fm-wizard--mobile .fm-wizard__nav,
  .fm-wizard__nav {
    position: sticky;
    bottom: 0;
    background: var(--color-white);
    margin: 1.5rem -1rem -1.25rem;
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--color-line);
    box-shadow: 0 -12px 30px -20px rgba(20, 41, 26, 0.28);
    z-index: 6;
    flex-wrap: nowrap;
    gap: 0.6rem;
  }
  .fm-nav-back {
    background: transparent;
    border-color: transparent;
    padding-inline: 0.75rem;
    flex: 0 0 auto;
    min-height: 48px;
  }
  .fm-nav-back .btn__arrow { display: none; }
  .fm-nav-next,
  .fm-nav-submit {
    flex: 1 1 auto;
    justify-content: center;
    min-height: 52px;
    font-weight: 600;
  }
  /* Body padding voor sticky nav wanneer wizard actief */
  body.fm-wizard-active { padding-bottom: 88px; }

  /* Summary: alle rows 1-col + horizontaal scroll safety */
  .fm-summary {
    padding: 1.15rem 1rem;
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .fm-summary__row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    padding-bottom: 0.75rem;
  }
  .fm-summary__label { font-size: 10px; letter-spacing: 0.12em; }

  /* Success: krappere padding op mobile */
  .fm-success { padding: 2rem 0.5rem; }
  .fm-success__title { font-size: var(--step-3); }
  .fm-success__actions { flex-direction: column; align-items: stretch; }
  .fm-success__actions .btn { width: 100%; justify-content: center; min-height: 52px; }

  /* ─── VACATURES ─── */
  .vc-hero__meta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }
  .vc-hero__meta .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* Waarom: 2 → 1 op mobile */
  .vc-why__grid { grid-template-columns: 1fr; }

  /* Open vacatures — row-stack */
  .vc-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .vc-row__lead {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .vc-row__num { font-size: var(--step-4); }
  .vc-row__title {
    font-size: clamp(1.5rem, 5.5vw, 1.9rem);
    margin-bottom: 0.5rem;
  }
  .vc-row__pitch { font-size: var(--step-0); margin-bottom: 1rem; }
  .vc-row__eisen {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
  }
  .vc-row__eisen li { font-size: var(--step--1); }
  .vc-row__cta { width: 100%; }
  .vc-row__button {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* CV-hint prominent */
  .vc-form__cv-hint {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 0.6rem;
  }
  .vc-form__cv-hint svg { width: 24px; height: 24px; }

  /* Apply-form full-width, geen sticky */
  .vc-apply__grid { gap: 1.5rem; }
  .vc-apply__intro { position: static; margin-bottom: 0.5rem; }
  .vc-apply__title { font-size: var(--step-4); }
  .vc-apply__contact { padding: 1.15rem; }
  .vc-apply__contact-value { font-size: var(--step-2); }

  /* Promise & trust rows compact */
  .fm-promise__grid,
  .fm-trust__grid { gap: 1.5rem; }
  .fm-trust__num { font-size: var(--step-3); min-width: 2.4ch; }
}

/* ─── 480px: kleine mobile — dot-only wizard, tighter spacing ─────── */
@media (max-width: 480px) {
  .fm-hero,
  .vc-hero {
    padding-block: 2.5rem 2rem;
    min-height: 58svh;
  }
  .fm-hero__title,
  .vc-hero__title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    margin-bottom: 1rem;
  }
  .fm-hero__lead,
  .vc-hero__lead { font-size: var(--step-0); margin-bottom: 1.25rem; }

  /* Wizard step-labels verbergen, alleen dots + counter */
  .fm-step__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .fm-steps { gap: 0.35rem; }
  .fm-step__dot { width: 28px; height: 28px; font-size: 11px; }

  .fm-panel__title { font-size: clamp(1.45rem, 6vw, 1.85rem); }
  .fm-form-header__title { font-size: var(--step-2); }

  /* Card num-badge kleiner */
  .fm-card__num { top: 0.6rem; left: 0.6rem; font-size: 10px; padding: 0.25rem 0.5rem; }

  .fm-map__title { font-size: var(--step-3); }
  .fm-map__panel { padding: 1.25rem; }

  .vc-apply__title { font-size: var(--step-3); }
  .fm-success__mark { width: 68px; height: 68px; }
  .fm-success__mark svg { width: 34px; height: 34px; }
}

/* ─── 380px: extra-small phones — verdere reductie ─────────────────── */
@media (max-width: 380px) {
  .fm-hero__title,
  .vc-hero__title { font-size: 1.75rem; letter-spacing: -0.02em; }
  .fm-panel__title { font-size: 1.4rem; }
  .fm-aside__phone-number { font-size: 1.55rem; }
  .fm-wizard { padding: 1rem 0.85rem; }
  .fm-form-wrap,
  .vc-apply__form-wrap { padding: 1rem; }
  .fm-wizard__nav {
    margin-inline: -0.85rem;
    padding-inline: 0.85rem;
  }
  .fm-nav-back { padding-inline: 0.5rem; font-size: var(--step--1); }
  .fm-card__body { padding: 0.85rem 1rem 1rem; }
  .vc-row__num { font-size: var(--step-3); }
}

/* ─── Touch-only refinements (geen hover) ─────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  .fm-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--color-line);
  }
  .fm-card:hover .fm-card__media img { transform: none; }
  .fm-card.is-selected {
    border-color: var(--color-forest);
    box-shadow: 0 12px 24px -14px rgba(20, 41, 26, 0.35);
  }
  .fm-aside__phone:hover { transform: none; }
  /* Zorg dat tap-highlight subtiel is */
  .fm-card,
  .btn,
  .vc-row__button,
  .fm-aside__phone {
    -webkit-tap-highlight-color: rgba(107, 142, 78, 0.15);
  }
}

/* ─── Reduced motion overrides voor mobile behavior ───────────────── */
@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .fm-card:active { transform: none; }
}
