:root {
  --primary: #03C3D1;
  --primary-dark: #03C3D1;
  --accent: #03C3D1;
  --bg: #f3f3f3;
  --bg-secondary: #E8E8EF;
  --bg-tertiary: #AEECF0;
  --text-primary: #0D0D0D;
  --text-secondary: rgba(0, 0, 0, 0.6);
  --text-accent: #03C3D1;
  --text-muted: #9CA3AF;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(0, 0, 0, 0.08);
  --nav-bg: rgba(243, 243, 243, 0.75);
  --container-max: 1200px;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

/* FIX: media query staat nu BUITEN :root — dark mode werkt nu correct */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --bg-secondary: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #D1D5DB;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --nav-bg: rgba(0, 0, 0, 0.75);
  }
}
/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Dwingt Android om niet stiekem breder te worden */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%; /* Voorkomt dat de body voorbij de schermrand rekt */
  padding-bottom: env(safe-area-inset-bottom);
}

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--spacing-md); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0; background: var(--nav-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.4s ease, border-color 0.4s ease;
}

/* CHANGE 1: nav-container als 3-kolom grid zodat center echt centraal staat */
.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--text-primary); font-weight: 600; transition: color 0.4s ease; }
.nav-logo { width: 44px; height: 44px; }

/* CHANGE 1: nav-center staat in het midden, nav-right rechts uitgelijnd */
.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
}

.nav-center a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-center a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.4s ease, transform 0.2s ease;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* CHANGE 3: Nav dark mode wanneer over features sectie */
.nav.nav-dark {
  background: rgba(10, 10, 10, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav.nav-dark .nav-brand {
  color: #ffffff;
}

.nav.nav-dark .nav-center a {
  color: rgba(255, 255, 255, 0.7);
}

img {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img.loaded {
    opacity: 1;
}

/* Cookie Banner Basis */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 0;
    width: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

.cookie-container {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem 2rem;
    display: flex;
    
    /* DESKTOP DEFAULT: Alles op 1 lijn */
    flex-direction: row; 
    align-items: center;
    justify-content: space-between;
    
    gap: 2rem;
    width: 100%;
    max-width: var(--container-max);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cookie-buttons {
    display: flex;
    flex-direction: row; /* Knoppen altijd naast elkaar */
    gap: 1rem;
    flex-shrink: 0; /* Zorgt dat buttons niet in elkaar gedrukt worden op desktop */
}

.cookie-buttons .btn {
    white-space: nowrap; /* Tekst loopt NOOIT om */
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden { display: none !important; }

/* HERO HEADER */
.hero-header {
  padding: calc(var(--spacing-md) + 80px) 0 var(--spacing-md);
  text-align: center; max-width: 720px; margin: 0 auto;
}

.hero-title {
  font-size: 70px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.gradient-text { color: var(--text-primary); font-weight: 600; }
.hero-subtitle { font-size: 1.3rem; color: var(--text-secondary); margin-bottom: 2rem; font-weight: 300; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; }

/* CTA BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 195, 209, 0.35);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.875rem;
}

/* SCROLL TEXT SECTION */
.scroll-text-section {
  padding: var(--spacing-xl) 0;
  text-align: left;
}

.reveal-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.5;
  color: var(--text-primary);
}

.reveal-paragraph {
  display: block;
  margin-bottom: 2.5rem;
}

.reveal-paragraph:last-child {
  margin-bottom: 0;
}

/* inline spans — text flows naturally, each sentence fades in */
.reveal-line {
  display: inline;
  opacity: 0;
  transition: opacity 0.7s ease-out;
}

.reveal-line.visible {
  opacity: 1;
}

/* PHONE CAPTION */
.phone-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* HERO VISUAL (Phone + Overlays) */
/* GEWIJZIGD: overflow: visible zodat schaduwen niet worden afgeknipt */
.hero-visual-section { padding-bottom: none; overflow: visible; }
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-container { position: relative; z-index: 1; }

/* ----- START IPHONE 16 PRO AANPASSINGEN ----- */
.phone-mockup {
  position: relative;
  width: 275px; 
  height: 570.4px;
  /* Nieuw: Titanium Metallic glans effect */
  background: linear-gradient(135deg, 
    #9ea1a5 0%, 
    #4f5154 15%, 
    #2a2b2e 50%, 
    #4f5154 85%, 
    #9ea1a5 100%
  );
  border-radius: 40px;
  padding: 8px; /* Dunnere bezels */
  box-shadow: 
    inset 0 0 3px 1px rgba(255,255,255,0.4), /* Metallic highlight aan de binnenrand */
    0 0 0 1px rgba(0,0,0,0.8), /* Strakke buitenlijn */
    0 0px 20px rgba(0,0,0,0.4); /* Diepe drop shadow */
  z-index: 10;
}

/* Fysieke Knoppen met Metallic Finish */
.buttons-left, .power-btn, .camera-control {
  position: absolute;
  width: 3px;
  border-radius: 2px;
  z-index: -1;
}

.buttons-left { left: -3px; top: 100px; width: 3px; height: 120px; background: transparent; }

/* 3D cilinder effect voor de standaard knoppen */
.action-btn, .vol-up, .vol-down, .power-btn {
  background: linear-gradient(to right, #444, #888, #333);
}

.action-btn { position: absolute; top: 0; width: 3px; height: 24px; left: 0; border-radius: 2px 0 0 2px; }
.vol-up { position: absolute; top: 40px; width: 3px; height: 46px; left: 0; border-radius: 2px 0 0 2px; }
.vol-down { position: absolute; top: 96px; width: 3px; height: 46px; left: 0; border-radius: 2px 0 0 2px; }

.power-btn { right: -3px; top: 150px; height: 80px; border-radius: 0 2px 2px 0; }

/* Camera control heeft een holle / ingedrukte look */
.camera-control { 
  right: -3px; top: 360px; height: 40px; 
  background: linear-gradient(to bottom, #333, #999, #333); 
  border-radius: 0 2px 2px 0;
  box-shadow: inset 1px 0 3px rgba(0,0,0,0.8);
}

.phone-screen { 
    width: 100%; height: 100%; border-radius: 32px; overflow: hidden; 
    background: #000; position: relative; box-shadow: inset 0 0 15px rgba(0,0,0,0.8); 
}
.phone-screenshot { width: 100%; height: 100%; object-fit: cover; top: 4px;}

/* Dynamic Island */
.dynamic-island {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 20px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

/* Nieuw: Camera Lens glinstering (rechterkant island) */
.dynamic-island::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  /* Donkerblauwe/paarse lens reflectie */
  background: radial-gradient(circle at 35% 35%, #2c3e66 0%, #050505 55%);
  box-shadow: 
    inset 0 0 2px rgba(255,255,255,0.5), /* Felle glans op het glas */
    0 0 1px rgba(255,255,255,0.1);
}

/* Nieuw: FaceID Sensor (linkerkant island) */
.dynamic-island::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #1a1a1a 0%, #000 60%);
  box-shadow: inset 0 0 1px rgba(255,255,255,0.15);
}

/* Scherm reflectie */
.phone-reflection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 40%);
  pointer-events: none;
  z-index: 5;
}
/* ----- EINDE IPHONE 16 PRO AANPASSINGEN ----- */

/* De container die de telefoon afsnijdt */
.feature-phone-crop {
  width: 100%;
  height: 150px; /* Hoogte aanpassen om te bepalen hoeveel je ziet */
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  position: relative;
}

.phone-mockup.mini {
  transform: scale(0.7) translateZ(0); /* translateZ(0) dwingt hardware-acceleratie af tegen render-bugs */
  transform-origin: top center;
  box-shadow: none; 
  border: 1px solid var(--glass-border); 
  pointer-events: none; 
  
  /* De keiharde garanties tegen het in elkaar drukken (squishing): */
  flex: 0 0 275px; /* Mag niet groeien, mag niet krimpen, startwaarde is altijd exact 275px */
  min-width: 275px; /* Negeert elke foute berekening van de mobiele browser */
}

/* Geen hover effecten voor de mini versie */
.feature-item:hover .phone-mockup.mini {
  transform: scale(0.7); /* Blijft statisch */
}

/* PHONE SECTION OVERLAY */
.phone-section-overlay {
  position: relative;
  width: 100%;
  margin-top: -7rem;
  z-index: 5;
  background: var(--bg);
  border-top: 1px solid var(--glass-border);
  padding-bottom: 1rem;
  text-align: center;
  min-height: 6rem; /* zorgt dat de overlay zelf genoeg hoogte heeft */
}

.phone-overlay-text {
  position: absolute;
  top: 1.5rem; /* afstand vanaf de visuele bovenkant van de overlay */
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 1.2rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  font-weight: 300;
}

/* GLASS CARDS */
.glass-card {
  position: absolute;
  width: var(--card-width, 360px);
  height: auto;
  padding: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  /* CHANGE 2: standaard van rechts binnenkomen (voor rechter kaarten) */
  transform: translateX(120px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 20;
}

.glass-card .card-header h3 {
  font-weight: 350;   /* 500 is medium, 400 is normaal/slank */
  font-size: 1.1rem;  /* Optioneel: de grootte iets verfijnen */
  letter-spacing: 0.01em;
}

/* CHANGE 2: linker kaarten komen van links — card-1 en card-5 staan links */
.card-signin,
.card-spots {
  transform: translateX(-120px);
}

/* CHANGE 2: zichtbaar = op de juiste positie */
.glass-card.visible { opacity: 1; transform: translateX(0); }

/* Posities */
.card-types { right: 10%; top: 18%; width: 360px; }
.card-signin { left: 16%; top: 5%; width: 260px; }
.card-spots { left: 8%; top: 15%; width: 360px; }
.card-reviews { right: 8%; top: 5%; width: 360px; }
.card-search { right: 20%; bottom: 5%; width: 280px; }
.card-content { display: flex; flex-direction: column; gap: 12px; width: 100%; margin-bottom: 16px; }
.card-img { width: 100%; height: auto; display: block; border-radius: 12px; }
.card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; width: 100%; }
.pill-hstack { 
  display: flex; 
  gap: 8px; 
  width: 100%; 
  background: rgba(0,0,0,0.05); 
  border-radius: 24px; 
  padding: 4px; 
  margin-bottom: 16px; 
}
.pill { padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; flex: 1; text-align: center; }
.pill-white { background: #fff; color: #000; }
.pill-transparent { color: var(--text-secondary); }
.search-bar-ios { background: #F6F6F6; border-radius: 12px; padding: 12px; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; width: 100%; }
.search-icon { width: 18px; height: 18px; stroke: var(--text-muted); }
.card-footer { display: flex; justify-content: space-between; align-items: center; width: 100%;}
.plus-btn, .plus-btn-large {
  background: var(--primary); color: #fff; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  flex-shrink: 0;
}
.plus-btn { width: 32px; height: 32px; }
.plus-btn-large { width: 40px; height: 40px; font-size: 1.5rem; }

.features-wrapper {
  position: relative;
  /* We halen de height-instelling hier weg, die doen we in JS */
  z-index: 20; /* Hoger dan de hero secties */
  pointer-events: none; /* Zorg dat je nog op knoppen in de vorige sectie kunt klikken zolang deze niet in beeld is */
  margin-top: var(--spacing-xl);
}

.features {
  padding: var(--spacing-xl) 0;
  background: var(--primary);
  border-radius: 40px 40px 0 0;
  position: relative; /* Verander van sticky naar relative voor natuurlijke flow */
  min-height: fit-content; /* Past zich aan de inhoud aan */
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: auto;
}

/* CHANGE 3: tekst en items altijd wit/licht in features */
.features .section-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: 2.5rem;
}

/* De container voor de screenshots */
.feature-visual {
  display: flex;
  flex-direction: column; /* Zet de foto's onder elkaar */
  gap: 8px;              /* Ruimte tussen de foto's */
  margin-top: 1.5rem;
  align-items: center;    /* Centreert de foto's horizontaal */
}

/* De afbeeldingen zelf */
.feature-screenshot {
  height: 45px;          /* Vaste hoogte: pas dit aan naar wens */
  width: auto;            /* Breedte past zich aan aan de ratio (geen vervorming) */
  max-width: 100%;        /* Zorgt dat ze nooit breder worden dan de kaart */
  object-fit: contain;    /* Extra veiligheid tegen vervorming */
  background: transparent;
}

/* Zorg dat feature-items met visuals eventueel meer ruimte pakken */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center; /* Zorgt dat items niet onnodig uitrekken als de buurman langer is */
}

.feature-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85); /* lets minder transparant */
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: var(--text-primary); /* Gebruik de donkere tekstkleur */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 1.5s ease;
  flex: 0 0 320px; 
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item h3 {
  color: var(--primary); /* Maak de titel blauw voor contrast */
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.feature-item p {
  color: var(--text-secondary); /* Grijzere tekst voor de omschrijving */
}

.feature-icon { width: 48px; height: 48px; background: var(--primary); border-radius: 12px; margin: 0 auto 1rem; }

/* =========================================
   PAGE COMPONENTS
   ========================================= */

.page-section {
  padding: var(--spacing-md) 0 var(--spacing-xl);
}

/* Alleen voor pagina's zonder hero-header erboven */
.page-section-top {
  padding-top: calc(var(--spacing-lg) + 80px);
}

.page-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--glass-border);
  margin: 0 auto;
}

.page-card-sm { max-width: 600px; }
.page-card-lg { max-width: 960px; }

/* Form */
.form-group { margin-bottom: 1.8rem; }

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(3, 195, 209, 0.1);
}

.success-message {
    text-align: center;
    padding: 1rem 0;
    animation: fadeInUp 0.6s ease forwards;
}

.success-message h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography */
.page-card h1 { font-size: 2.5rem; margin-bottom: 0.5rem; font-weight: 500; }
.page-card h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; color: var(--primary); font-weight: 500; }
.page-card p  { margin-bottom: 1rem; color: var(--text-secondary); line-height: 1.6; }
.page-card ul { margin-bottom: 1.5rem; padding-left: 1.5rem; color: var(--text-secondary); }
.page-card li { margin-bottom: 0.5rem; }

.meta-text { opacity: 0.7; font-size: 0.9rem; margin-bottom: 2rem; display: block; }
.intro-box {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  background: rgba(0, 0, 0, 0.02);
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .intro-box { background: rgba(255, 255, 255, 0.05); }
  .form-group input { background: rgba(0, 0, 0, 0.3); border-color: rgba(255, 255, 255, 0.15); }
  .form-group input:focus { background: rgba(0, 0, 0, 0.5); }
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 1rem;
}

.social-icon {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: 1;
    transition: transform 0.2s ease; /* ← transform toevoegen */
}

.social-icon:hover {
    transform: scale(1.2); /* ← 20% vergroot, pas aan naar smaak */
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

/* footer-social heeft geen eigen margin-top meer nodig */
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* FOOTER */
.footer {
  padding: 4rem 0;
  padding-bottom: calc(4rem + env(safe-area-inset-bottom));
  text-align: center;
  background: #e6e6e6; /* Zelfde kleur als features */
  color: #000000; /* Lichte tekst */
  border-top: none; /* Lijn verwijderen */
}

.footer-copy {
  color: #000000;
}

.footer-links a {
  color: #000000; /* Witte links */
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* =========================================
   2. NIEUW: TABLET / IPAD (max-width: 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .cookie-container {
    flex-direction: column; /* Tekst boven, buttons onder */
    text-align: center;
    padding: 1.5rem 1.5rem; /* Goede padding boven/onder */
    gap: 24px;
    box-shadow: none;
  }

  .cookie-buttons {
    width: 100%; /* Groep pakt volle breedte */
  }

  .cookie-buttons .btn {
    flex: 1; /* Beide knoppen precies 50% breedte */
  }

  .hero-title { font-size: 3.5rem; }

  /* Glass cards strakker rond de telefoon positioneren */
  .glass-card { width: 280px; padding: 20px; }

  .card-types { right: 8%; top: 12%; width: 290px; }
  .card-signin { left: 12%; top: 3%; width: 240px; }
  .card-spots { left: 6%; top: 20%; width: 320px; }
  .card-reviews { right: 6%; top: -2%; width: 320px; }
  .card-search { right: 10%; bottom: 0%; width: 260px; }

  /* Features sectie: Horizontale swipe-slider */
  .features-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 20px 40px 20px;
    margin: 0 -20px;
  }
  
  .feature-item {
    flex: 0 0 320px; 
  }
}

/* Spacing, typografie, form */
@media (max-width: 768px) {
  .nav-container {
    grid-template-columns: auto 1fr auto;
  }
  .nav-brand span {
    display: none;
  }

  .cookie-container {
    flex-direction: column; /* Tekst boven, buttons onder */
    text-align: center;
    padding: 1rem 1rem; /* Goede padding boven/onder */
    gap: 12px;
    box-shadow: none;
  }

  /* Phone sectie: vaste hoogte met padding-top zodat schaduwen ruimte hebben */
  .hero-visual {
    height: 660px;
    padding: 2rem 20px 0;
  }

  .scroll-text-section {
    margin-bottom: var(--spacing-md);
  }

  .phone-section-overlay {
    margin-top: -6rem;
    padding-bottom: 1rem;
    margin-bottom: -3rem
  }

  .glass-card { width: 280px; padding: 15px; }
  /* Cards blijven als overlay, kleinere breedtes voor mobile */
  .card-types  { right: 2%; top: 32%; width: 250px; }
  .card-signin { left: 2%; top: 2%;  width: 200px; }
  .card-spots  { left: 2%; top: 22%; width: 250px; }
  .card-reviews{ right: 2%; top: -12%; width: 280px; }
  .card-search { right: 2%; bottom: -4%; width: 240px; }
  .hero-header {
    padding: calc(var(--spacing-lg) + 70px) 1.5rem var(--spacing-md);
  }
  .hero-title { font-size: 2.4rem; }
  .container {
    padding: 0 1rem; /* Halveert de padding op mobiel */
  }
  .nav-center {
    gap: 1rem; /* Halveert de ruimte tussen Home en Features */
  }
  .features-wrapper { margin-top: var(--spacing-xl); }
  .features-grid {
    display: grid; /* Belangrijk: zet dit terug naar grid! */
    grid-template-columns: 1fr; /* Gestapeld in 1 kolom */
    overflow-x: visible; /* Zet de horizontale iPad-scroll uit */
    padding: 0;
    margin: 0;
  }
  .feature-item {
    flex: auto; 
    width: 100%;
    margin-bottom: 20px;
  }
  .features { padding: var(--spacing-md) 0; }
  .features .section-title {
    margin-bottom: var(--spacing-md);
    font-size: 1.8rem;
  }

  .pill-hstack { gap: 0; padding: 2px; }
  .pill { padding: 4px 12px; font-size: 0.8rem; font-weight: 400; }

  .page-section { padding: var(--spacing-md) 0 var(--spacing-lg); }
  .page-section-top { padding-top: calc(var(--spacing-md) + 70px); }
  .page-card { padding: 2rem 1.5rem; }
  .page-card h1 { font-size: 1.8rem; }

  .nav-social {
    display: none;
  }
}
