/* =============================================================================
   FLEX CARE PROFESSIONALS — Main Stylesheet
   Brand: #003479 (deep navy)  Accent: #06B6D4 (cyan)
   Fonts: Manrope (headings) + Inter (body)
   ============================================================================= */

:root {
  /* Brand — exact colors from FCP logo */
  --brand: #003479;
  --brand-700: #002351;
  --brand-500: #1956b3;
  --brand-300: #4F7BCC;
  --accent: #00c2cb;
  --accent-600: #009ba2;
  --accent-300: #8ce6ec;
  --accent-2: #e0e0e0; /* klant accent 2 — lichte borders/dividers */

  /* Warm secondary — for human/care touch */
  --warm: #FF8A5B;
  --warm-soft: #FFF0E8;

  /* Neutrals */
  --ink: #0F172A;
  --ink-soft: #1E293B;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --bg: #ffffff;
  --bg-tint: #F4F8FC;
  --bg-warm: #FFFBF7;

  /* Effects */
  --ring: 0 0 0 4px rgba(0, 180, 200, .25);
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 2px 6px rgba(15,23,42,.04);
  --shadow-md: 0 6px 16px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 24px 48px rgba(0,40,120,.14), 0 8px 16px rgba(0,40,120,.08);
  --shadow-glow: 0 12px 40px rgba(0,180,200,.18);

  /* Motion */
  --ease: cubic-bezier(.19, 1, .22, 1);
  --duration: 1400ms;
  --stagger: 220ms;

  /* Layout */
  --container: 1280px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
}

/* ---------- Reset & base ----------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--accent-600); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
h1, h2, h3, h4 {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.15;
}
h1 { font-weight: 800; font-size: clamp(36px, 5.4vw, 72px); }
h2 { font-weight: 700; font-size: clamp(28px, 3.6vw, 48px); }
h3 { font-weight: 700; font-size: clamp(22px, 2.2vw, 28px); }
h4 { font-weight: 700; font-size: 18px; }
p  { margin: 0 0 1em; color: var(--slate-700); }
.eyebrow {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--accent); border-radius: 2px;
}

/* Container */
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 7vw, 88px) 0; }
.section--tinted { background: var(--bg-tint); }
.section--dark {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.85); }
.section--dark .eyebrow { color: var(--accent-300); }
.section--dark .eyebrow::before { background: var(--accent-300); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
  min-height: 48px;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: #002a63;
  box-shadow: 0 4px 14px rgba(6,182,212,.35);
}
.btn--primary:hover { background: transparent; color: var(--accent); border-color: var(--accent); transform: translateY(-1px); box-shadow: none; }
.btn--brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,52,121,.25);
}
.btn--brand:hover { background: transparent; color: var(--brand); border-color: var(--brand); transform: translateY(-1px); box-shadow: none; }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn--ghost:hover { background: #fff; color: var(--brand); border-color: #fff; transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--slate-300);
}
.btn--outline:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-1px); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Sticky Nav ---------- */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--slate-200);
  box-shadow: 0 1px 0 rgba(15,23,42,.04);
  background: rgba(255,255,255,.92);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.nav__logo img { height: 44px; width: auto; }
.nav__menu {
  display: flex; align-items: center; gap: 28px; list-style: none; padding: 0; margin: 0;
}
.nav__menu a {
  color: var(--ink-soft);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 8px 2px;
  transition: color .2s var(--ease);
}
.nav__menu a:hover { color: var(--brand); }
.nav__menu a.active { color: var(--brand); }
.nav__menu a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--ink-soft);
}
.nav__phone:hover { color: var(--brand); }
/* Old hamburger rules removed — see nav redesign at end of file */

@media (max-width: 960px) {
  .nav__menu, .nav__phone { display: none; }
  /* display rule removed */
  .nav__mobile {
    position: fixed; inset: 64px 0 0 0;
    background: #fff;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
    padding: 32px 24px 120px;
    z-index: 999;
  }
  .nav__mobile.is-open { transform: translateX(0); }
  .nav__mobile ul { list-style: none; padding: 0; margin: 0 0 24px; }
  .nav__mobile a {
    display: block; padding: 16px 4px;
    border-bottom: 1px solid var(--slate-200);
    color: var(--ink); font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 18px;
  }
  .nav__mobile .btn { width: 100%; margin-top: 16px; }
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--brand);
  color: #fff;
  overflow: hidden;
}
.hero__slide {
  grid-column: 1; grid-row: 1;
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 112px) 0 clamp(64px, 9vw, 140px);
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transform-origin: center;
}
.hero__slide.is-active .hero__bg {
  animation: kenburns 8000ms var(--ease) both;
}
@keyframes kenburns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.12); }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(6,182,212,.18), transparent 50%),
    linear-gradient(120deg, rgba(0,30,92,.92) 0%, rgba(0,52,121,.78) 45%, rgba(0,52,121,.55) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent-300);
  padding: 8px 14px;
  border: 1px solid rgba(103,232,249,.4);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-300);
  box-shadow: 0 0 12px var(--accent-300);
}
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--accent-300); }
.hero__subline {
  font-size: clamp(17px, 1.6vw, 21px);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 600px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero text + image reveals */
.hero__slide.is-active .reveal-text { animation: revealText var(--duration) var(--ease) both; }
.hero__slide.is-active .reveal-text--d1 { animation-delay: 80ms; }
.hero__slide.is-active .reveal-text--d2 { animation-delay: 240ms; }
.hero__slide.is-active .reveal-text--d3 { animation-delay: 380ms; }
.hero__slide.is-active .reveal-text--d4 { animation-delay: 520ms; }
@keyframes revealText {
  from { transform: translateX(-80px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.hero__slide.is-active .hero__bg {
  animation: kenburns 8000ms var(--ease) both, mask-reveal 1400ms var(--ease) both;
}
@keyframes mask-reveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

/* Hero pagination */
.hero__pager {
  position: absolute; left: 0; right: 0; bottom: 32px;
  display: flex; justify-content: center; gap: 10px; z-index: 3;
}
.hero__pager button {
  width: 36px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.3);
  transition: background .3s var(--ease), width .3s var(--ease);
  padding: 0;
}
.hero__pager button.is-active { background: var(--accent); width: 64px; }

/* Scroll cue */
.hero__scroll {
  position: absolute; right: 24px; bottom: 32px; z-index: 3;
  color: rgba(255,255,255,.7); font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase;
  writing-mode: vertical-rl; transform: rotate(180deg);
  display: flex; align-items: center; gap: 12px;
}
.hero__scroll::after { content: ""; width: 1px; height: 36px; background: rgba(255,255,255,.4); }
@media (max-width: 768px) { .hero__scroll { display: none; } }

/* Hero SVG bg patterns (used inline as data URI alt) */
.hero__pattern {
  position: absolute; inset: 0; z-index: 1;
  opacity: .15; mix-blend-mode: screen;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.6) 1px, transparent 0);
  background-size: 28px 28px;
}

/* ---------- Subpage hero (50vh) ---------- */
.subhero {
  position: relative;
  min-height: 50vh;
  display: grid; align-items: center;
  background: var(--brand);
  color: #fff;
  overflow: hidden;
  padding: clamp(48px, 6vw, 80px) 0;
}
.subhero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  animation: kenburns-soft 12s var(--ease) both;
}
@keyframes kenburns-soft {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}
.subhero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(0,30,92,.92), rgba(10,61,158,.7));
}
.subhero__pattern {
  position: absolute; inset: 0; z-index: 1; opacity: .12;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.6) 1px, transparent 0);
  background-size: 24px 24px;
}
.subhero__inner { position: relative; z-index: 2; max-width: 820px; }
.subhero h1 { color: #fff; margin-bottom: 14px; }
.subhero__subline { color: rgba(255,255,255,.85); font-size: 18px; max-width: 640px; }
.crumbs {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 22px;
  font-size: 13px; letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  font-family: 'Manrope', sans-serif; font-weight: 600;
}
.crumbs a { color: rgba(255,255,255,.85); }
.crumbs a:hover { color: #fff; }
.crumbs__sep { opacity: .5; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-500) 100%);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: #fff;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--brand);
}
.card__link:hover { color: var(--accent-600); gap: 10px; }

/* Service / Sector cards with image header */
.media-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.media-card:hover .media-card__img { transform: scale(1.06); }
.media-card__media {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-500) 100%);
}
.media-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.media-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.media-card__body h3 { margin-bottom: 8px; }
.media-card__meta {
  font-size: 13px; color: var(--slate-500); margin-bottom: 12px;
  font-family: 'Manrope', sans-serif; font-weight: 600;
  letter-spacing: .04em;
}
.media-card__body p { font-size: 15px; flex: 1; }

/* Grids */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) {
  .grid--3, .grid--6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--6 { grid-template-columns: 1fr; }
}

/* Two-column intro */
.duo {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center;
}
.duo--reverse { grid-template-columns: 1fr 1.05fr; }
.duo--reverse .duo__media { order: -1; }
@media (max-width: 900px) {
  .duo, .duo--reverse { grid-template-columns: 1fr; }
  .duo--reverse .duo__media { order: 0; }
}
.duo__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-500) 100%);
  box-shadow: var(--shadow-lg);
}
.duo__media img { width: 100%; height: 100%; object-fit: cover; }

/* USP checklist */
.checklist { list-style: none; padding: 0; margin: 24px 0 32px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-200);
  font-size: 16px;
  color: var(--ink);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/></svg>") center / contain no-repeat;
  border-radius: 6px;
  margin-top: 2px;
}

/* ---------- Why us — feature grid ---------- */
.feature {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.feature::before {
  content: ""; position: absolute; left: 28px; top: 0; width: 40px; height: 3px;
  background: var(--accent); border-radius: 0 0 3px 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.feature:hover::before { transform: scaleX(1); }
.feature__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(6,182,212,.10);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { font-size: 15px; margin: 0; }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker__track {
  display: flex; gap: 48px;
  animation: ticker-scroll 60s linear infinite;
  width: max-content;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: -.01em;
  color: rgba(255,255,255,.7);
  display: inline-flex; align-items: center; gap: 48px;
  flex-shrink: 0;
}
.ticker__item::after {
  content: ""; width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
}
@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Werkwijze (steps) ---------- */
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  position: relative;
}
.steps::before {
  content: ""; position: absolute; left: 7%; right: 7%; top: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--slate-300) 0%, var(--accent) 50%, var(--slate-300) 100%);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step__num {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--slate-200);
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 26px;
  color: var(--brand);
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.step:hover .step__num { transform: scale(1.08); border-color: var(--accent); color: var(--accent-600); }
.step h4 { margin-bottom: 6px; }
.step p { font-size: 14px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .steps::before {
    left: 36px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, var(--slate-300) 0%, var(--accent) 50%, var(--slate-300) 100%);
  }
  .step { display: grid; grid-template-columns: 72px 1fr; align-items: center; text-align: left; gap: 20px; }
  .step__num { margin: 0; }
}

/* ---------- Reviews ---------- */
.review {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.review__stars { display: inline-flex; gap: 2px; color: var(--accent); }
.review__stars svg { width: 18px; height: 18px; }
.review__quote {
  font-size: 17px; line-height: 1.55; color: var(--ink);
  font-family: 'Manrope', sans-serif; font-weight: 500;
  margin: 0;
}
.review__author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.review__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  display: grid; place-items: center;
  color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px;
}
.review__name { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--ink); font-size: 15px; }
.review__role { font-size: 13px; color: var(--slate-500); }

/* ---------- Form ---------- */
.form-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start;
}
@media (max-width: 900px) { .form-wrap { grid-template-columns: 1fr; } }
.form-usp h2 { margin-bottom: 20px; }
.form-usp .checklist li { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 16px; }

.form {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: grid; gap: 16px;
}
.form__row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px;
  color: var(--ink-soft); margin-bottom: 6px;
  letter-spacing: .02em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  background: var(--slate-50);
  font: inherit;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: var(--ring);
}
.field textarea { min-height: 130px; resize: vertical; }
.field--full { grid-column: 1 / -1; }
.form .btn { justify-self: start; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--slate-500); margin-top: 4px; }

/* Radio group */
.radios { display: flex; gap: 10px; flex-wrap: wrap; }
.radios label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-pill);
  background: var(--slate-50);
  cursor: pointer;
  font-size: 14px; font-weight: 600;
  font-family: 'Manrope', sans-serif;
  transition: all .2s var(--ease);
}
.radios label:hover { border-color: var(--accent); }
.radios input { display: none; }
.radios input:checked + span { color: var(--brand); }
.radios input:checked ~ * + label, .radios label:has(input:checked) {
  background: var(--brand); color: #fff; border-color: var(--brand);
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--slate-200);
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18px;
  color: var(--ink);
  text-align: left;
}
.faq__q:hover { color: var(--brand); }
.faq__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--slate-100);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  color: var(--brand);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; transition: transform .35s var(--ease); }
.faq__icon { position: relative; }
.faq__item.is-open .faq__icon { background: var(--accent); color: #fff; transform: rotate(180deg); }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq__a-inner { padding: 0 4px 22px; color: var(--slate-700); font-size: 16px; }
.faq__item.is-open .faq__a { max-height: 600px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(6,182,212,.18), transparent 60%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff;
  border-radius: 0;
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; opacity: .06;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-band h2 { color: #fff; max-width: 700px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 8px 0 0; max-width: 560px; }

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #061a39 0%, #03102a 100%);
  color: #cbd5e1;
  padding-top: 80px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 60px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.footer__brand img { height: 50px; margin-bottom: 18px; }
.footer__brand p { color: rgba(203,213,225,.8); font-size: 14px; max-width: 320px; }
.footer h4 {
  color: #fff; font-size: 14px; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: rgba(203,213,225,.8); font-size: 14px; }
.footer a:hover { color: var(--accent-300); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.footer__contact svg { flex-shrink: 0; margin-top: 3px; color: var(--accent-300); width: 16px; height: 16px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-size: 13px; color: rgba(203,213,225,.6);
}
.footer__bottom a { color: rgba(203,213,225,.7); }
.footer__bottom a:hover { color: var(--accent-300); }
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- WhatsApp widget ---------- */
.wa-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9998;
}
.wa-btn {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 14px 40px rgba(37,211,102,.55); }
.wa-btn svg { width: 30px; height: 30px; color: #fff; }
/* WhatsApp button: static, no pulse (per client request) */
.wa-btn::before, .wa-btn::after { content: none; display: none; }
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%; transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px; font-family: 'Manrope', sans-serif; font-weight: 600;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.wa-tooltip::after {
  content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--ink);
}
.wa-widget:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(-4px); }
@media (max-width: 768px) {
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-btn { width: 56px; height: 56px; }
  .wa-tooltip { display: none; }
}

/* ---------- Language switcher ---------- */
.lang {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 9998;
}
.lang__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.lang__btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.lang__flag { font-size: 16px; line-height: 1; }
.lang__menu {
  position: absolute;
  bottom: calc(100% + 10px); left: 0;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  display: grid; gap: 2px;
  min-width: 180px;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.lang.is-open .lang__menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang__menu button {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px;
  color: var(--ink); text-align: left;
  transition: background .2s var(--ease);
  width: 100%;
}
.lang__menu button:hover { background: var(--slate-100); }
.lang__menu button.is-active { background: var(--brand); color: #fff; }
@media (max-width: 768px) {
  .lang { bottom: 16px; left: 16px; }
}

/* Old auto-play reveal block removed — new scroll-triggered system at end of file */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js-anim .r-text, .js-anim .r-img, .js-anim .r-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
}

/* ---------- Helpers ---------- */
.text-center { text-align: center; }
.no-bullets { list-style: none; padding: 0; margin: 0; }
.divider { height: 1px; background: var(--slate-200); margin: 48px 0; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(6,182,212,.12);
  color: var(--accent-600);
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .04em; text-transform: uppercase;
}
.tag--brand { background: rgba(0,52,121,.08); color: var(--brand); }

/* Tip thumb */
.article-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card__thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}
.article-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-card__meta {
  display: flex; gap: 14px;
  font-size: 12px; color: var(--slate-500);
  font-family: 'Manrope', sans-serif; font-weight: 600;
  margin-bottom: 12px;
}
.article-card h3 { font-size: 20px; margin-bottom: 8px; }
.article-card p { font-size: 14px; flex: 1; }

/* Map placeholder */
.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  aspect-ratio: 16/9;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Process (3 step) on dienst pages */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .process { grid-template-columns: 1fr; } }
.process__item {
  padding: 28px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: #fff;
  position: relative;
}
.process__num {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.process__item h4 { font-size: 18px; margin-bottom: 6px; }
.process__item p { font-size: 14px; margin: 0; }

/* Sector tag pills */
.sector-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.meta-pill {
  background: var(--slate-100); color: var(--ink-soft);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-family: 'Manrope', sans-serif; font-weight: 600;
}

/* RTL support */
[dir="rtl"] .reveal-text { animation-name: revealTextRTL; }
@keyframes revealTextRTL {
  from { transform: translateX(80px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
/* RTL mirroring: text comes from RIGHT in RTL, images from LEFT */
.js-anim [dir="rtl"] .r-text, [dir="rtl"] .js-anim .r-text { transform: translateX(50px); }
.js-anim [dir="rtl"] .r-img, [dir="rtl"] .js-anim .r-img { transform: translateX(-50px); }
[dir="rtl"] .nav__menu a.active::after { right: 0; left: 0; }
[dir="rtl"] .wa-widget { right: auto; left: 24px; }
[dir="rtl"] .lang { left: auto; right: 24px; }
[dir="rtl"] .lang__menu { left: auto; right: 0; }

/* Print + accessibility focus */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Mobile padding tweaks */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .form { padding: 24px; }
  .card, .feature, .review { padding: 22px; }
  .nav__inner { padding: 10px 0; }
  .nav__logo img { height: 36px; }
}


/* =============================================================================
   NEW: Dual-funnel components, urgency strip, audience cards
   ============================================================================= */

/* Urgency strip — top of every page */
.urgency {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-500) 100%);
  color: #fff;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.urgency::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(255,255,255,.03) 40px, rgba(255,255,255,.03) 80px);
  pointer-events: none;
}
.urgency__inner {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  position: relative; z-index: 1;
}
.urgency__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-300);
  box-shadow: 0 0 0 0 var(--accent-300);
  animation: urgency-pulse 2s var(--ease) infinite;
}
@keyframes urgency-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(127,224,234,.7); }
  100% { box-shadow: 0 0 0 14px rgba(127,224,234,0); }
}
.urgency a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed rgba(255,255,255,.4);
  padding-bottom: 1px;
}
.urgency a:hover { color: var(--accent-300); border-color: var(--accent-300); }
@media (max-width: 600px) {
  .urgency__inner { font-size: 12.5px; }
  .urgency__inner .urgency__sep { display: none; }
}

/* Hero rebuild: dual-audience focus */
.hero-v2 {
  position: relative;
  background: var(--brand);
  color: #fff;
  overflow: hidden;
  padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 110px);
}
.hero-v2__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(0,180,200,.35), transparent 70%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(10,61,158,.5), transparent 70%),
    linear-gradient(135deg, #001b54 0%, #003479 50%, #1956b3 100%);
}
.hero-v2__dots {
  position: absolute; inset: 0; z-index: 1; opacity: .12;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.7) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.hero-v2__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-v2__inner { grid-template-columns: 1fr; gap: 48px; }
}
.hero-v2__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent-300);
  padding: 8px 14px;
  border: 1px solid rgba(127,224,234,.4);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-v2__eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-300);
  box-shadow: 0 0 12px var(--accent-300);
}
.hero-v2 h1 {
  color: #fff;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-v2 h1 .accent { color: var(--accent-300); }
.hero-v2__sub {
  font-size: clamp(17px, 1.6vw, 19px);
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-v2__trust {
  display: flex; gap: 22px;
  flex-wrap: wrap;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-v2__trust span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-v2__trust svg { width: 16px; height: 16px; color: var(--accent-300); flex-shrink: 0; }

/* Dual audience cards — the heart of the funnel */
.aud-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.aud-card {
  display: block;
  padding: 26px 26px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.aud-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.1);
  border-color: var(--accent-300);
  color: #fff;
}
.aud-card__type {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-300);
  margin-bottom: 14px;
}
.aud-card__type::before {
  content: ""; width: 22px; height: 1px; background: var(--accent-300);
}
.aud-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}
.aud-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  margin: 0 0 18px;
}
.aud-card__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #002351;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.aud-card:hover .aud-card__cta {
  background: var(--accent-300);
  color: #002351;
  transform: translateX(2px);
}
.aud-card__cta-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.aud-card:hover .aud-card__cta-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.6);
}

/* Big logo mark in hero corner */
.hero-v2__logo-bg {
  position: absolute;
  right: -180px; bottom: -180px;
  width: 640px; height: 640px;
  opacity: .05;
  pointer-events: none;
  z-index: 1;
}
.hero-v2__logo-bg img {
  width: 100%; height: 100%; object-fit: contain;
}

/* Trust strip below hero */
.trust-strip {
  background: var(--slate-50);
  padding: 28px 0;
  border-bottom: 1px solid var(--slate-200);
}
.trust-strip__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  font-family: 'Manrope', sans-serif;
}
.trust-strip__item {
  display: flex; align-items: center; gap: 12px;
  flex: 1; min-width: 200px;
}
.trust-strip__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(0,180,200,.10);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-strip__icon svg { width: 22px; height: 22px; }
.trust-strip__num {
  font-weight: 800; font-size: 22px;
  color: var(--brand);
  font-family: 'Manrope', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}
.trust-strip__label { font-size: 13px; color: var(--slate-500); font-weight: 600; }

/* Audience-segmented sections */
.aud-section {
  position: relative;
}
.aud-section--inst {
  background: var(--bg-tint);
}
.aud-section--prof {
  background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
}
.aud-section__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 18px;
}
.aud-section--inst .aud-section__tag {
  background: rgba(0,40,120,.08);
  color: var(--brand);
}
.aud-section--prof .aud-section__tag {
  background: rgba(255,138,91,.12);
  color: var(--warm);
}

/* Mini intake form embedded in audience sections */
.mini-intake {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
}
.mini-intake h4 {
  font-size: 18px; margin-bottom: 16px;
}
.mini-intake__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px;
}
@media (max-width: 600px) { .mini-intake__row { grid-template-columns: 1fr; } }
.mini-intake input, .mini-intake select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  background: var(--slate-50);
  font: inherit;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.mini-intake input:focus, .mini-intake select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: var(--ring);
}
.mini-intake .btn { width: 100%; margin-top: 8px; }

/* Audience hero blocks (left side: descriptor) */
.aud-block h2 { margin-bottom: 16px; }
.aud-block ul.aud-list {
  list-style: none; padding: 0; margin: 28px 0;
  display: grid; gap: 14px;
}
.aud-block ul.aud-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 0;
}
.aud-block ul.aud-list .num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 13px;
}
.aud-section--prof .aud-block ul.aud-list .num {
  background: var(--warm);
}
.aud-block ul.aud-list strong { display: block; margin-bottom: 4px; font-family: 'Manrope', sans-serif; }

/* Nav logo: rendered as <img> for the new PNG logo */
.nav__logo img {
  height: 44px;
  width: auto;
}

/* Footer logo as round backdrop so dark navy text shows */
.footer__brand-logo {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  margin-bottom: 18px;
  padding: 8px;
}
.footer__brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer__brand-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.footer__brand-tag {
  font-size: 13px;
  color: rgba(203,213,225,.7);
  margin: 0 0 18px;
  letter-spacing: .04em;
}

/* Big logo splash for over-ons / hero accent */
.logo-watermark {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 12px 18px 12px 12px;
  border-radius: var(--radius-pill);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
}
.logo-watermark img { height: 40px; width: 40px; }


/* =============================================================================
   MOBILE OPTIMIZATIONS — comprehensive overrides for clean mobile UX
   ============================================================================= */

/* iOS safe-area support (notch + home indicator) */
@supports (padding: env(safe-area-inset-bottom)) {
  body { padding-bottom: env(safe-area-inset-bottom); }
  .wa-widget { bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px)); }
  .lang      { bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px)); }
}

/* Prevent input zoom on iOS — inputs must be ≥16px */
input, select, textarea {
  font-size: 16px;
}

/* Globally prevent horizontal overflow */
html, body { max-width: 100vw; overflow-x: hidden; }
.container { max-width: 100vw; }

/* Better tap behaviour */
a, button, [role="button"], input, select, textarea, label {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* =============================================================================
   URGENCY STRIP — mobile-first rebuild
   ============================================================================= */
.urgency {
  background: linear-gradient(90deg, var(--brand-700) 0%, var(--brand) 50%, var(--brand-500) 100%);
  color: #fff;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.urgency::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(255,255,255,.025) 40px, rgba(255,255,255,.025) 80px);
  pointer-events: none;
}
.urgency__inner {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: nowrap;
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  position: relative; z-index: 1;
  min-height: 32px;
}
.urgency__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-300);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(127,224,234,.7);
  animation: urgency-pulse 2s var(--ease) infinite;
}
.urgency__lead {
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -.005em;
}
.urgency__cta {
  display: inline-flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.urgency__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .2s var(--ease), background .2s var(--ease);
  min-height: 30px;
}
.urgency__btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.urgency__btn--primary {
  background: var(--accent);
  color: var(--brand-700);
}
.urgency__btn--primary:hover { background: var(--accent-300); color: var(--brand-700); transform: translateY(-1px); }
.urgency__btn--wa {
  background: rgba(37,211,102,.95);
  color: #fff;
}
.urgency__btn--wa:hover { background: #25D366; color: #fff; transform: translateY(-1px); }

@media (max-width: 640px) {
  .urgency { padding: 7px 0; }
  .urgency__inner { gap: 8px; font-size: 12.5px; }
  .urgency__lead { font-size: 12.5px; }
  .urgency__btn { padding: 5px 10px; font-size: 12.5px; min-height: 28px; }
  .urgency__btn svg { width: 12px; height: 12px; }
  .urgency__wa-label { display: none; }
  .urgency__btn--wa { padding: 5px 8px; }
}
@media (max-width: 380px) {
  .urgency__lead { font-size: 11.5px; }
  .urgency__lead::after { content: ""; }
  /* Compact: hide pulse on extra small */
  .urgency__pulse { display: none; }
}

/* =============================================================================
   NAV — clean mobile behaviour
   ============================================================================= */
@media (max-width: 960px) {
  .nav__inner { padding: 12px 0; gap: 12px; }
  .nav__logo img { height: 38px; width: 38px; }
  /* Hide BOTH desktop CTAs on mobile — they live in the drawer instead */
  .nav__cta .btn { display: none; }
  /* display rule removed */
  .nav__phone { display: none; }
}

/* Mobile drawer: smoother and full-bleed */
.nav__mobile {
  inset: 64px 0 0 0;
}
@media (max-width: 960px) {
  .nav__mobile {
    padding: 24px 20px calc(40px + env(safe-area-inset-bottom));
  }
  .nav__mobile ul { gap: 0; margin-bottom: 28px; }
  .nav__mobile a {
    padding: 18px 4px;
    font-size: 17px;
  }
  .nav__mobile .btn {
    width: 100%;
    margin-top: 12px;
    padding: 16px 24px;
    font-size: 15px;
    min-height: 52px;
  }
}

/* =============================================================================
   HERO V2 — mobile-clean
   ============================================================================= */
@media (max-width: 960px) {
  .hero-v2 {
    padding: 56px 0 64px;
  }
  .hero-v2__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-v2__logo-bg {
    width: 380px; height: 380px;
    right: -120px; bottom: -100px;
    opacity: .04;
  }
  .hero-v2__eyebrow {
    font-size: 11px;
    padding: 7px 12px;
    margin-bottom: 20px;
  }
  .hero-v2 h1 {
    font-size: clamp(34px, 9.5vw, 48px);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -.02em;
  }
  .hero-v2 h1 br { display: none; } /* let lines flow naturally */
  .hero-v2 h1 .accent { display: inline; }
  .hero-v2__sub {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .hero-v2__trust {
    gap: 12px 16px;
    margin-top: 28px;
    padding-top: 22px;
    font-size: 12.5px;
  }
  .hero-v2__trust span { gap: 6px; }
  .hero-v2__trust svg { width: 14px; height: 14px; }
}

/* =============================================================================
   AUD-CARDS — touch-friendly dual CTAs
   ============================================================================= */
.aud-cards { gap: 14px; }
@media (max-width: 960px) {
  .aud-card {
    padding: 22px 22px 22px;
  }
  .aud-card h3 { font-size: 22px; }
  .aud-card p { font-size: 14px; }
  .aud-card__cta {
    padding: 13px 22px;
    min-height: 46px;
  }
}
@media (max-width: 480px) {
  .aud-card { padding: 20px 18px; }
  .aud-card__type { font-size: 10.5px; letter-spacing: .18em; }
  .aud-card h3 { font-size: 20px; }
}

/* =============================================================================
   TRUST STRIP — 2x2 on mobile, 4 cols on desktop
   ============================================================================= */
.trust-strip { padding: 24px 0; }
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-strip__item {
  flex: unset; min-width: 0;
  gap: 12px;
}
@media (max-width: 900px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 18px 20px; }
}
@media (max-width: 480px) {
  .trust-strip { padding: 20px 0; }
  .trust-strip__inner { gap: 14px 16px; }
  .trust-strip__icon { width: 36px; height: 36px; }
  .trust-strip__icon svg { width: 18px; height: 18px; }
  .trust-strip__num { font-size: 18px; }
  .trust-strip__label { font-size: 12px; line-height: 1.35; }
}

/* =============================================================================
   SECTION PADDING — compact mobile
   ============================================================================= */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section--tight { padding: 44px 0; }
  .section-head { margin-bottom: 32px; max-width: 100%; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .section--tight { padding: 36px 0; }
  .section-head { margin-bottom: 28px; }
}

/* Headings tighter on mobile */
@media (max-width: 768px) {
  h1 { font-size: clamp(32px, 8vw, 48px); }
  h2 { font-size: clamp(24px, 5.5vw, 36px); }
  h3 { font-size: clamp(19px, 3.5vw, 24px); }
}

/* =============================================================================
   AUD-SECTION DUO — better mobile layout
   ============================================================================= */
.aud-block ul.aud-list { gap: 16px; margin: 24px 0 28px; }
.aud-block ul.aud-list li { padding: 0; }
.aud-block ul.aud-list .num { width: 30px; height: 30px; font-size: 12.5px; }
.aud-block ul.aud-list strong { font-size: 15.5px; }

@media (max-width: 900px) {
  /* On mobile: text block first, mini-intake second */
  .aud-section--inst .duo { display: flex; flex-direction: column; gap: 36px; }
  .aud-section--prof .duo { display: flex; flex-direction: column; gap: 36px; }
  /* For prof section, the image normally is order:-1 because of duo--reverse;
     on mobile we want text first */
  .aud-section--prof .duo--reverse .duo__media { order: 0; }
  /* Push the mini-intake / image to bottom */
  .mini-intake, .duo__media { width: 100%; }
}

/* =============================================================================
   MINI INTAKE — compact mobile
   ============================================================================= */
.mini-intake { padding: 28px 24px; border-radius: 18px; }
.mini-intake h4 { font-size: 17px; margin-bottom: 18px; line-height: 1.35; }
.mini-intake input, .mini-intake select {
  padding: 14px 14px;
  border-radius: 10px;
  font-size: 16px;
  min-height: 48px;
}
@media (max-width: 480px) {
  .mini-intake { padding: 22px 18px; }
  .mini-intake h4 { font-size: 16px; }
}

/* =============================================================================
   STEPS — single column on mobile, no connector line
   ============================================================================= */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .steps::before {
    left: 35px; top: 0; bottom: 0; width: 2px; height: auto;
    background: linear-gradient(180deg, var(--slate-300) 0%, var(--accent) 50%, var(--slate-300) 100%);
  }
  .step {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    text-align: left;
    gap: 18px;
  }
  .step__num { margin: 0; width: 64px; height: 64px; font-size: 24px; }
  .step h4 { font-size: 17px; }
  .step p { font-size: 14px; }
}

/* =============================================================================
   GRIDS — single column at proper breakpoint
   ============================================================================= */
@media (max-width: 768px) {
  .grid { gap: 20px; }
  .grid--2, .grid--3, .grid--6 { grid-template-columns: 1fr; }
}

/* =============================================================================
   CARDS / MEDIA CARDS — better mobile sizing
   ============================================================================= */
@media (max-width: 768px) {
  .card, .feature { padding: 22px 20px; }
  .feature__icon { width: 46px; height: 46px; margin-bottom: 16px; }
  .feature__icon svg { width: 22px; height: 22px; }
  .feature h3 { font-size: 18px; margin-bottom: 6px; }
  .feature p { font-size: 14px; }
  .media-card__body { padding: 20px; }
  .media-card__body h3 { font-size: 19px; }
  .media-card__body p { font-size: 14px; }
}

/* =============================================================================
   BUTTONS — proper touch targets on mobile
   ============================================================================= */
@media (max-width: 768px) {
  .btn {
    padding: 14px 22px;
    font-size: 14.5px;
    min-height: 50px;
  }
}

/* =============================================================================
   FORMS — mobile-clean
   ============================================================================= */
.form { padding: 32px 28px; }
@media (max-width: 768px) {
  .form { padding: 26px 22px; }
  .form__row { grid-template-columns: 1fr; gap: 14px; }
  .form { gap: 14px; }
  .field input, .field select, .field textarea {
    padding: 14px 14px;
    font-size: 16px;
    min-height: 48px;
  }
  .field textarea { min-height: 120px; }
  .field label { font-size: 13px; }
  .radios { gap: 8px; }
  .radios label { padding: 10px 14px; font-size: 13.5px; }
}
@media (max-width: 480px) {
  .form { padding: 22px 18px; }
}

/* form-wrap proper mobile order: text first, form second */
@media (max-width: 900px) {
  .form-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================================================
   FAQ — compact mobile
   ============================================================================= */
@media (max-width: 768px) {
  .faq__q {
    padding: 18px 2px;
    font-size: 16px;
    gap: 12px;
  }
  .faq__icon { width: 28px; height: 28px; flex-shrink: 0; }
  .faq__a-inner { font-size: 14.5px; line-height: 1.55; padding-bottom: 18px; }
}

/* =============================================================================
   CTA BAND — proper mobile stacking
   ============================================================================= */
.cta-band { padding: clamp(48px, 8vw, 96px) 0; }
.cta-band__inner { gap: 24px; }
@media (max-width: 768px) {
  .cta-band { padding: 48px 0; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-band h2 { font-size: 26px; line-height: 1.2; }
  .cta-band p { font-size: 14.5px; }
  .cta-band__inner > div:last-child { width: 100%; }
  .cta-band__inner .btn { flex: 1; min-width: 0; }
}
@media (max-width: 480px) {
  .cta-band__inner > div:last-child {
    flex-direction: column;
    width: 100%;
  }
  .cta-band__inner .btn { width: 100%; }
}

/* =============================================================================
   FOOTER — mobile-clean
   ============================================================================= */
@media (max-width: 768px) {
  .footer { padding-top: 56px; }
  .footer__grid { gap: 32px; padding-bottom: 40px; }
  .footer h4 { font-size: 13px; margin-bottom: 14px; }
  .footer ul { gap: 8px; }
  .footer a { font-size: 14px; }
  .footer__brand-logo { width: 56px; height: 56px; }
  .footer__brand-name { font-size: 17px; }
  .footer__brand-tag { font-size: 12.5px; margin-bottom: 14px; }
  .footer__brand p { font-size: 13.5px; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 12px;
    padding: 20px 0;
  }
  .footer__legal { gap: 16px; }
  .footer__legal a { font-size: 12px; }
}

/* =============================================================================
   SUBHERO — clean mobile
   ============================================================================= */
@media (max-width: 768px) {
  .subhero { min-height: auto; padding: 48px 0 56px; }
  .subhero h1 { font-size: clamp(28px, 7vw, 42px); margin-bottom: 12px; }
  .subhero__subline { font-size: 15.5px; }
  .crumbs { font-size: 12px; margin-bottom: 18px; gap: 6px; }
}

/* =============================================================================
   WHATSAPP + LANG WIDGETS — careful mobile positioning
   ============================================================================= */
@media (max-width: 768px) {
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-btn { width: 52px; height: 52px; }
  .wa-btn svg { width: 26px; height: 26px; }
  .wa-tooltip { display: none; }

  .lang { bottom: 16px; left: 16px; }
  .lang__btn { padding: 9px 14px; font-size: 12px; }
  .lang__menu { min-width: 160px; }
}

/* Avoid overlap with fixed widgets — extra bottom padding inside last sections */
@media (max-width: 768px) {
  .footer { padding-bottom: 0; }
}

/* =============================================================================
   REVIEWS — mobile-clean
   ============================================================================= */
@media (max-width: 768px) {
  .review { padding: 26px 22px; gap: 14px; }
  .review__quote { font-size: 15.5px; line-height: 1.55; }
  .review__author { gap: 12px; }
  .review__avatar { width: 44px; height: 44px; font-size: 14px; }
  .review__name { font-size: 14px; }
  .review__role { font-size: 12.5px; }
}

/* =============================================================================
   DUO LAYOUT — better mobile order/spacing
   ============================================================================= */
@media (max-width: 900px) {
  .duo, .duo--reverse { grid-template-columns: 1fr; gap: 32px; }
  .duo__media { aspect-ratio: 16/10; }
  .duo--reverse .duo__media { order: 0; }
}

/* =============================================================================
   PROCESS (3-step) — mobile single col
   ============================================================================= */
@media (max-width: 768px) {
  .process { gap: 16px; }
  .process__item { padding: 22px 20px; }
  .process__num { font-size: 36px; margin-bottom: 8px; }
  .process__item h4 { font-size: 17px; }
  .process__item p { font-size: 14px; }
}

/* =============================================================================
   CHECKLIST — mobile clean
   ============================================================================= */
@media (max-width: 768px) {
  .checklist { margin: 18px 0 24px; }
  .checklist li { font-size: 15px; padding: 10px 0; gap: 12px; }
}

/* =============================================================================
   ARTICLE CARDS (tips) — mobile clean
   ============================================================================= */
@media (max-width: 768px) {
  .article-card__body { padding: 20px; }
  .article-card h3 { font-size: 18px; margin-bottom: 6px; }
  .article-card__meta { font-size: 11.5px; gap: 10px; margin-bottom: 10px; }
}

/* =============================================================================
   IMAGES — performance & no-shift
   ============================================================================= */
img {
  height: auto;
  max-width: 100%;
}
.media-card__media img,
.duo__media img,
.subhero__bg,
.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================================================
   ANIMATIONS — disable on mobile if reduced-motion preferred
   (already handled globally, but extra safety for low-end devices)
   ============================================================================= */
@media (max-width: 480px) and (max-resolution: 1.5dppx) {
  .ticker__track { animation-duration: 80s; }
}

/* =============================================================================
   ECHTE EDGE-CASE FIXES
   ============================================================================= */
/* Eyebrow tag on small screens */
@media (max-width: 480px) {
  .eyebrow { font-size: 11px; letter-spacing: .18em; }
  .tag { font-size: 11px; padding: 4px 10px; }
}

/* Hero scroll cue: hide on mobile (already done) but also short screens */
@media (max-height: 700px) { .hero__scroll { display: none; } }

/* Prevent text overflow */
h1, h2, h3, h4, p { overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; }
h1, h2, h3 { hyphens: none; } /* but no hyphens for headlines */

/* Sticky nav on iOS Safari sometimes glitches — ensure z-index stack */
.nav { z-index: 1000; isolation: isolate; }
.urgency { z-index: 1001; position: relative; }

/* Fix focus rings inside the hero (white outline on dark) */
.hero-v2 :focus-visible, .subhero :focus-visible {
  outline-color: var(--accent-300);
}

/* Mobile menu open: prevent body scroll */
body:has(.nav__mobile.is-open) { overflow: hidden; }

/* Buttons: prevent text shrinking */
.btn span { white-space: nowrap; }

/* Trust badges in hero-v2: wrap nicely on small screens */
@media (max-width: 480px) {
  .hero-v2__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }
}

/* Ensure mobile menu CTAs are clearly distinguished */
@media (max-width: 960px) {
  .nav__mobile .btn--outline { background: transparent; border-color: var(--slate-300); color: var(--ink); }
  .nav__mobile .btn--primary { color: var(--brand-700); }
}

/* Final safety: long links shouldn't break layout */
a { word-break: normal; overflow-wrap: anywhere; }

/* End of mobile optimisations */


/* =============================================================================
   FIXED WIDGETS — final mobile polish
   ============================================================================= */
/* Make lang switcher more discreet on mobile (icon-only pill) */
@media (max-width: 768px) {
  .lang { bottom: max(16px, env(safe-area-inset-bottom)); left: 14px; }
  .lang__btn {
    padding: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 14px rgba(0,40,120,.18);
    font-size: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  /* Show only the flag emoji, hide the "NL" text and chevron */
  .lang__btn .lang__current { font-size: 18px; line-height: 1; }
  .lang__btn .lang__chev { display: none; }
  /* When the menu opens, position it relative to the smaller button */
  .lang__menu {
    bottom: 50px; left: 0;
    min-width: 200px;
    max-height: 55vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* WhatsApp button: slightly smaller on mobile + soft drop shadow */
@media (max-width: 768px) {
  .wa-widget { bottom: max(16px, env(safe-area-inset-bottom)); right: 14px; }
  .wa-btn {
    width: 50px; height: 50px;
    box-shadow: 0 6px 18px rgba(37,211,102,.35), 0 2px 6px rgba(0,0,0,.12);
  }
  .wa-btn svg { width: 24px; height: 24px; }
}

/* Ensure widgets don't overlap fixed footer CTAs or form submit buttons */
@media (max-width: 768px) {
  .cta-band { padding-bottom: max(48px, calc(48px + env(safe-area-inset-bottom))); }
}

/* Final: hide any horizontal scroll guard, all final polish */
* { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Mobile typography refinement: hero h1 should never feel cramped */
@media (max-width: 380px) {
  .hero-v2 h1 { font-size: 30px; }
  .hero-v2__sub { font-size: 15.5px; }
  .urgency__lead { display: none; } /* On extra tiny screens just show buttons */
  .urgency__inner { gap: 6px; }
}

/* Empty Pexels image fallback: subtle FCP-logo watermark inside empty image boxes */
.duo__media:not(:has(img[src*="pexels"])) { display: none; }

/* Lang switcher visible underline removal in icon mode */
@media (max-width: 768px) {
  .lang__btn::after { display: none; }
}


/* =============================================================================
   NAV REDESIGN — premium desktop + right-side mobile drawer
   ============================================================================= */

/* ---------- NAV CONTAINER ---------- */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
  isolation: isolate;
}
.nav.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 2px 16px rgba(0, 30, 92, .06);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  min-height: 72px;
}

/* ---------- LOGO + WORDMARK ---------- */
.nav__logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo img {
  height: 44px; width: 44px;
  object-fit: contain;
}
.nav__logo-text {
  display: flex; flex-direction: column; line-height: 1;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -.01em;
}
.nav__logo-text span {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: .04em;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.nav__logo-text strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.02em;
}

/* ---------- DESKTOP MENU ---------- */
.nav__menu { flex: 1; display: flex; justify-content: center; }
.nav__menu ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
}
.nav__menu a {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -.005em;
  text-decoration: none;
  border-radius: 8px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width .3s var(--ease);
}
.nav__menu a:hover {
  color: var(--brand);
}
.nav__menu a:hover::after {
  width: 22px;
}
.nav__menu a.is-active {
  color: var(--brand);
  background: rgba(0, 180, 200, .08);
}
.nav__menu a.is-active::after {
  width: 22px;
}

/* ---------- CTA BUTTONS IN NAV ---------- */
.nav__cta {
  display: flex; align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn--nav {
  padding: 10px 18px;
  min-height: 42px;
  font-size: 13.5px;
  white-space: nowrap;
}

/* ---------- HAMBURGER ---------- */
.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--slate-200);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.nav__hamburger:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
}
.nav__hamburger-bar {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .35s var(--ease), top .35s var(--ease), opacity .25s var(--ease);
}
.nav__hamburger-bar:nth-child(1) { top: 15px; }
.nav__hamburger-bar:nth-child(2) { top: 21px; }
.nav__hamburger-bar:nth-child(3) { top: 27px; }
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* ---------- DESKTOP BREAKPOINT ---------- */
@media (max-width: 1100px) {
  .nav__menu ul { gap: 0; }
  .nav__menu a { padding: 10px 12px; font-size: 14px; }
  .btn--nav { padding: 9px 14px; font-size: 13px; }
  .nav__cta { gap: 8px; }
  .nav__logo-text span { font-size: 10px; }
  .nav__logo-text strong { font-size: 15.5px; }
}

@media (max-width: 980px) {
  .nav__cta .btn--outline { display: none; }
}

@media (max-width: 880px) {
  .nav__menu, .nav__cta .btn { display: none; }
  .nav__hamburger { display: block; }
  .nav__inner { padding: 12px 0; min-height: 64px; gap: 12px; }
  .nav__logo img { height: 40px; width: 40px; }
  .nav__logo-text strong { font-size: 15px; }
  .nav__logo-text span { font-size: 10px; }
}

@media (max-width: 420px) {
  .nav__logo-text { display: none; }
}

/* ---------- MOBILE DRAWER (right-side slide-in) ---------- */
.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 80, .4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  z-index: 1099;
}
.nav__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav__drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  height: 100dvh; /* dynamic viewport for iOS Safari */
  width: min(86%, 380px);
  background: #fff;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.32, .72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 48px rgba(0, 30, 92, .18);
  overflow: hidden;
  visibility: hidden;
}
.nav__drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

/* drawer head */
.nav__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--slate-100);
  flex-shrink: 0;
}
.nav__drawer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav__drawer-logo img {
  width: 40px; height: 40px;
  object-fit: contain;
}
.nav__drawer-logo span {
  display: flex; flex-direction: column;
  font-family: 'Manrope', sans-serif;
  line-height: 1.1;
}
.nav__drawer-logo small {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.nav__drawer-logo strong {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.015em;
}
.nav__drawer-close {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: all .2s var(--ease);
  flex-shrink: 0;
}
.nav__drawer-close:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
  color: var(--brand);
}
.nav__drawer-close svg { width: 22px; height: 22px; }

/* drawer body — scrollable */
.nav__drawer-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav__drawer-section {
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--slate-100);
}
.nav__drawer-section:last-child { border-bottom: none; }
.nav__drawer-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 12px;
}
.nav__drawer-section ul {
  list-style: none;
  padding: 0; margin: 0;
}
.nav__drawer-section ul li { margin: 0; padding: 0; }
.nav__drawer-section ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--slate-100);
  transition: color .2s var(--ease), padding-left .25s var(--ease);
  position: relative;
}
.nav__drawer-section ul li:last-child a { border-bottom: none; }
.nav__drawer-section ul a:hover,
.nav__drawer-section ul a:focus-visible {
  color: var(--brand);
  padding-left: 8px;
}
.nav__drawer-section ul a.is-active {
  color: var(--brand);
  padding-left: 14px;
}
.nav__drawer-section ul a.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: var(--accent);
  border-radius: 2px;
}
.nav__drawer-arrow {
  color: var(--slate-300);
  font-size: 16px;
  transition: transform .2s var(--ease), color .2s var(--ease);
}
.nav__drawer-section ul a:hover .nav__drawer-arrow,
.nav__drawer-section ul a.is-active .nav__drawer-arrow {
  color: var(--accent);
  transform: translateX(2px);
}

/* CTA buttons in drawer */
.btn--block { width: 100%; display: flex; justify-content: center; }
.nav__drawer-section .btn--block {
  margin-bottom: 10px;
  min-height: 52px;
  font-size: 14.5px;
}
.nav__drawer-section .btn--block:last-child { margin-bottom: 0; }

/* drawer foot (sticky bottom) */
.nav__drawer-foot {
  padding: 18px 22px calc(20px + env(safe-area-inset-bottom));
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.nav__drawer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid;
  transition: all .2s var(--ease);
}
.nav__drawer-contact svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.nav__drawer-contact span {
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.nav__drawer-contact small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 3px;
}
.nav__drawer-contact strong {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.nav__drawer-contact--phone {
  border-color: var(--brand);
  color: var(--brand);
}
.nav__drawer-contact--phone:hover,
.nav__drawer-contact--phone:focus-visible {
  background: var(--brand);
  color: #fff;
}
.nav__drawer-contact--wa {
  border-color: #25D366;
  color: #25D366;
}
.nav__drawer-contact--wa:hover,
.nav__drawer-contact--wa:focus-visible {
  background: #25D366;
  color: #fff;
}
.nav__drawer-hours {
  font-size: 12px;
  color: var(--slate-500);
  text-align: center;
  margin: 6px 0 0;
  font-family: 'Manrope', sans-serif;
}

/* Body lock when drawer open */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Hide drawer entirely on desktop */
@media (min-width: 881px) {
  .nav__drawer, .nav__backdrop { display: none; }
}

/* Old .nav__mobile from previous design — kill it cleanly if any references remain */
.nav__mobile { display: none !important; }


/* =============================================================================
   NAV RESPONSIVE FIXES — prevent menu items from wrapping
   ============================================================================= */

/* Prevent any nav menu items from wrapping */
.nav__menu ul { flex-wrap: nowrap; }
.nav__menu a {
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta { flex-shrink: 0; }

/* Hide the outline 'Aanmelden' CTA earlier on smaller laptops to free up space */
@media (max-width: 1100px) {
  .nav__cta .btn--outline { display: none; }
  .btn--nav { padding: 9px 14px; font-size: 13px; }
  .nav__menu a { padding: 9px 10px; font-size: 13.5px; }
  .nav__menu ul { gap: 0; }
}

/* On medium laptops, simplify the wordmark to single line */
@media (max-width: 1180px) {
  .nav__logo-text span { display: none; }
  .nav__logo-text strong { font-size: 16px; }
}

/* Adjust the existing 980 breakpoint (was double-handling outline btn) */
@media (max-width: 980px) {
  .nav__menu a { padding: 9px 8px; }
}

/* The hamburger appears at 880px and below — make sure all desktop elements vanish */
@media (max-width: 880px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__hamburger { display: block; }
  .nav__logo-text { display: flex; }
  .nav__logo-text span { display: none; }
  .nav__logo-text strong { font-size: 14.5px; }
}

@media (max-width: 380px) {
  .nav__logo-text { display: none; }
}


/* ---------- Reveal animations on scroll (robust, progressive enhancement) ---------- */
/* Default: VISIBLE — no JS = no broken site. .js-anim is added by inline
   script in <head> before paint, gating elements to invisible until .in-view
   is added by IntersectionObserver. */
.r-text, .r-img, .r-card {
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  will-change: opacity, transform;
}
.js-anim .r-text { opacity: 0; transform: translateX(-50px); }
.js-anim .r-img  { opacity: 0; transform: translateX(50px); }
.js-anim .r-card { opacity: 0; transform: translateY(28px) scale(.97); }
.js-anim .r-text.in-view,
.js-anim .r-img.in-view,
.js-anim .r-card.in-view {
  opacity: 1;
  transform: none;
}

/* Stagger delays — applied via transition-delay since we use transitions now */
.js-anim .r-stagger > *:nth-child(1) { transition-delay: 0ms; }
.js-anim .r-stagger > *:nth-child(2) { transition-delay: 120ms; }
.js-anim .r-stagger > *:nth-child(3) { transition-delay: 240ms; }
.js-anim .r-stagger > *:nth-child(4) { transition-delay: 360ms; }
.js-anim .r-stagger > *:nth-child(5) { transition-delay: 480ms; }
.js-anim .r-stagger > *:nth-child(6) { transition-delay: 600ms; }

/* Remove will-change once animation done (performance) */
.js-anim .r-text.in-view, .js-anim .r-img.in-view, .js-anim .r-card.in-view {
  will-change: auto;
}

/* Old keyframes (no longer used) — kept for safety in case any element still references them */
@keyframes fcp-slide-left  { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: none; } }
@keyframes fcp-slide-right { from { opacity: 0; transform: translateX(50px);  } to { opacity: 1; transform: none; } }
@keyframes fcp-card-rise   { from { opacity: 0; transform: translateY(28px) scale(.97); } to { opacity: 1; transform: none; } }



/* =============================================================================
   FIX: Urgency strip — perfect vertical centering of all elements
   ============================================================================= */
.urgency__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px;
  min-height: 36px;
  line-height: 1;
}
/* Every direct child centers on the cross-axis */
.urgency__inner > * {
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin: 0;
}
.urgency__pulse {
  align-self: center;
  flex-shrink: 0;
}
.urgency__lead {
  align-self: center;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
}
.urgency__cta {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.urgency__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.urgency__btn svg { display: block; flex-shrink: 0; }
.urgency__btn span { line-height: 1; display: inline-flex; align-items: center; }


/* =============================================================================
   FIX: Floating WhatsApp button — fully static (no pulse)
   ============================================================================= */
.wa-btn::before, .wa-btn::after { content: none !important; display: none !important; animation: none !important; }
.wa-btn { animation: none !important; }
