/* ==========================================================================
   Monaco Bedrijf — Schoonmaakdiensten
   Design system — "Modern & Bold"
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Neutrals & ink */
  --ink:        #0c1a17;
  --ink-2:      #3c4d46;
  --muted:      #71817a;
  --line:       #e8ece9;
  --line-2:     #dbe2dd;
  --bg:         #ffffff;
  --surface:    #f4f7f4;
  --surface-2:  #edf1ed;

  /* Brand — één diepe kleur + één frisse accentkleur */
  --brand:      #103d34;   /* diep petrol-groen */
  --brand-2:    #0a2b24;   /* donkerder */
  --brand-3:    #17564a;   /* lichter petrol */
  --accent:     #17cf7a;   /* fris groen */
  --accent-2:   #10b869;   /* hover */
  --accent-ink: #052a1c;   /* tekst op accent */
  --accent-soft:#e6faf0;   /* accent tint bg */

  /* Aliassen (compatibiliteit met inline-stijlen op pagina's) */
  --bg-soft:  var(--surface);
  --bg-tint:  var(--accent-soft);
  --ink-soft: var(--ink-2);
  --grad-hero: linear-gradient(140deg, var(--brand-2), var(--brand-3));

  --display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  --container: 1200px;

  --shadow-sm: 0 1px 2px rgba(12,26,23,.05), 0 6px 20px rgba(12,26,23,.05);
  --shadow-md: 0 12px 34px rgba(12,26,23,.10);
  --shadow-lg: 0 32px 74px rgba(10,43,36,.18);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* --- Reset --------------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.03em; }
h3 { font-size: 1.25rem; letter-spacing: -.01em; }
p { color: var(--ink-2); }

.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 1rem 1.7rem; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s, border-color .25s, color .25s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, #1cf08c 0%, #04c96f 100%); color: #032a1b; box-shadow: 0 10px 26px rgba(16,224,132,.45); }
.btn-primary:hover { background: linear-gradient(135deg, #2bff9b 0%, #06dd7c 100%); transform: translateY(-3px); box-shadow: 0 18px 38px rgba(16,224,132,.6); }
.btn-solid { background: var(--brand); color: #fff; }
.btn-solid:hover { background: var(--brand-2); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(12,26,23,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--display); font-weight: 700; font-size: 1.22rem; color: var(--ink); letter-spacing: -.02em; }
.brand .logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--brand); display: grid; place-items: center; color: var(--accent);
}
.brand .logo-mark svg { width: 23px; height: 23px; }
.brand small { display: block; font-family: var(--font); font-size: .66rem; font-weight: 600; color: var(--muted); letter-spacing: .16em; text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: .1rem; }
.nav-links a { padding: .6rem 1rem; border-radius: var(--radius-pill); font-weight: 500; font-size: .96rem; color: var(--ink-2); transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--surface); }
.nav-links .nav-cta { padding: 0; margin-left: .5rem; }
.nav-links .nav-cta:hover { background: none; }

.nav-right { display: flex; align-items: center; gap: .8rem; }
.lang-switch { display: inline-flex; align-items: center; gap: .35rem; font-size: .85rem; font-weight: 600; padding: .5rem .8rem; border: 1px solid var(--line-2); border-radius: var(--radius-pill); color: var(--ink-2); background: #fff; transition: border-color .2s, color .2s; }
.lang-switch:hover { border-color: var(--ink); color: var(--ink); }
.lang-switch svg { width: 15px; height: 15px; opacity: .7; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); border-radius: 2px; margin: 6px 0; transition: .3s; }

/* --- Eyebrow / section heads -------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--brand-3); font-family: var(--font); font-weight: 600;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-head { max-width: 46rem; margin: 0 0 3.4rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { margin-bottom: 0; }
.section-head p { margin-top: 1.1rem; font-size: 1.1rem; color: var(--ink-2); }

/* --- HERO (immersief & dromerig, donker) -------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(160deg, #0c3a30 0%, #082b24 55%, #05201b 100%);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4.5rem, 9vw, 7.5rem);
}
.hero-aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-aurora .orb { position: absolute; border-radius: 50%; filter: blur(72px); opacity: .5; will-change: transform; }
.hero-aurora .orb-1 { width: 540px; height: 540px; background: #17cf7a; top: -160px; left: -90px; animation: drift1 24s ease-in-out infinite; }
.hero-aurora .orb-2 { width: 480px; height: 480px; background: #12b6c9; bottom: -190px; right: -80px; animation: drift2 28s ease-in-out infinite; }
.hero-aurora .orb-3 { width: 400px; height: 400px; background: #0f9f74; top: 26%; left: 42%; opacity: .38; animation: drift3 32s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(70px,60px) scale(1.15); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px,-50px) scale(1.1); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-45px,45px) scale(1.22); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, transparent 42%, rgba(4,20,16,.55) 100%); }

.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9);
  padding: .5rem 1rem; border-radius: var(--radius-pill); font-size: .84rem; font-weight: 600;
  margin-bottom: 1.6rem; backdrop-filter: blur(8px);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(23,207,122,.28); animation: pulse 2.4s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(23,207,122,0); } }
.hero h1 { color: #fff; margin-bottom: 1.4rem; }
.hero h1 .accent {
  background: linear-gradient(90deg, #34d399, #22d3ee, #6ee7b7, #34d399);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }
.hero .lead { font-size: 1.18rem; color: rgba(255,255,255,.82); max-width: 33rem; margin-bottom: 2.2rem; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.8rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.15); }
.hero-trust .ht-chip { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; color: #fff; }
.hero-trust .ht-chip svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* Hero media — omlijst met glans, langzame zoom & zwevende badge */
.hero-media { position: relative; z-index: 3; }
/* Hero-slideshow — vloeiende cross-fade met zachte in-zoom (Ken Burns) */
.hero-slideshow {
  position: relative; width: 100%; aspect-ratio: 4/4.3;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 40px 90px rgba(0,0,0,.5), 0 0 0 6px rgba(23,207,122,.10);
}
.hero-slideshow .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.3s ease; }
.hero-slideshow .slide.active { opacity: 1; }
.hero-slideshow .slide img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.08); transition: transform 6.5s ease-out; }
.hero-slideshow .slide.active img { transform: scale(1); }
.hero-slideshow::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(115deg, transparent 34%, rgba(255,255,255,.18) 47%, transparent 60%);
  transform: translateX(-130%); animation: sweep 7.5s ease-in-out infinite;
}
@keyframes sweep { 0%,58% { transform: translateX(-130%); } 82%,100% { transform: translateX(130%); } }
.hero-media .float-badge {
  position: absolute; left: -16px; bottom: 24px; z-index: 8;
  display: flex; align-items: center; gap: .7rem;
  background: rgba(255,255,255,.96); color: var(--ink); padding: .8rem 1.1rem; border-radius: 14px;
  box-shadow: var(--shadow-lg); font-weight: 700; font-size: .9rem; backdrop-filter: blur(6px);
  animation: floaty 5s ease-in-out infinite;
}
.hero-media .float-badge .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-2); display: grid; place-items: center; flex-shrink: 0; }
.hero-media .float-badge .ic svg { width: 19px; height: 19px; }
.hero-media .float-badge small { display: block; font-weight: 500; color: var(--muted); font-size: .76rem; }
@keyframes floaty { 50% { transform: translateY(-12px); } }

/* Hide oude golf-dividers (niet meer gebruikt in nieuw ontwerp) */
.hero-wave { display: none !important; }

/* --- Trust strip --------------------------------------------------------- */
.trustbar { border-block: 1px solid var(--line); background: var(--surface); }
.trustbar .row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.2rem 2rem; align-items: center; padding: 1.5rem 0; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--ink); font-size: .95rem; }
.trust-item svg { width: 20px; height: 20px; color: var(--accent-2); flex-shrink: 0; }

/* --- Grids --------------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Service cards ------------------------------------------------------- */
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.service-icon {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: var(--surface); color: var(--brand); margin-bottom: 1.4rem; transition: background .35s, color .35s;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: var(--brand); color: var(--accent); }
.service-card h3 { margin-bottom: .6rem; }
.service-card p { font-size: .97rem; margin-bottom: 1.2rem; }
.service-card .more { display: inline-flex; align-items: center; gap: .45rem; color: var(--brand); font-weight: 600; font-size: .92rem; }
.service-card .more svg { width: 16px; height: 16px; transition: transform .3s; }
.service-card:hover .more svg { transform: translateX(4px); }
.service-card .more:hover { color: var(--accent-2); }

/* --- Split --------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.check-list { display: grid; gap: 1.05rem; margin: 1.7rem 0; }
.check-list li { display: flex; gap: .85rem; align-items: flex-start; font-weight: 600; color: var(--ink); }
.check-list li .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: var(--accent-soft); color: var(--accent-2); display: grid; place-items: center; }
.check-list li .tick svg { width: 15px; height: 15px; }
.check-list li small { display: block; font-weight: 400; color: var(--ink-2); font-size: .92rem; margin-top: 2px; }

/* --- Steps --------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.step { padding: 1.8rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .3s var(--ease), box-shadow .3s; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step .num { font-family: var(--display); font-size: 1.1rem; font-weight: 700; width: 46px; height: 46px; border-radius: 12px; background: var(--brand); color: var(--accent); display: grid; place-items: center; margin-bottom: 1.2rem; }
.step h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.step p { font-size: .94rem; }

/* --- Values / info cards ------------------------------------------------- */
.value-card { padding: 2rem 1.9rem; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card .ic { width: 54px; height: 54px; border-radius: 14px; background: var(--surface); color: var(--brand); display: grid; place-items: center; margin-bottom: 1.2rem; }
.value-card .ic svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.16rem; margin-bottom: .5rem; }
.value-card p { font-size: .96rem; }

.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: transform .3s, box-shadow .3s, border-color .3s; }
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--accent); }
.info-card .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--surface); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.info-card .ic svg { width: 23px; height: 23px; }
.info-card h4 { font-family: var(--display); font-size: 1.02rem; margin-bottom: .2rem; color: var(--ink); }
.info-card p, .info-card a { font-size: .94rem; color: var(--ink-2); }
.info-card a:hover { color: var(--accent-2); }

/* --- CTA band ------------------------------------------------------------ */
.cta-band { position: relative; overflow: hidden; background: var(--brand); color: #fff; border-radius: var(--radius-xl); padding: clamp(2.8rem, 6vw, 4.5rem); text-align: center; }
.cta-band::before { content: ""; position: absolute; top: -30%; right: -8%; width: 45%; height: 140%; background: radial-gradient(circle, rgba(23,207,122,.24), transparent 62%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 38rem; margin: 0 auto 2rem; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Page hero (interior, donker) --------------------------------------- */
.page-hero { position: relative; overflow: hidden; background: var(--brand); color: #fff; padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5rem); text-align: center; }
.page-hero::after { content: ""; position: absolute; top: -40%; right: -6%; width: 40%; height: 160%; background: radial-gradient(circle, rgba(23,207,122,.2), transparent 60%); pointer-events: none; }
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 1.1rem; }
.page-hero p { color: rgba(255,255,255,.78); max-width: 42rem; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { display: flex; gap: .5rem; justify-content: center; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 1.3rem; }
.breadcrumb a:hover { color: #fff; }

/* --- FAQ ----------------------------------------------------------------- */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: .8rem; overflow: hidden; background: #fff; transition: border-color .3s; }
.faq-item.open { border-color: var(--accent); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 1.5rem; font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s; color: var(--accent-2); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 1.5rem 1.4rem; font-size: .97rem; }

/* --- Forms --------------------------------------------------------------- */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(1.7rem, 3vw, 2.8rem); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.field label .req { color: var(--accent-2); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .96rem; padding: .9rem 1rem; border: 1.5px solid var(--line-2);
  border-radius: 12px; color: var(--ink); background: var(--surface); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(23,207,122,.14); }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 1rem; display: flex; gap: .5rem; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent-2); }

.chip-group { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip input { position: absolute; opacity: 0; }
.chip label { display: inline-flex; align-items: center; padding: .7rem 1.15rem; border: 1.5px solid var(--line-2); border-radius: var(--radius-pill); font-weight: 500; font-size: .9rem; cursor: pointer; color: var(--ink-2); transition: .2s; background: #fff; }
.chip input:checked + label { border-color: var(--accent); background: var(--accent-soft); color: var(--brand); font-weight: 600; }

.form-success { display: none; background: var(--accent-soft); border: 1.5px solid var(--accent); color: var(--brand); border-radius: 12px; padding: 1rem 1.2rem; font-weight: 600; margin-bottom: 1.4rem; align-items: center; gap: .7rem; }
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent-2); }

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: var(--brand-2); color: rgba(255,255,255,.66); padding: 4.5rem 0 1.8rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 2.8rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-grid .brand { color: #fff; margin-bottom: 1.1rem; }
.footer-grid .brand .logo-mark { background: rgba(255,255,255,.1); }
.footer-grid .brand small { color: rgba(255,255,255,.5); }
.footer-col h4 { color: #fff; font-family: var(--display); font-size: 1rem; margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-about p { font-size: .95rem; margin-bottom: 1.3rem; max-width: 30rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; margin-bottom: .75rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.7rem; font-size: .86rem; }
.footer-bottom .kvk { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--accent); }

/* --- Reveal -------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* --- Floating WhatsApp --------------------------------------------------- */
.fab { position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.4); transition: transform .25s var(--ease); }
.fab svg { width: 29px; height: 29px; color: #fff; }
.fab:hover { transform: translateY(-3px) scale(1.05); }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-media { max-width: 520px; }
  .split { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 80px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 1rem 1.3rem 1.6rem; gap: .1rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); transform: translateY(-145%); transition: transform .35s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: .9rem 1rem; }
  .nav-links .nav-cta { margin: .6rem 0 0; }
  .nav-links .nav-cta .btn { width: 100%; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .cta-actions .btn { flex: 1 1 100%; }
  .fab { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
