/* =========================================
   VEDIE — Apple-maximalist v21
   Scherpe hoeken, blauw ipv zwart
   ========================================= */

:root {
  --white:  #ffffff;
  --grey:   #f5f5f7;
  --dark:   #1d1d1f;        /* tekst */
  --brand:  #062b3a;        /* primaire merkkleur – ook als donkere achtergrond */
  --brand2: #0b4257;        /* iets lichter blauw voor stat-tiles */
  --muted:  #4a4a4a;
  --line:   rgba(0, 0, 0, 0.08);
  --line-d: rgba(255, 255, 255, 0.1);
  --shadow: 0 1px 0 var(--line);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }

body {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  margin-top: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

p { margin: 0 0 0.85rem; }

.container {
  width: min(1200px, 88vw);
  margin: 0 auto;
}

/* =========================================
   EYEBROW
   ========================================= */

.eyebrow {
  display: block;
  margin: 0 0 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.eyebrow::before { display: none; }

/* =========================================
   HEADER — Apple thin 52px nav
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-grid {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 32px;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: background 0.15s;
}

.menu-toggle:hover { background: rgba(0,0,0,0.05); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.site-nav a:not(.btn) {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.83rem;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.15s;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn).active {
  color: var(--dark);
}

.btn-nav-cta {
  margin-left: 14px;
  padding: 8px 18px !important;
  font-size: 0.83rem !important;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 2px 10px rgba(6, 43, 58, 0.22);
}

.btn-primary:hover { box-shadow: 0 6px 20px rgba(6, 43, 58, 0.32); }

.btn-ghost {
  background: rgba(6, 43, 58, 0.07);
  color: var(--brand);
}

.btn-ghost:hover { background: rgba(6, 43, 58, 0.12); }

.btn-white {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 2px 14px rgba(0,0,0,0.14);
}

.btn-white:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.2); }

.btn-text {
  background: none;
  border: none;
  color: var(--brand);
  font-weight: 600;
  font-size: 1rem;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap 0.18s ease;
  letter-spacing: -0.01em;
}

.btn-text::after { content: "→"; font-size: 1.05em; }
.btn-text:hover { gap: 8px; transform: none; }

.btn-text-white { color: rgba(255,255,255,0.65); }
.btn-text-white:hover { color: #fff; }

/* =========================================
   HERO — full-screen cinematic
   ========================================= */

.hero-splash {
  position: relative;
  min-height: calc(100svh - 52px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-splash__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-splash__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3, 12, 20, 0.92) 0%,
    rgba(3, 12, 20, 0.7) 55%,
    rgba(3, 12, 20, 0.2) 100%
  );
}

.hero-splash__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
}

.hero-brand { display: none; }

.hero-label {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-splash__content h1 {
  color: #ffffff;
  font-size: clamp(3.5rem, 9.5vw, 9.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 12ch;
  margin-bottom: 1.8rem;
}

.hero-splash__content h1 em {
  font-style: normal;
  color: #fff;
}

.hero-sub {
  font-size: clamp(1rem, 1.9vw, 1.4rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 38ch;
  margin-bottom: 2.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll__wheel {
  width: 18px;
  height: 30px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  position: relative;
}

.hero-scroll__wheel::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 5px;
  background: rgba(255,255,255,0.4);
  border-radius: 999px;
  animation: scroll-dot 2.4s ease infinite;
}

@keyframes scroll-dot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* =========================================
   STATEMENT — Apple massive centered quote
   ========================================= */

.statement-section {
  background: var(--white);
  padding: 130px 0 110px;
  text-align: center;
}

.statement-eyebrow {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.statement-headline {
  font-size: clamp(3rem, 8.5vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--dark);
  max-width: 16ch;
  margin: 0 auto;
}

.statement-headline span { color: #8e8e93; }

/* =========================================
   INTRO COPY — 2-column layout
   ========================================= */

.intro-copy {
  background: var(--grey);
  padding: 110px 0;
}

.intro-copy .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.intro-copy h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  color: var(--dark);
  margin: 0;
  letter-spacing: -0.035em;
}

.intro-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.intro-checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.intro-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

/* =========================================
   METRICS — blauw, mega numbers
   ========================================= */

.metrics { padding: 0; }

.metrics-grid {
  background: var(--brand);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.metrics-grid article {
  padding: 64px clamp(28px, 4vw, 72px);
  border-right: 1px solid var(--line-d);
  transition: background 0.2s;
}

.metrics-grid article:last-child { border-right: none; }
.metrics-grid article:hover { background: rgba(255,255,255,0.04); }

.metrics-grid h3 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.metrics-grid p {
  color: rgba(255,255,255,0.82);
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.45;
}

/* =========================================
   FEATURE TILES — Apple 2×2 grid
   ========================================= */

.features-section {
  padding: 4px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.feature-tile {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--brand);
  cursor: default;
}

.feature-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.feature-tile:hover img { transform: scale(1.04); }

.feature-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 20, 32, 0.82) 0%,
    rgba(4, 20, 32, 0.18) 55%,
    rgba(4, 20, 32, 0) 100%
  );
}

.feature-tile__content {
  position: relative;
  z-index: 2;
  padding: 44px 48px;
  color: #fff;
  width: 100%;
}

.feature-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  display: block;
}

.feature-tile h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  color: #fff;
  margin: 0;
  letter-spacing: -0.025em;
  max-width: 18ch;
  line-height: 1.1;
}

.feature-tile--stat {
  background: var(--brand2);
  align-items: center;
  justify-content: center;
}

.feature-tile--stat .feature-tile__content {
  text-align: center;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-stat {
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  margin: 8px 0 12px;
  display: block;
}

.feature-tile--stat h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: rgba(255,255,255,0.9);
  max-width: 100%;
}

/* =========================================
   SERVICES
   ========================================= */

.section { padding: 120px 0; }

.section-head { margin-bottom: 60px; }

.section-head h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 0;
  letter-spacing: -0.03em;
}

.service-preview-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-preview {
  background: var(--grey);
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-preview:hover { transform: scale(1.02); }

.service-preview__img-wrap { overflow: hidden; }

.service-preview img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-preview:hover img { transform: scale(1.05); }

.service-preview__body { padding: 26px 28px 32px; }

.service-preview h3 {
  margin: 0 0 8px;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--dark);
  letter-spacing: -0.02em;
}

.service-preview p {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 0.93rem;
  line-height: 1.5;
}

/* =========================================
   PRICING — blauw voor featured card
   ========================================= */

.pricing-section { background: var(--grey); }

.pricing-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.price-card {
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 38px 30px;
  box-shadow: none;
  transition: transform 0.22s ease;
}

.price-card:hover { transform: translateY(-4px); }

.price-card.featured {
  background: var(--brand);
  transform: scale(1.04);
}

.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.price-card.featured h3 { color: #fff; }
.price-card.featured .price { color: rgba(255,255,255,0.9); }

.price-card.featured .badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}

.price-card.featured ul li { color: rgba(255,255,255,0.5); }
.price-card.featured ul li::before {
  border-left-color: rgba(255,255,255,0.45);
  border-bottom-color: rgba(255,255,255,0.45);
}

.price-card.featured .btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #fff;
  background: transparent;
}

.price-card.featured .btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.55);
}

.price-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 8px 0 22px;
  color: var(--brand);
  letter-spacing: -0.03em;
}

.price-card ul {
  padding: 0;
  list-style: none;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

.price-card ul li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 12px;
  background: rgba(6, 43, 58, 0.07);
  color: var(--brand);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.urgent {
  margin-top: 32px;
  background: var(--white);
  border-radius: 0;
  padding: 24px 28px;
  border-top: 2px solid var(--brand);
}

.urgent h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.price-action {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
}

/* =========================================
   CTA — blauw, centered, massive type
   ========================================= */

.cta-section {
  background: var(--brand);
  padding: 0;
}

.cta-banner {
  background: none;
  border-radius: 0;
  padding: 100px 0;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  gap: 0;
}

.cta-banner .eyebrow {
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.cta-banner h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  max-width: 18ch;
  line-height: 1.05;
}

.cta-banner > div > p {
  color: rgba(255,255,255,0.75);
  margin: 0 0 32px;
  font-size: 1.05rem;
}

/* =========================================
   INNER HERO (subpages)
   ========================================= */

.inner-hero {
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--line);
}

.inner-hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  margin-bottom: 18px;
  color: var(--dark);
  letter-spacing: -0.04em;
  max-width: 18ch;
}

.inner-hero p {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.55;
}

/* =========================================
   SERVICE DETAILS (diensten — Apple split)
   ========================================= */

.service-detail-grid { display: grid; gap: 4px; }

.service-detail {
  background: var(--grey);
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-detail > div {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.service-detail p { color: var(--muted); margin-bottom: 16px; }

.service-detail img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.service-detail ul {
  padding: 0;
  list-style: none;
  margin: 8px 0 0;
  display: grid;
  gap: 10px;
}

.service-detail ul li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}

.service-detail ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.service-detail.reverse img { order: 2; }

.service-detail:nth-child(even) { background: var(--white); }

/* =========================================
   PROCESS (numbered steps, donkerblauw)
   ========================================= */

.dark-strip { background: var(--brand); }

.process-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  background: rgba(255,255,255,0.05);
  border-radius: 0;
  padding: 44px 32px;
  transition: background 0.2s ease;
}

.process-grid article:hover { background: rgba(255,255,255,0.09); }

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 16px;
}

.process-grid h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.process-grid p {
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-size: 0.88rem;
}

/* =========================================
   DOELGROEP
   ========================================= */

.doelgroep-section { background: var(--white); }

.doelgroep-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
}

.doelgroep-grid article {
  background: var(--grey);
  border-radius: 0;
  padding: 28px 22px;
  border-top: 2px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.doelgroep-grid article:hover {
  background: var(--white);
  border-top-color: var(--brand);
}

.doelgroep-grid h3 {
  margin: 0 0 7px;
  font-size: 0.97rem;
  color: var(--dark);
  letter-spacing: -0.015em;
}

.doelgroep-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

/* =========================================
   CONTACT / FORM
   ========================================= */

.contact-layout {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1.1fr;
}

.contact-card,
.contact-form {
  background: var(--grey);
  border-radius: 0;
}

.contact-card { padding: 40px 36px; }

.contact-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--dark);
  letter-spacing: -0.03em;
}

.contact-profile-photo {
  width: 100%;
  max-width: 280px;
  height: 340px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 0;
  margin: 10px 0 18px;
}

.contact-pricing h2 { margin-bottom: 20px; }

.price-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-line:last-of-type { margin-bottom: 8px; }

.price-line__title {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.price-line__desc {
  margin: 3px 0 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.price-line strong {
  white-space: nowrap;
  font-weight: 800;
  color: var(--brand);
}

.terms-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  display: grid;
  gap: 7px;
}

.terms-list li { padding-left: 16px; position: relative; }

.terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.4;
}

.text-link {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover { opacity: 0.7; }

.contact-form {
  padding: 40px 36px;
  display: grid;
  gap: 14px;
  position: relative;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.11);
  background: var(--white);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--dark);
  transition: border-color 0.16s, box-shadow 0.16s;
}

input::placeholder, textarea::placeholder {
  color: var(--muted);
  opacity: 0.55;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(6, 43, 58, 0.07);
}

select option { background: var(--white); color: var(--dark); }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--muted);
}

.checkbox-row input {
  width: 16px; height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--brand);
}

.form-note { color: var(--muted); font-size: 0.86rem; margin: 0; }

.form-success {
  margin: 0;
  padding: 12px 16px;
  border-radius: 0;
  background: rgba(6, 43, 58, 0.06);
  color: var(--brand);
  font-weight: 700;
}

.spacer-line { height: 8px; margin: 0; }

/* =========================================
   FAQ
   ========================================= */

.faq-section { background: var(--grey); }

.faq-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.faq-grid article {
  background: var(--white);
  border-radius: 0;
  padding: 28px 24px;
  border-top: 2px solid var(--brand);
}

.faq-grid h3 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.faq-grid p { color: var(--muted); margin: 0; font-size: 0.9rem; }

/* =========================================
   FOOTER — donkerblauw
   ========================================= */

.site-footer {
  background: var(--brand);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line-d);
}

.footer-col h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.footer-col h4 {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  margin: 0 0 14px;
}

.footer-col p { margin: 0 0 10px; font-size: 0.87rem; }

.footer-nav { display: grid; align-content: start; gap: 2px; }

.footer-list {
  margin: 0; padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.footer-list li {
  font-size: 0.85rem;
  padding-left: 14px;
  position: relative;
}

.footer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.footer-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  transition: color 0.15s;
  display: block;
  padding: 4px 0;
}

.footer-link:hover { color: #fff; }

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}

.footer-bottom p { margin: 0; }

/* =========================================
   INTRO ANIMATION — blauw
   ========================================= */

.intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--brand);
}

.intro__inner {
  width: min(720px, 90vw);
  text-align: center;
  color: #fff;
}

.intro__name {
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
}

.swoosh-track {
  position: relative;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.06) 25%,
    rgba(255,255,255,0.14) 52%,
    transparent 100%
  );
  overflow: hidden;
}

.swoosh-track::after {
  content: "";
  position: absolute;
  inset: 20px 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

.intro__drone {
  position: absolute;
  z-index: 2;
  top: 3px;
  left: -150px;
  width: 120px;
  filter: drop-shadow(0 4px 8px rgba(255,255,255,0.12));
  animation: swoosh-flight 0.8s cubic-bezier(0.32, 0.88, 0.35, 0.98) forwards;
}

.intro--hide { animation: intro-fade 0.28s ease forwards; }

@keyframes swoosh-flight {
  from { transform: translateX(0) translateY(0) rotate(-5deg); }
  55%  { transform: translateX(410px) translateY(-3px) rotate(0deg); }
  to   { transform: translateX(860px) translateY(1px) rotate(4deg); }
}

@keyframes intro-fade { to { opacity: 0; visibility: hidden; } }

/* =========================================
   REVEAL
   ========================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.22s; }
[data-reveal-delay="3"] { transition-delay: 0.34s; }
[data-reveal-delay="4"] { transition-delay: 0.46s; }

/* =========================================
   FOCUS
   ========================================= */

a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* =========================================
   RESPONSIVE — 1024px
   ========================================= */

@media (max-width: 1024px) {
  .metrics-grid article { padding: 48px 28px; }
  .feature-tile { min-height: 360px; }
  .feature-tile__content { padding: 36px 36px; }
  .service-detail > div { padding: 52px 44px; }
}

/* =========================================
   RESPONSIVE — 980px
   ========================================= */

@media (max-width: 980px) {
  .service-preview-grid,
  .pricing-grid,
  .doelgroep-grid,
  .faq-grid,
  .contact-layout,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-grid article {
    border-right: none;
    border-bottom: 1px solid var(--line-d);
  }

  .metrics-grid article:nth-child(odd)  { border-right: 1px solid var(--line-d); }
  .metrics-grid article:nth-child(3),
  .metrics-grid article:nth-child(4)    { border-bottom: none; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }

  .intro-copy .container { grid-template-columns: 1fr; gap: 40px; }

  .service-detail { grid-template-columns: 1fr; }
  .service-detail img { min-height: 300px; height: 300px; }
  .service-detail.reverse img { order: 0; }
}

/* =========================================
   RESPONSIVE — 768px
   ========================================= */

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-tile { min-height: 300px; }
}

/* =========================================
   RESPONSIVE — 720px
   ========================================= */

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .statement-section { padding: 88px 0 72px; }

  .header-grid {
    flex-wrap: wrap;
    padding: 8px 0;
    min-height: auto;
    gap: 0;
  }

  .brand { flex: 1; gap: 8px; }
  .brand img { height: 30px; }
  .brand span { font-size: 0.82rem; }

  .menu-toggle { display: inline-flex; }
  .btn-nav-cta { display: none !important; }

  .site-nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 6px 0 10px;
  }

  .site-nav.open { display: flex; }

  .site-nav a:not(.btn) {
    width: 100%;
    text-align: center;
    padding: 11px;
  }

  .hero-splash { min-height: 100svh; }

  .hero-splash__content {
    padding-bottom: clamp(80px, 14vh, 130px);
  }

  .hero-splash__content h1 {
    font-size: clamp(3rem, 14vw, 5.5rem);
  }

  .hero-scroll { display: none; }

  .metrics-grid,
  .service-preview-grid,
  .pricing-grid,
  .doelgroep-grid,
  .faq-grid,
  .contact-layout,
  .process-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .metrics-grid article {
    border-right: none;
    border-bottom: 1px solid var(--line-d);
  }

  .metrics-grid article:last-child { border-bottom: none; }

  .cta-banner { padding: 72px 24px; }

  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }

  .footer-main { grid-template-columns: 1fr; gap: 28px; }

  @keyframes swoosh-flight {
    from { transform: translateX(0) translateY(0) rotate(-5deg); }
    55%  { transform: translateX(250px) translateY(-3px) rotate(0deg); }
    to   { transform: translateX(480px) translateY(1px) rotate(4deg); }
  }
}

@media (max-width: 480px) {
  .brand img { height: 26px; }
  .hero-splash__content h1 { font-size: clamp(2.6rem, 14vw, 4rem); }
  .statement-headline { font-size: clamp(2.4rem, 12vw, 5rem); }
  .feature-stat { font-size: clamp(3.5rem, 16vw, 6rem); }
}
