/* ═══════════════════════════════════════════════════
   Mooigeschilderdhuis — Premium Design System
   ═══════════════════════════════════════════════════ */

:root {
  /* Color system */
  --navy:          #06102b;
  --navy-mid:      #0d2470;
  --navy-light:    #132d6e;
  --blue:          #2563eb;
  --blue-dark:     #1d4ed8;
  --sky:           #38bdf8;
  --amber:         #f59e0b;
  --cream:         #fafaf7;
  --gray-50:       #f8fafc;
  --gray-100:      #f1f5f9;
  --gray-200:      #e2e8f0;
  --gray-400:      #94a3b8;
  --gray-500:      #64748b;
  --gray-700:      #334155;
  --gray-900:      #0f172a;
  --white:         #ffffff;

  /* Semantic + legacy aliases */
  --primary:       var(--navy);
  --primary-dark:  var(--navy);
  --primary-light: var(--blue);
  --accent:        var(--blue);
  --accent-light:  var(--sky);
  --text-dark:     var(--gray-900);
  --text-light:    var(--gray-500);
  --bg-light:      var(--gray-50);
  --bg-white:      #ffffff;
  --border:        var(--gray-200);
  --radius:        var(--r);

  /* Tinted shadows */
  --shadow-sm:     0 1px 3px rgba(6,16,43,.07), 0 1px 2px rgba(6,16,43,.04);
  --shadow:        0 4px 16px rgba(6,16,43,.09), 0 2px 6px rgba(6,16,43,.05);
  --shadow-lg:     0 12px 40px rgba(6,16,43,.14), 0 4px 12px rgba(6,16,43,.07);
  --shadow-blue:   0 8px 30px rgba(37,99,235,.30);
  --shadow-hover:  0 20px 50px rgba(6,16,43,.16);

  /* Transitions */
  --t:        all 0.22s cubic-bezier(0.4,0,0.2,1);
  --t-spring: all 0.38s cubic-bezier(0.34,1.56,0.64,1);
  --t-slow:   all 0.55s cubic-bezier(0.4,0,0.2,1);

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

/* ── RESET & BASE ────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,h2,h3,h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); letter-spacing: -0.02em; }
h4 { font-size: 1rem; letter-spacing: -0.01em; }
p  { line-height: 1.78; color: var(--text-light); max-width: 64ch; }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.bg-light   { background: var(--bg-light); }

/* ── SECTION HEADER ──────────────────────────────── */
.section-header { margin-bottom: 60px; }
.section-header .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,99,235,.07);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(37,99,235,.15);
}
.section-header h2 { color: var(--navy); margin-bottom: 14px; }
.section-header p  { font-size: 1.05rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  border: none;
  font-family: inherit;
  letter-spacing: -0.01em;
  will-change: transform;
}
.btn:active { transform: scale(0.97) !important; }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(37,99,235,.42);
}
.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ── HEADER ─────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--t);
}
#header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--t);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.logo img { height: 50px; }
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.logo-text span { color: var(--blue); }

nav ul { display: flex; list-style: none; gap: 2px; align-items: center; }
nav ul li a {
  padding: 8px 13px;
  border-radius: var(--r-sm);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--t);
  letter-spacing: -0.01em;
}
nav ul li a:hover { background: var(--gray-100); color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}
.header-phone i { color: var(--blue); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); transition: var(--t); border-radius: 2px; }

/* ── HERO ────────────────────────────────────────── */
#hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--navy);
}

/* Onderaan hero: vloeiend vervagen naar zwart (scroll sectie) */
#hero .hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, #000 100%);
  z-index: 6;
  pointer-events: none;
}

/* Gradient overlay: video zichtbaar, tekst leesbaar */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(6,16,43,.90) 0%, rgba(6,16,43,.35) 55%, rgba(6,16,43,.55) 100%),
    linear-gradient(to bottom, rgba(6,16,43,.20) 0%, rgba(6,16,43,.00) 40%, rgba(6,16,43,.75) 100%);
  z-index: 3;
  pointer-events: none;
}

/* Blauw gloed accent */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 55% at 4% 50%,  rgba(37,99,235,.20) 0%, transparent 65%),
    radial-gradient(ellipse 25% 25% at 96% 85%,  rgba(245,158,11,.10) 0%, transparent 55%);
  z-index: 4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,.14);
  border: 1px solid rgba(245,158,11,.28);
  color: #fbbf24;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-badge i { color: #fbbf24; }

.hero-text h1 {
  color: #fff;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.03;
}
.hero-text h1 span {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text > p {
  color: rgba(255,255,255,.7);
  font-size: 1.08rem;
  margin-bottom: 36px;
  max-width: 52ch;
  line-height: 1.78;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.05em;
}
.hero-stat span {
  font-size: 0.76rem;
  color: rgba(255,255,255,.5);
  margin-top: 5px;
  display: block;
}

/* Hero form card — glassmorphism */
.hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-card h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.form-group { margin-bottom: 10px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-family: inherit;
  transition: var(--t);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group select { color: rgba(255,255,255,.7); }
.form-group select option { background: #0d2470; color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(37,99,235,.7);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(37,99,235,.18);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.privacy-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,.38);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.privacy-note i { color: var(--sky); }

/* ── SECTIE OVERGANGEN ───────────────────────────── */

/* Scroll sectie: boven en onder in zwart vervagen */
#transform-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
  z-index: 40;
  pointer-events: none;
}
#transform-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--blue) 0%, transparent 100%);
  z-index: 40;
  pointer-events: none;
}

/* Trust bar: boven afgerond in blauw */
#trust-bar {
  position: relative;
}
#trust-bar::before {
  content: '';
  position: absolute;
  top: -60px; left: 0; right: 0;
  height: 60px;
  background: var(--blue);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 0;
}

/* Diensten → Why: subtiele kleurovergang */
#diensten { position: relative; }
#diensten::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}

/* Contact sectie: gebogen bovenkant */
#contact-section {
  position: relative;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
  padding-top: 140px;
}

/* Footer: gebogen bovenkant */
footer {
  position: relative;
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
  margin-top: -1px;
}

/* ── TRUST BAR ───────────────────────────────────── */
#trust-bar {
  background: var(--blue);
  padding: 0;
  overflow: hidden;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  padding: 14px 26px;
  font-size: 0.83rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.18);
  white-space: nowrap;
  transition: var(--t);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: #fff; }
.trust-item i { color: rgba(255,255,255,.65); font-size: 0.85rem; }

/* ── SERVICES ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-200);
  transition: var(--t-spring);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37,99,235,.18);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(37,99,235,.08);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--t);
}
.service-icon i { font-size: 1.35rem; color: var(--blue); transition: var(--t); }
.service-card:hover .service-icon { background: var(--blue); }
.service-card:hover .service-icon i { color: #fff; }

.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p  { margin-bottom: 18px; font-size: 0.9rem; max-width: none; }
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--t);
}
.service-card a:hover { gap: 10px; }

.service-card.featured {
  background: linear-gradient(145deg, var(--navy) 0%, #0d2470 100%);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(6,16,43,.25);
}
.service-card.featured::before { background: linear-gradient(to right, var(--amber), #fcd34d); }
.service-card.featured .service-icon { background: rgba(255,255,255,.12); }
.service-card.featured:hover .service-icon { background: rgba(255,255,255,.18); }
.service-card.featured .service-icon i { color: #fff; }
.service-card.featured h3 { color: #fff; }
.service-card.featured p  { color: rgba(255,255,255,.68); }
.service-card.featured a  { color: #93c5fd; }

/* ── WHY ─────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 26px; }
.why-feature { display: flex; gap: 18px; align-items: flex-start; }
.why-feature-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(37,99,235,.07);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.05rem;
  transition: var(--t);
}
.why-feature:hover .why-feature-icon { background: var(--blue); color: #fff; }
.why-feature-text h4 { color: var(--navy); margin-bottom: 5px; }
.why-feature-text p  { font-size: 0.9rem; margin: 0; max-width: none; }

.why-visual {
  background: linear-gradient(145deg, var(--navy), #0d2470);
  border-radius: var(--r-xl);
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(6,16,43,.30);
}
.why-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(37,99,235,.3) 0%, transparent 65%);
  pointer-events: none;
}
.why-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(56,189,248,.18) 0%, transparent 65%);
  pointer-events: none;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.guarantee-badge i { font-size: 2rem; color: #fbbf24; }
.guarantee-badge strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  display: block;
  color: #fff;
  letter-spacing: -0.05em;
}
.guarantee-badge span { font-size: 0.8rem; opacity: 0.65; }

.why-visual h3 { color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.why-visual > p { color: rgba(255,255,255,.68); margin-bottom: 28px; position: relative; z-index: 1; max-width: none; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; position: relative; z-index: 1; }
.stat-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 16px;
  text-align: center;
}
.stat-box strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  display: block;
  letter-spacing: -0.05em;
  line-height: 1;
}
.stat-box span { font-size: 0.74rem; color: rgba(255,255,255,.55); margin-top: 4px; display: block; }

/* ── ABONNEMENT ──────────────────────────────────── */
.abonnement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.abonnement-steps { display: flex; flex-direction: column; gap: 14px; }
.abonnement-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200);
  transition: var(--t);
}
.abonnement-step:hover {
  transform: translateX(5px);
  border-color: rgba(37,99,235,.2);
  box-shadow: var(--shadow);
}
.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--blue);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-text h4 { color: var(--navy); margin-bottom: 4px; }
.step-text p  { font-size: 0.87rem; margin: 0; max-width: none; }

.timeline-chart {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-200);
  position: sticky;
  top: 100px;
}
.timeline-chart h4 { color: var(--navy); margin-bottom: 24px; text-align: center; }
.timeline-year { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.timeline-label { width: 65px; color: var(--text-light); font-size: 0.76rem; flex-shrink: 0; }
.timeline-bar {
  height: 28px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 600;
  min-width: 80px;
  transition: var(--t-spring);
}
.timeline-bar:hover { filter: brightness(1.1); }
.bar-start { background: var(--blue); }
.bar-klein { background: var(--sky); }
.bar-vol   { background: var(--navy); }
.bar-rest  { background: var(--gray-200); color: var(--text-light); min-width: 50px; }

/* ── PRICING ─────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 50px; }
.pricing-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: var(--t-spring);
  position: relative;
  will-change: transform;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pricing-card.popular {
  background: var(--navy);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(6,16,43,.28);
}
.pricing-card.popular:hover { transform: translateY(-8px) scale(1.02); }
.pricing-card.popular::before {
  content: 'Meest gekozen';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-icon { font-size: 2rem; margin-bottom: 14px; }
.pricing-card h3 { color: var(--navy); margin-bottom: 6px; }
.pricing-card.popular h3 { color: #fff; }
.price {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin: 16px 0 4px;
  letter-spacing: -0.07em;
}
.pricing-card.popular .price { color: #fff; }
.price sup { font-size: 1.4rem; vertical-align: top; margin-top: 10px; opacity: 0.65; }
.price sub { font-size: 0.88rem; font-weight: 400; opacity: 0.55; letter-spacing: 0; }
.period { font-size: 0.82rem; margin-bottom: 24px; }
.pricing-card.popular .period { color: rgba(255,255,255,.55); }

.pricing-features { list-style: none; margin-bottom: 28px; text-align: left; }
.pricing-features li {
  padding: 8px 0;
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card.popular .pricing-features li {
  border-bottom-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.82);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i.fa-check { color: var(--blue); }
.pricing-card.popular .pricing-features li i.fa-check { color: #93c5fd; }
.pricing-features li i.fa-times { color: var(--gray-200); }

/* ── AREAS ───────────────────────────────────────── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); gap: 12px; margin-top: 36px; }
.area-card {
  background: #fff;
  border-radius: var(--r);
  padding: 13px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--t);
  border: 1.5px solid var(--gray-200);
  font-size: 0.87rem;
}
.area-card:hover {
  border-color: var(--blue);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.area-card i { color: var(--blue); font-size: 0.78rem; }

/* ── REVIEWS ─────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-200);
  transition: var(--t);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.review-stars { color: #fbbf24; margin-bottom: 14px; font-size: 0.98rem; letter-spacing: 2px; }
.review-text {
  font-style: italic;
  margin-bottom: 18px;
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.78;
  max-width: none;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.87rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.reviewer-location { font-size: 0.77rem; color: var(--text-light); }
.review-source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}
.review-source i { color: #4285f4; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); overflow: hidden; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  transition: var(--t);
  font-size: 0.95rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.faq-question:hover { color: var(--blue); }
.faq-question i { transition: var(--t); font-size: 0.83rem; flex-shrink: 0; margin-left: 16px; color: var(--text-light); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); }
.faq-answer p { padding-bottom: 20px; font-size: 0.92rem; line-height: 1.78; max-width: none; }
.faq-item.active .faq-answer { max-height: 320px; }

/* ── CONTACT ─────────────────────────────────────── */
#contact-section {
  background: linear-gradient(145deg, #04091c, #0d2470);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
#contact-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 60%);
  pointer-events: none;
}
#contact-section::after {
  content: '';
  position: absolute;
  bottom: -90px; left: -90px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(56,189,248,.11) 0%, transparent 60%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-info h2 { color: #fff; margin-bottom: 16px; }
.contact-info p  { color: rgba(255,255,255,.68); margin-bottom: 32px; max-width: none; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 14px; color: #fff; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-form-card {
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,.22);
}
.contact-form-card h3 { color: #fff; margin-bottom: 24px; }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: #020814; color: rgba(255,255,255,.55); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  display: block;
  letter-spacing: -0.04em;
}
.footer-brand p { font-size: 0.86rem; line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: var(--t);
  font-size: 0.85rem;
}
.social-link:hover { background: var(--blue); color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.87rem; margin-bottom: 16px; letter-spacing: -0.01em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.45); font-size: 0.84rem; transition: var(--t); }
.footer-links a:hover { color: rgba(255,255,255,.88); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.79rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.38); transition: var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ── WHATSAPP FLOAT ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--t-spring);
  animation: wpulse 2.8s infinite;
  will-change: transform;
}
.whatsapp-float:hover { transform: scale(1.12) !important; }
@keyframes wpulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.08); }
}

/* ── PAGE HERO (service pages) ───────────────────── */
.page-hero { background: linear-gradient(145deg, #06102b, #0d2470, #1565c0); padding: 140px 0 80px; color: #fff; }
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero p  { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 32px; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.5); font-size: 0.86rem; transition: var(--t); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 0.68rem; color: rgba(255,255,255,.32); }
.breadcrumb span { color: #fff; font-size: 0.86rem; }

/* ── HERO VIDEO (z-index 1 = onderste laag) ─────── */
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0.80;
  pointer-events: none;
  filter: saturate(1.3) brightness(0.80) contrast(1.05);
}

/* ── HERO CANVAS (z-index 2 = over video) ────────── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.20;
  will-change: contents;
}
/* z-index 3 = ::before overlay  */
/* z-index 4 = ::after glow      */
/* z-index 10 = .hero-content    */

/* ── TRANSFORM / SCROLL SCRUBBING ────────────────── */
#transform-section {
  position: relative;
  height: 350vh;
}

.transform-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* Image layers */
.t-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.t-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: filter;
}

/* Video scrubbing layer */
.t-video-layer {
  z-index: 8;
  display: block;
  background: #000;
}
.t-video-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.2) brightness(0.9) contrast(1.05);
}

/* Before: desaturated, faded */
.t-before img {
  filter: grayscale(90%) brightness(0.55) contrast(0.95);
}

/* After: vibrant, warm */
.t-after {
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}
.t-after img {
  filter: saturate(1.35) brightness(1.08) contrast(1.05);
}

/* Brush edge — glowing divider */
.t-brush {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: none;
  background: rgba(255,255,255,0.95);
  box-shadow:
    -30px 0 50px rgba(255,255,255,.18),
    -8px  0 20px rgba(255,255,255,.50),
     0    0 10px rgba(255,255,255,1),
     8px  0 20px rgba(255,255,255,.50),
     30px 0 50px rgba(255,255,255,.18);
  will-change: left;
}
.t-brush::before,
.t-brush::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 16px 4px rgba(255,255,255,.7);
}
.t-brush::before { top: 15%; }
.t-brush::after  { top: 75%; }

/* Labels */
.t-label {
  position: absolute;
  top: 24px;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  z-index: 25;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.t-label-left {
  left: 24px;
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.15);
}
.t-label-right {
  right: 24px;
  background: rgba(255,255,255,.9);
  color: var(--navy);
}

/* Gradient overlay — vignette rondom voor diepte */
.transform-sticky::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 35%, rgba(0,0,0,.65) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.55) 0%, transparent 25%, transparent 70%, rgba(0,0,0,.60) 100%);
  z-index: 15;
  pointer-events: none;
}

/* Tekst — gecentreerd midden in beeld */
.t-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 30;
  padding: 0 24px;
}
.t-phase {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  max-width: 680px;
}
.t-phase.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.t-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,99,235,.85);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}
.t-phase h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 16px;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.t-phase p {
  color: rgba(255,255,255,.80);
  font-size: 1.1rem;
  max-width: 52ch;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  line-height: 1.7;
}

/* Progress bar at bottom */
.t-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255,255,255,.15);
  z-index: 30;
}
.t-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--blue), var(--sky));
  transition: width 0.1s linear;
  will-change: width;
}

/* Scroll hint */
.transform-sticky::after {
  content: 'Scroll om te ontdekken ↓';
  position: absolute;
  bottom: 28px;
  right: 32px;
  color: rgba(255,255,255,.45);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  z-index: 30;
  pointer-events: none;
  text-transform: uppercase;
}

/* ── SCROLL ANIMATIONS ───────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.11s; }
.fade-in-delay-2 { transition-delay: 0.22s; }

/* Hero entrance animations */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge   { animation: heroFadeIn 0.7s ease 0.15s both; }
.hero-text h1 { animation: heroSlideUp 0.85s cubic-bezier(0.4,0,0.2,1) 0.25s both; }
.hero-text > p { animation: heroSlideUp 0.8s ease 0.4s both; }
.hero-buttons  { animation: heroFadeIn 0.7s ease 0.55s both; }
.hero-stats    { animation: heroFadeIn 0.7s ease 0.65s both; }
.hero-card     { animation: heroSlideUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.35s both; }

/* Success message */
.success-msg {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  color: #10b981;
  padding: 14px 18px;
  border-radius: var(--r);
  margin-bottom: 16px;
  display: none;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
}
.success-msg.show { display: flex; }

/* ── COOKIE BANNER ───────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 780px;
  background: rgba(6,16,43,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(37,99,235,.2);
  padding: 20px 24px;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
  pointer-events: none;
}
#cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
#cookie-banner.hide {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
  pointer-events: none;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(245,158,11,.4));
}
.cookie-text {
  flex: 1;
  min-width: 200px;
}
.cookie-text p {
  color: rgba(255,255,255,.85);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 0 4px;
  max-width: none;
}
.cookie-privacy {
  color: #60a5fa;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--t);
}
.cookie-privacy:hover { color: #93c5fd; }

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-actions .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  white-space: nowrap;
}
.cookie-decline-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--t);
  font-family: inherit;
  white-space: nowrap;
}
.cookie-decline-btn:hover {
  border-color: rgba(255,255,255,.4);
  color: rgba(255,255,255,.9);
}

@media (max-width: 600px) {
  #cookie-banner { bottom: 12px; width: calc(100% - 24px); padding: 16px 18px; }
  .cookie-inner  { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  .cookie-decline-btn { flex: 1; text-align: center; }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width:1024px) {
  .hero-content          { grid-template-columns: 1fr; gap: 40px; }
  .hero-text             { text-align: center; }
  .hero-text > p         { margin-left: auto; margin-right: auto; }
  .hero-buttons          { justify-content: center; }
  .hero-stats            { justify-content: center; flex-wrap: wrap; }
  .why-grid              { grid-template-columns: 1fr; gap: 50px; }
  .abonnement-grid       { grid-template-columns: 1fr; }
  .contact-grid          { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .services-grid         { grid-template-columns: repeat(2,1fr); }
  .pricing-grid          { grid-template-columns: 1fr; }
  .reviews-grid          { grid-template-columns: 1fr; }
  .timeline-chart        { position: static; }
}
@media (max-width:768px) {
  nav {
    display: none;
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(22px);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  nav.open              { display: flex; }
  nav ul                { flex-direction: column; width: 100%; }
  nav ul li             { width: 100%; }
  nav ul li a           { display: block; padding: 12px 14px; }
  .hamburger            { display: flex; }
  .section              { padding: 64px 0; }
  .footer-grid          { grid-template-columns: 1fr; }
  .footer-bottom        { justify-content: center; text-align: center; }
  .services-grid        { grid-template-columns: 1fr; }
  .trust-items          { flex-direction: column; align-items: center; }
  .trust-item           { border-right: none; border-bottom: 1px solid rgba(255,255,255,.14); width: 100%; justify-content: center; padding: 12px; }
  .trust-item:last-child { border-bottom: none; }
  .areas-grid           { grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); }
  .header-phone span    { display: none; }
  .form-row             { grid-template-columns: 1fr; }
}
@media (max-width:480px) {
  .hero-buttons { flex-direction: column; }
  .btn-lg       { width: 100%; justify-content: center; }
  .stat-grid    { grid-template-columns: 1fr 1fr; }
}
