/* ==========================================================================
   Netwerk Uitzendbureau B.V. — style.css
   Palette: deep navy + vibrant red | Fonts: Poppins (headings) + Inter (body)
   ========================================================================== */

:root {
  /* Kleuren */
  --navy-950: #070d20;
  --navy-900: #0b1533;
  --navy-800: #101d47;
  --navy-700: #182a63;
  --blue-500: #3b5bdb;
  --blue-400: #5c7cfa;
  --red-600: #d62839;
  --red-500: #e63946;
  --red-400: #ff4d5e;
  --green-500: #12b886;

  --ink: #131c3d;
  --muted: #5b6482;
  --bg: #f6f8fd;
  --card: #ffffff;
  --line: #e5eaf5;

  /* Effects */
  --grad-red: linear-gradient(135deg, var(--red-400), var(--red-600));
  --grad-blue: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  --shadow-sm: 0 2px 10px rgba(16, 29, 74, 0.06);
  --shadow-md: 0 10px 34px rgba(16, 29, 74, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 29, 74, 0.16);
  --glow-red: 0 12px 30px rgba(230, 57, 70, 0.35);

  /* Vorm & ritme */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ==================== Reset & basis ==================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

section { scroll-margin-top: 96px; }

.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-tight { padding-top: 0; }

/* ==================== Typografie-hulpjes ==================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-500);
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow-light {
  color: #ff8f9a;
  background: rgba(255, 77, 94, 0.12);
  border-color: rgba(255, 77, 94, 0.25);
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 560px;
  margin-inline: auto;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(44px, 6vw, 64px);
}

.accent-word {
  background: var(--grad-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-word-light { color: var(--red-400); }

/* ==================== Knoppen ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
  will-change: transform;
}

.btn svg { width: 19px; height: 19px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-sm { padding: 10px 22px; font-size: 0.92rem; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  color: #fff;
  background: var(--grad-red);
  box-shadow: var(--glow-red);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(230, 57, 70, 0.45);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn:focus-visible {
  outline: 3px solid rgba(92, 124, 250, 0.6);
  outline-offset: 3px;
}

/* ==================== Header ==================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s var(--ease), background-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 40px; height: 40px; flex: none; filter: drop-shadow(0 6px 14px rgba(230, 57, 70, 0.35)); }

.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.3s var(--ease);
}
.brand-text em { font-style: normal; font-weight: 500; opacity: 0.75; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav ul { display: flex; gap: 6px; }

.nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  font-weight: 500;
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

/* Header na scrollen (of met open menu): glas-effect op licht */
.site-header.scrolled,
.site-header.menu-open {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled .brand-text,
.site-header.menu-open .brand-text { color: var(--navy-900); }
.site-header.scrolled .nav-link { color: var(--muted); }
.site-header.scrolled .nav-link:hover { color: var(--navy-900); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  height: 2.4px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s, background-color 0.3s;
}
.site-header.scrolled .nav-toggle span,
.site-header.menu-open .nav-toggle span { background: var(--navy-900); }
.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ==================== Hero ==================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 150px 0 120px;
  background: linear-gradient(160deg, var(--navy-900) 10%, var(--navy-950) 90%);
  color: #fff;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.blob-1 {
  width: 560px; height: 560px;
  right: -140px; top: -180px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.55), transparent 65%);
  animation: drift 14s ease-in-out infinite;
}
.blob-2 {
  width: 620px; height: 620px;
  left: -220px; bottom: -260px;
  background: radial-gradient(circle, rgba(59, 91, 219, 0.5), transparent 65%);
  animation: drift 18s ease-in-out infinite reverse;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -24px) scale(1.06); }
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 18px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  margin-bottom: 26px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-400);
  box-shadow: 0 0 0 0 rgba(255, 77, 94, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 94, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 77, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 94, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.title-dot { color: var(--red-400); }

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat dt.stat-num, .stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  margin: 0;
}
.stat dd { margin: 2px 0 0; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }

/* Hero visual: zwevende vacaturekaartjes */
.hero-visual {
  position: relative;
  min-height: 460px;
}

.visual-ring {
  position: absolute;
  inset: 8% 4%;
  border: 1.5px dashed rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 15px 18px;
  box-shadow: var(--shadow-lg);
  min-width: 265px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.float-card:hover { transform: scale(1.04); box-shadow: 0 30px 70px rgba(7, 13, 32, 0.5); }
.float-card strong { display: block; font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; }
.float-card small { color: var(--muted); font-size: 0.82rem; }

.fc-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  color: #fff;
}
.fc-icon svg { width: 22px; height: 22px; }
.fc-icon-red { background: var(--grad-red); }
.fc-icon-blue { background: var(--grad-blue); }
.fc-icon-navy { background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); }

.fc-tag {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--red-600);
  background: rgba(230, 57, 70, 0.1);
  white-space: nowrap;
}
.fc-tag-blue { color: var(--blue-500); background: rgba(59, 91, 219, 0.1); }
.fc-tag-green { color: var(--green-500); background: rgba(18, 184, 134, 0.12); }

.fc-1 { top: 4%; right: 6%; animation: float 6s ease-in-out infinite; }
.fc-2 { top: 38%; left: 0; animation: float 7s ease-in-out 0.8s infinite; }
.fc-3 { bottom: 8%; right: 10%; animation: float 6.5s ease-in-out 1.6s infinite; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

.match-pill {
  position: absolute;
  bottom: 30%;
  left: 16%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--green-500);
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(18, 184, 134, 0.45);
  animation: float 5.5s ease-in-out 0.4s infinite;
}
.match-pill svg { width: 16px; height: 16px; }

.hero-curve {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
}
.hero-curve svg { width: 100%; height: clamp(40px, 7vw, 90px); }

/* ==================== Feature cards ==================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.feature-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.4vw, 40px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }

.card-num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  opacity: 0.05;
  transition: opacity 0.35s var(--ease), color 0.35s var(--ease);
}
.feature-card:hover .card-num { opacity: 0.12; color: var(--red-500); }

.card-icon {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 18px;
  margin-bottom: 22px;
  color: #fff;
  transition: transform 0.35s var(--ease);
}
.card-icon svg { width: 28px; height: 28px; }
.feature-card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }

.icon-red { background: var(--grad-red); box-shadow: 0 10px 24px rgba(230, 57, 70, 0.3); }
.icon-blue { background: var(--grad-blue); box-shadow: 0 10px 24px rgba(59, 91, 219, 0.3); }
.icon-green { background: linear-gradient(135deg, #20c997, #0ca678); box-shadow: 0 10px 24px rgba(18, 184, 134, 0.3); }

.feature-card h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p { color: var(--muted); margin: 0; font-size: 0.99rem; }

/* ==================== Bakkie CTA ==================== */
.bakkie-card {
  position: relative;
  text-align: center;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  color: #fff;
  border-radius: clamp(24px, 3vw, 36px);
  padding: clamp(52px, 7vw, 84px) clamp(24px, 6vw, 80px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.bakkie-glow {
  position: absolute;
  width: 500px; height: 500px;
  left: 50%; top: -320px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(230, 57, 70, 0.4), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.bakkie-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 72px; height: 72px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--red-400);
  margin-bottom: 26px;
}
.bakkie-icon svg { width: 34px; height: 34px; }
.bakkie-card h2 {
  position: relative;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.bakkie-card p {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.bakkie-card .btn { position: relative; }

/* ==================== Fundament ==================== */
.fundament-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.fundament-copy > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 30px; }

.checklist { display: grid; gap: 18px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.checklist li:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.checklist strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; }
.checklist span:not(.check-badge) { color: var(--muted); font-size: 0.92rem; }

.check-badge {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  margin-top: 3px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #20c997, #0ca678);
  box-shadow: 0 6px 16px rgba(18, 184, 134, 0.35);
}
.check-badge svg { width: 17px; height: 17px; }

/* Telefoon-mockup */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-halo {
  position: absolute;
  inset: 6% -4%;
  background: radial-gradient(ellipse at 50% 45%, rgba(230, 57, 70, 0.14), rgba(59, 91, 219, 0.10) 55%, transparent 75%);
  filter: blur(30px);
}
.phone {
  position: relative;
  width: min(310px, 78vw);
  background: var(--navy-950);
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: rotate(-4deg);
  transition: transform 0.5s var(--ease);
}
.phone:hover { transform: rotate(0deg) scale(1.02); }

.phone-notch {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 22px;
  background: var(--navy-950);
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  background: linear-gradient(180deg, #fdfdff, #f2f5fc);
  border-radius: 34px;
  padding: 56px 18px 20px;
  display: grid;
  gap: 12px;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 1.02rem;
}
.app-avatar {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.app-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.85rem;
}
.app-search svg { width: 16px; height: 16px; }

.job-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}
.job-dot { flex: none; width: 10px; height: 10px; border-radius: 50%; }
.jd-red { background: var(--red-500); }
.jd-blue { background: var(--blue-500); }
.jd-green { background: var(--green-500); }

.job-info { min-width: 0; }
.job-info h4 { font-size: 0.88rem; font-weight: 600; margin: 0; }
.job-info p { font-size: 0.76rem; color: var(--muted); margin: 0; }

.job-tag {
  margin-left: auto;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-800);
  background: rgba(59, 91, 219, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}

.app-cta {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  background: var(--grad-red);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--glow-red);
}

/* ==================== Contact ==================== */
.contact-section {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0;
  background: linear-gradient(165deg, var(--navy-900), var(--navy-950));
  color: #fff;
  overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 90% 10%, rgba(230, 57, 70, 0.16), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(59, 91, 219, 0.18), transparent 60%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(44px, 6vw, 88px);
  align-items: start;
}

.contact-lead { color: rgba(255, 255, 255, 0.68); font-size: 1.08rem; margin-bottom: 38px; }

.info-list { display: grid; gap: 16px; }
.info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 18px 20px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.info-list li:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}
.info-list strong { display: block; font-family: var(--font-head); font-weight: 600; margin-bottom: 2px; }
.info-list li > div > span { color: rgba(255, 255, 255, 0.65); font-size: 0.94rem; }

.info-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--grad-red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}
.info-icon svg { width: 21px; height: 21px; }

/* Formulier-kaart */
.form-card {
  background: var(--card);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 24px;
}

#contact-form { display: grid; gap: 18px; }

.field { display: grid; gap: 7px; margin: 0; border: 0; padding: 0; }
fieldset.field { min-width: 0; }

.field-label {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-800);
}
.field-label em { color: var(--red-500); font-style: normal; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: #f8fafd;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease);
}
.input::placeholder { color: #a3abc4; }
.input:hover { border-color: #cdd6ea; }
.input:focus {
  outline: none;
  background: #fff;
  border-color: var(--red-500);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
}

textarea.input { resize: vertical; min-height: 110px; }

select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235b6482' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

/* Dagen-checkboxes als chips */
.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.check { position: relative; cursor: pointer; }
.check input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.check span {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  background: #f8fafd;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  transition: all 0.22s var(--ease);
  user-select: none;
}
.check:hover span { border-color: #cdd6ea; transform: translateY(-1px); }
.check input:checked + span {
  color: #fff;
  background: var(--grad-red);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.3);
}
.check input:focus-visible + span { outline: 3px solid rgba(92, 124, 250, 0.5); outline-offset: 2px; }

/* Inline statusbericht (AJAX) */
.form-msg {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.93rem;
  border-radius: var(--r-sm);
  padding: 13px 16px;
  border: 1.5px solid transparent;
}
.form-msg.ok {
  color: #0b7a5c;
  background: rgba(18, 184, 134, 0.1);
  border-color: rgba(18, 184, 134, 0.3);
}
.form-msg.error {
  color: var(--red-600);
  background: rgba(230, 57, 70, 0.08);
  border-color: rgba(230, 57, 70, 0.28);
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin: 4px 0 0;
}

/* Honeypot: visueel volledig verborgen */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ==================== Footer ==================== */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brand-footer .logo-mark { width: 32px; height: 32px; }
.brand-footer .brand-text { font-size: 0.95rem; }
.footer-copy { margin: 0; font-size: 0.85rem; }
.footer-nav { display: flex; gap: 22px; }
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s var(--ease);
}
.footer-nav a:hover { color: #fff; }

/* ==================== Toast ==================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  z-index: 200;
  max-width: min(520px, calc(100vw - 40px));
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 15px 24px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.toast-ok { background: linear-gradient(135deg, #12b886, #0ca678); border-color: transparent; }
.toast.toast-error { background: linear-gradient(135deg, var(--red-500), var(--red-600)); border-color: transparent; }

/* ==================== Scroll-reveal animaties ==================== */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0s);
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ==================== Responsive ==================== */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 140px 0 110px; }
  .hero-visual { min-height: 400px; max-width: 560px; margin-inline: auto; width: 100%; }
  .fundament-grid { grid-template-columns: 1fr; }
  .phone-wrap { order: 2; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .cards-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }

  /* Mobiel menu */
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px; right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #fff;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: 18px;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .site-header.menu-open .main-nav {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .nav-link { color: var(--ink); padding: 12px 14px; border-radius: 10px; }
  .nav-link:hover { background: var(--bg); color: var(--navy-900); }
  .nav-link::after { display: none; }
  .site-header.scrolled .nav-link { color: var(--ink); }
  .nav-cta { margin-top: 8px; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 22px; }
  .float-card { min-width: 230px; padding: 12px 14px; }
  .fc-2 { left: -6px; }
  .footer-inner { justify-content: center; text-align: center; }
}

/* ==================== Toegankelijkheid ==================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}
