/* =========================================================
   DemoWebsite — Autogarage (fictieve demowebsite)
   ========================================================= */

:root{
  --cream:        #EEEAE3;
  --cream-2:      #E6E0D4;
  --cream-3:      #F6F4EF;
  --ink:          #16130F;
  --ink-2:        #221E1B;
  --ink-3:        #2C2522;
  --yellow:       #F5C518;
  --yellow-dark:  #DEAF0A;
  --muted:        #6B635A;
  --muted-light:  rgba(255,255,255,.62);
  --line:         rgba(0,0,0,.12);
  --line-light:   rgba(255,255,255,.14);

  /* Poppins voor koppen en labels, Roboto voor lopende tekst */
  --font:    'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Poppins', 'Roboto', system-ui, sans-serif;
  --label:   'Poppins', 'Roboto', system-ui, sans-serif;

  --maxw:      1460px;
  --maxw-wide: 1680px;
  --pad:   clamp(20px, 5vw, 56px);
  --r:     18px;
  --r-lg:  26px;

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

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; scroll-padding-top:96px; -webkit-text-size-adjust:100%; overflow-x:clip; }

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--font);
  font-size:18px;
  line-height:1.62;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
svg{ width:100%; height:100%; display:block; }
button{ font:inherit; }

h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:600; letter-spacing:-.02em; line-height:1.16; margin:0;
}

/* Rajdhani is smal gesneden: cijferblokken en merknaam krijgen dezelfde snit */
.logo-text,.stat-num,.price-value,.google-score .score,
.gar-badge strong,.quote-total b,.quote-brand,.hiw-num{ font-family:var(--display); }
p{ margin:0; }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }

.section{ padding:clamp(72px,9vw,132px) 0; }
.section-tight{ padding-top:0; }
.section-dark{ background:var(--ink); color:#fff; }

/* ---------- Typografische onderdelen ---------- */
.eyebrow{
  display:inline-block;
  font-family:var(--label);
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:22px;
}
.eyebrow-light{ color:var(--yellow); }
.eyebrow.center{ display:block; text-align:center; }

.section-title{ font-size:clamp(30px,4vw,52px); letter-spacing:-.02em; line-height:1.12; }
.section-title.light{ color:#fff; }
.section-title.center{ text-align:center; }

.section-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:32px;
  margin-bottom:clamp(36px,4vw,58px); flex-wrap:wrap;
}
.section-note{ max-width:380px; color:var(--muted); font-size:16px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 26px;
  border-radius:100px;
  font-size:15px; font-weight:600; letter-spacing:-.01em;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex:none; transition:transform .25s var(--ease); }
.btn:hover{ transform:translateY(-2px); }
.btn:hover svg{ transform:translateX(3px); }

.btn-primary{ background:var(--yellow); color:var(--ink); }
.btn-primary:hover{ background:var(--yellow-dark); }

.btn-outline{ border-color:rgba(0,0,0,.22); color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }

.btn-ghost{ border-color:rgba(0,0,0,.18); }
.btn-ghost-light{ border-color:rgba(255,255,255,.3); color:#fff; }
.btn-ghost-light:hover{ background:#fff; color:var(--ink); border-color:#fff; }

.btn-sm{ padding:11px 20px; font-size:14px; }
.btn-lg{ padding:18px 34px; font-size:16px; }
.btn-block{ width:100%; }

.btn-link{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--label); font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--muted); padding-bottom:4px; border-bottom:1px solid var(--line);
  transition:color .25s var(--ease), border-color .25s var(--ease);
}
.btn-link svg{ width:15px; height:15px; transition:transform .25s var(--ease); }
.btn-link:hover{ color:var(--ink); border-color:var(--ink); }
.btn-link:hover svg{ transform:translateX(4px); }

.phone-link{
  font-family:var(--label); font-size:13.5px; letter-spacing:.04em;
  border-bottom:1px solid var(--line); padding-bottom:2px;
  transition:border-color .25s var(--ease);
}
.phone-link:hover{ border-color:var(--ink); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  padding:18px 0;
  transition:background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled{
  background:rgba(238,234,227,.92);
  backdrop-filter:blur(14px);
  padding:10px 0;
  box-shadow:0 1px 0 var(--line);
}
.header-inner{
  width:100%; max-width:var(--maxw-wide); margin-inline:auto; padding-inline:var(--pad);
  display:flex; align-items:center; justify-content:space-between; gap:28px;
}

.logo{ display:flex; align-items:center; gap:13px; color:#fff; transition:color .35s var(--ease); }
.site-header.scrolled .logo{ color:var(--ink); }
.logo-mark{
  width:44px; height:44px; flex:none;
  filter:drop-shadow(0 3px 8px rgba(245,197,24,.3));
}
.logo-stack{ display:flex; flex-direction:column; line-height:1.05; }
.logo-text{ font-size:23px; font-weight:700; letter-spacing:-.02em; }
.logo-sub{
  font-family:var(--label); font-size:10px; font-weight:600;
  letter-spacing:.3em; text-transform:uppercase;
  color:var(--yellow); margin-top:3px;
}
.site-header.scrolled .logo-sub{ color:var(--yellow-dark); }
.logo-light{ color:#fff; }

.main-nav{ display:flex; align-items:center; gap:clamp(22px,2.4vw,42px); margin-left:auto; margin-right:auto; }
.main-nav > a{
  font-size:17px; font-weight:500; color:rgba(255,255,255,.88);
  position:relative; transition:color .3s var(--ease);
}
.main-nav > a::after{
  content:''; position:absolute; left:0; bottom:-6px; height:2px; width:0;
  background:var(--yellow); transition:width .3s var(--ease);
}
.main-nav > a:hover::after{ width:100%; }
.site-header.scrolled .main-nav > a{ color:var(--ink); }

.header-actions{ display:flex; align-items:center; gap:22px; }
.header-phone{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--label); font-size:24px; font-weight:700; letter-spacing:0;
  color:#fff;
  transition:color .3s var(--ease);
}
.header-phone svg{ width:23px; height:23px; }
.header-actions .btn{ font-size:17px; padding:13px 26px; }
.site-header.scrolled .header-phone{ color:var(--ink); }

.nav-mobile-actions{ display:none; }

.burger{
  display:none; width:44px; height:44px; border-radius:12px;
  border:1.5px solid rgba(255,255,255,.3); background:transparent;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
  cursor:pointer; padding:0;
}
.burger span{ width:18px; height:2px; background:#fff; transition:transform .3s var(--ease), opacity .3s var(--ease); }
.site-header.scrolled .burger{ border-color:rgba(0,0,0,.2); }
.site-header.scrolled .burger span{ background:var(--ink); }
.burger.open span:first-child{ transform:translateY(3.5px) rotate(45deg); }
.burger.open span:last-child{ transform:translateY(-3.5px) rotate(-45deg); }

/* =========================================================
   HERO — volle breedte
   ========================================================= */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; align-items:center;
  padding:clamp(130px,15vh,180px) 0 clamp(56px,7vh,90px);
  overflow:hidden;
  color:#fff;
}
.hero-media{ position:absolute; inset:0; z-index:0; background:var(--ink); }
.hero-video{ width:100%; height:100%; object-fit:cover; }
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,8,6,.78) 0%, rgba(10,8,6,.42) 34%, rgba(10,8,6,.72) 78%, rgba(10,8,6,.92) 100%),
    radial-gradient(120% 80% at 20% 60%, rgba(10,8,6,.5), transparent 70%);
}
.hero-inner{
  position:relative; z-index:2;
  width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad);
  display:grid; grid-template-columns:1.28fr .72fr; gap:clamp(32px,4.5vw,72px); align-items:center;
}

.hero h1{
  font-size:clamp(30px,4.2vw,64px);
  letter-spacing:-.03em; line-height:1.08; margin-bottom:26px;
  white-space:nowrap;
}
.hero h1 .hl{ color:var(--yellow); }
.hero-lead{ font-size:clamp(17px,1.4vw,19.5px); color:rgba(255,255,255,.82); max-width:680px; line-height:1.65; }

.hero-usps{ list-style:none; margin:28px 0 0; padding:0; display:flex; flex-wrap:wrap; gap:10px 24px; }
.hero-usps li{ display:flex; align-items:center; gap:9px; font-size:15.5px; font-weight:500; color:rgba(255,255,255,.9); }
.hero-usps svg{ width:17px; height:17px; color:var(--yellow); flex:none; }

.hero-rating{ display:flex; align-items:center; gap:14px; margin-top:30px; padding-top:26px; border-top:1px solid rgba(255,255,255,.16); }
.hero-rating p{ font-size:15.5px; color:rgba(255,255,255,.75); }
.hero-rating strong{ color:#fff; }
.stars{ color:var(--yellow); letter-spacing:2px; font-size:15px; }
.google-mark{ width:14px; height:14px; flex:none; }

/* Boekingsformulier */
.booking-card{
  background:#fff;
  color:var(--ink);
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--r-lg);
  padding:clamp(26px,2.6vw,36px);
  box-shadow:0 30px 70px rgba(0,0,0,.4);
}
.booking-head{ margin-bottom:24px; }
.booking-head h2{ font-size:25px; margin-bottom:6px; color:var(--ink); }
.booking-head p{ font-size:15px; color:var(--muted); }

.booking-form{ display:flex; flex-direction:column; gap:14px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.field{ display:flex; flex-direction:column; gap:7px; min-width:0; }
.field label{
  font-family:var(--font); font-size:14.5px; font-weight:500; letter-spacing:0; text-transform:none;
  color:var(--ink);
}
.field label span{ color:var(--yellow-dark); }
.field input,
.field select{
  width:100%;
  background:#fff;
  border:1px solid rgba(0,0,0,.16);
  border-radius:100px;
  padding:14px 20px;
  color:var(--ink); font-family:var(--font); font-size:15.5px;
  transition:border-color .25s var(--ease), box-shadow .25s var(--ease);
  appearance:none;
}
.field input::placeholder{ color:#9C948A; }
.field input:focus,
.field select:focus{ outline:none; border-color:var(--ink); box-shadow:0 0 0 3px rgba(245,197,24,.35); }
.field select{ color:var(--ink); }
.field select:invalid{ color:#9C948A; }
.field select option{ background:#fff; color:var(--ink); }
.select-wrap{ position:relative; }
.select-wrap svg{ position:absolute; right:16px; top:50%; transform:translateY(-50%); width:18px; height:18px; color:var(--muted); pointer-events:none; }

.booking-form .btn{ margin-top:8px; }
.form-note{ font-size:12.5px; color:var(--muted); text-align:center; }
.form-success{ font-size:14px; color:var(--ink); text-align:center; font-weight:600; }

/* =========================================================
   TICKER
   ========================================================= */
.ticker{
  background:var(--cream);
  padding:16px 0;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.ticker-track{ display:flex; width:max-content; animation:scroll-x 52s linear infinite; }
.ticker-group{ display:flex; align-items:center; gap:26px; padding-right:26px; }
.ticker-group span{
  font-family:var(--label); font-size:11.5px; letter-spacing:.15em; text-transform:uppercase;
  white-space:nowrap; color:var(--muted);
}
.ticker-group i{ color:var(--yellow-dark); font-style:normal; font-size:8px; }
@keyframes scroll-x{ to{ transform:translateX(-50%); } }

/* =========================================================
   DIENSTEN
   ========================================================= */
/* Diensten staan bewust breder dan de rest van de pagina */
#diensten .container{ max-width:var(--maxw-wide); }

.service-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.service-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius:var(--r-lg);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card:hover{ transform:translateY(-6px); box-shadow:0 22px 44px rgba(0,0,0,.1); border-color:rgba(0,0,0,.2); }
.service-img{ aspect-ratio:4/3; overflow:hidden; background:var(--cream-2); }
.service-img img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.service-card:hover .service-img img{ transform:scale(1.06); }
.service-body{ padding:24px 24px 28px; display:flex; flex-direction:column; gap:10px; flex:1; }
.service-body h3{ font-size:21px; }
.service-body p{ font-size:15.5px; color:var(--muted); }

/* =========================================================
   WERKWIJZE (beeld + genummerde stappen)
   ========================================================= */
.hiw-panel{
  background:var(--cream-3);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:clamp(18px,1.8vw,24px);
}
.hiw-grid{ display:grid; grid-template-columns:.92fr 1.08fr; gap:clamp(20px,2.6vw,36px); }

.hiw-media{ position:relative; border-radius:var(--r); overflow:hidden; min-height:420px; }
.hiw-media > img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.hiw-media::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(10,8,6,.85) 100%);
}
.hiw-stats{
  position:relative; z-index:2;
  margin-top:auto; padding:26px;
  display:flex; gap:36px; height:100%; align-items:flex-end;
}
.hiw-stats p{ font-size:14.5px; color:rgba(255,255,255,.72); margin-top:4px; }
.stat-num{
  display:block;
  font-size:clamp(34px,3.6vw,46px); font-weight:600; letter-spacing:-.04em;
  color:#fff; line-height:1;
}

.hiw-steps{ padding:clamp(14px,1.6vw,26px) clamp(6px,1vw,16px); }
.hiw-steps ol{ list-style:none; margin:0; padding:0; }
.hiw-steps li{
  display:flex; gap:18px; align-items:flex-start;
  padding:20px 0; border-top:1px solid var(--line);
}
.hiw-steps li:first-of-type{ border-top:none; padding-top:4px; }
.hiw-num{
  width:42px; height:42px; flex:none; border-radius:50%;
  background:var(--yellow); color:var(--ink);
  display:grid; place-items:center;
  font-family:var(--label); font-size:13px; font-weight:500;
}
.hiw-steps h3{ font-size:19px; margin-bottom:6px; }
.hiw-steps p{ font-size:15.5px; color:var(--muted); }

.hiw-foot{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  margin-top:clamp(18px,2vw,26px); padding:22px 10px 6px;
  border-top:1px solid var(--line);
}
.hiw-social{ display:flex; align-items:center; gap:16px; }
.hiw-social p{ font-family:var(--label); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
.hiw-social strong{ color:var(--ink); }
.hiw-actions{ display:flex; align-items:center; gap:20px; }

.avatars{ display:flex; align-items:center; }
.avatars img{
  width:46px; height:46px; border-radius:50%; object-fit:cover;
  border:3px solid var(--cream-3); margin-left:-14px;
  transition:transform .3s var(--ease);
}
.avatars img:first-child{ margin-left:0; }
.avatars img:hover{ transform:translateY(-4px) scale(1.06); z-index:2; }

/* =========================================================
   WAAROM (gecentreerd)
   ========================================================= */
.waarom-intro{ max-width:1180px; margin:0 auto clamp(44px,5vw,68px); text-align:center; }
.waarom-intro p{ font-size:clamp(19px,1.9vw,27px); line-height:1.4; letter-spacing:-.02em; font-weight:500; }

.waarom-cols{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(18px,1.8vw,30px); }
.waarom-col{ text-align:center; }
.waarom-icon{
  width:56px; height:56px; margin:0 auto 20px; border-radius:16px;
  background:var(--ink); color:var(--yellow);
  display:grid; place-items:center; padding:14px;
}
.waarom-col h3{ font-size:20px; margin-bottom:10px; }
.waarom-col p{ font-size:15.5px; color:var(--muted); max-width:350px; margin-inline:auto; }

/* =========================================================
   MERKEN
   ========================================================= */
.merken{ padding-bottom:clamp(56px,7vw,96px); }
.merken .eyebrow{ margin-bottom:26px; }
.merken-grid{
  display:grid; grid-template-columns:repeat(5,1fr);
  border:1px solid var(--line); border-radius:var(--r); overflow:hidden;
  background:var(--line);
  gap:1px;
}
.merk{
  background:var(--cream);
  padding:28px 16px;
  display:grid; place-items:center;
  font-size:17px; font-weight:600; letter-spacing:-.01em;
  color:var(--ink);
  transition:background .3s var(--ease), color .3s var(--ease);
}
.merk:hover{ background:var(--cream-3); }
.merk-more{ font-family:var(--label); font-size:11.5px; font-weight:400; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }

/* =========================================================
   CASE
   ========================================================= */
.case-section .section-title{ margin-bottom:clamp(36px,4vw,56px); }
.case-grid{
  display:grid; grid-template-columns:1.1fr .9fr;
  background:var(--ink); color:#fff;
  border-radius:var(--r-lg); overflow:hidden;
}
.case-media{ position:relative; min-height:420px; }
.case-media img{ width:100%; height:100%; object-fit:cover; }
.case-tag{
  position:absolute; left:22px; top:22px;
  background:rgba(0,0,0,.6); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.18);
  border-radius:100px; padding:9px 18px;
  font-family:var(--label); font-size:11.5px; letter-spacing:.12em; text-transform:uppercase;
}
.case-body{ padding:clamp(30px,3.4vw,52px); display:flex; flex-direction:column; justify-content:center; }
.case-body h3{ font-size:clamp(23px,2.4vw,32px); margin-bottom:26px; }
.case-specs{ margin:0 0 28px; display:grid; grid-template-columns:1fr 1fr; gap:18px 24px; }
.case-specs div{ padding-top:14px; border-top:1px solid var(--line-light); }
.case-specs dt{ font-family:var(--label); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--yellow); margin-bottom:5px; }
.case-specs dd{ margin:0; font-size:15.5px; font-weight:500; }
.case-body blockquote{ margin:0; font-size:17.5px; line-height:1.6; color:rgba(255,255,255,.86); }
.case-author{ margin-top:14px; font-family:var(--label); font-size:12.5px; color:var(--muted-light); }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:40px; flex-wrap:wrap; margin-bottom:clamp(32px,4vw,52px); }
.google-score{ text-align:right; }
.google-score .score{ font-size:clamp(44px,4.6vw,60px); font-weight:600; letter-spacing:-.04em; line-height:1; display:block; }
.google-score .stars{ margin:8px 0 8px; font-size:16px; }
.google-score p{ display:flex; align-items:center; justify-content:flex-end; gap:8px; font-size:13.5px; color:var(--muted); }
.google-logo{ width:13px; height:13px; flex:none; }

.reviews-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.review{
  background:#fff;
  border:none;
  border-radius:var(--r-lg);
  padding:28px;
  display:flex; flex-direction:column; gap:16px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review:hover{ transform:translateY(-5px); box-shadow:0 20px 40px rgba(0,0,0,.08); }
.review p{ font-size:16.5px; color:#38312B; flex:1; }
.review footer{ display:flex; align-items:center; gap:13px; padding-top:16px; border-top:1px solid var(--line); }
.review footer img{ width:46px; height:46px; border-radius:50%; object-fit:cover; }
.review footer strong{ display:block; font-size:15.5px; font-weight:600; }
.review footer span{ font-size:13.5px; color:var(--muted); }

/* =========================================================
   TEAM
   ========================================================= */
#team .eyebrow.center{ margin-bottom:clamp(30px,3.4vw,46px); }

.lead-grid{
  display:grid; grid-template-columns:.85fr 1.15fr; gap:20px;
  margin-bottom:20px;
}
.lead-photo{ position:relative; border-radius:var(--r-lg); overflow:hidden; min-height:440px; }
.lead-photo img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.lead-badge{
  position:absolute; left:20px; right:20px; bottom:20px; z-index:2;
  background:rgba(20,17,14,.72); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px; padding:16px 20px;
}
.lead-badge strong{ display:block; font-size:19px; font-weight:600; }
.lead-badge span{ font-family:var(--label); font-size:11px; letter-spacing:.09em; text-transform:uppercase; color:var(--yellow); }

.lead-quote{
  background:var(--ink-3);
  border:1px solid var(--line-light);
  border-radius:var(--r-lg);
  padding:clamp(30px,3.4vw,52px);
  display:flex; flex-direction:column; justify-content:center; align-items:flex-start;
}
.qmark{ font-size:74px; line-height:.55; color:var(--yellow); opacity:.4; font-weight:700; margin-bottom:24px; }
.lead-quote p{ font-size:clamp(18px,1.9vw,24px); line-height:1.45; letter-spacing:-.02em; margin-bottom:30px; }
.lead-quote .btn{ align-self:flex-start; }

.team-chips{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.chip{
  display:flex; align-items:center; gap:15px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--r);
  padding:15px 20px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.chip:hover{ transform:translateY(-4px); box-shadow:0 18px 34px rgba(0,0,0,.3); }
.chip img{ width:54px; height:54px; border-radius:50%; object-fit:cover; flex:none; }
.chip strong{ display:block; font-size:16px; font-weight:600; color:var(--ink); }
.chip span{
  font-family:var(--label); font-size:10.5px; letter-spacing:.03em; text-transform:uppercase;
  color:var(--muted); white-space:nowrap;
}

/* =========================================================
   PRIJZEN
   ========================================================= */
.price-list{ display:flex; flex-direction:column; }
.price-head{
  display:flex; justify-content:space-between; padding:0 4px 12px;
  font-family:var(--label); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted);
}
.price-row{
  display:flex; align-items:center; justify-content:space-between; gap:32px;
  padding:26px 4px;
  border-top:1px solid var(--line);
  transition:padding-inline .35s var(--ease), background .35s var(--ease);
}
.price-row:last-child{ border-bottom:1px solid var(--line); }
.price-row:hover{ background:var(--cream-3); padding-inline:20px; }
.price-info h3{ font-size:21px; display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.price-info p{ margin-top:7px; font-size:15.5px; color:var(--muted); max-width:680px; }
.tag{
  font-family:var(--label); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase;
  background:var(--yellow); color:var(--ink); border-radius:100px; padding:5px 11px; font-weight:500;
}
.tag-alt{ background:var(--ink); color:var(--yellow); }
.price-value{
  font-size:clamp(26px,2.6vw,34px); font-weight:600; letter-spacing:-.03em;
  white-space:nowrap; display:flex; align-items:baseline; gap:8px;
}
.price-value .from{ font-family:var(--label); font-size:12px; font-weight:400; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }

/* =========================================================
   GARANTIE
   ========================================================= */
.gar-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; align-items:stretch; }

.gar-card{
  position:relative; overflow:hidden;
  border-radius:var(--r-lg);
  background:var(--ink); color:#fff;
  min-height:560px;
}
.gar-card > img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.5; }
.gar-card::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(160deg, rgba(12,10,8,.86) 0%, rgba(12,10,8,.55) 55%, rgba(12,10,8,.9) 100%);
}
.gar-card-inner{
  position:relative; z-index:2;
  padding:clamp(28px,3.2vw,44px);
  display:flex; flex-direction:column; height:100%;
}
.gar-card h2{ font-size:clamp(28px,3vw,40px); letter-spacing:-.03em; }
.gar-list{ list-style:none; margin:26px 0 0; padding:0; display:flex; flex-wrap:wrap; gap:10px; }
.gar-list li{
  font-family:var(--label); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase;
  border:1px solid rgba(255,255,255,.25); border-radius:100px; padding:8px 14px;
  color:rgba(255,255,255,.82);
}
.gar-badge{
  margin-top:auto; align-self:center;
  width:190px; height:190px; border-radius:50%;
  background:var(--yellow); color:var(--ink);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}
.gar-badge-top{ font-family:var(--label); font-size:10px; letter-spacing:.2em; text-transform:uppercase; }
.gar-badge strong{ font-size:66px; font-weight:700; letter-spacing:-.05em; line-height:1; margin:2px 0 4px; }
.gar-badge-bottom{ font-family:var(--label); font-size:10.5px; line-height:1.4; letter-spacing:.06em; }

.gar-quote{
  background:var(--cream-3);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:clamp(28px,3.2vw,44px);
  display:flex; flex-direction:column; align-items:center; text-align:center;
}
.gar-quote > .eyebrow{ margin-bottom:24px; }
.gar-quote h3{ margin-top:30px; font-size:clamp(20px,2vw,26px); letter-spacing:-.02em; }

.quote-card{
  width:100%;
  background:#fff; color:var(--ink);
  border-radius:var(--r);
  padding:clamp(22px,2.2vw,28px);
  box-shadow:0 24px 50px rgba(0,0,0,.14);
  transform:rotate(-1.2deg);
  transition:transform .5s var(--ease);
  text-align:left;
}
.quote-card:hover{ transform:rotate(0deg) translateY(-4px); }
.quote-head{ display:flex; justify-content:space-between; align-items:center; padding-bottom:16px; border-bottom:1px solid var(--line); }
.quote-brand{ font-size:18px; font-weight:700; letter-spacing:-.03em; }
.quote-nr{ font-family:var(--label); font-size:11px; letter-spacing:.1em; color:var(--muted); }
.quote-car{ display:flex; justify-content:space-between; align-items:center; gap:12px; padding:16px 0; font-size:14.5px; font-weight:500; }
.plate{
  background:#F5C518; border:1px solid rgba(0,0,0,.25); border-radius:5px;
  padding:3px 9px; font-family:var(--label); font-size:12.5px; letter-spacing:.06em; white-space:nowrap;
}
.quote-lines{ list-style:none; margin:0; padding:0; border-top:1px dashed var(--line); }
.quote-lines li{ display:flex; justify-content:space-between; gap:16px; padding:12px 0; border-bottom:1px dashed var(--line); font-size:14.5px; }
.quote-lines span{ color:var(--muted); }
.quote-lines b{ font-weight:600; }
.quote-total{ display:flex; justify-content:space-between; align-items:center; padding:18px 0 14px; }
.quote-total span{ font-family:var(--label); font-size:11.5px; letter-spacing:.12em; text-transform:uppercase; }
.quote-total b{ font-size:27px; font-weight:700; letter-spacing:-.03em; }
.quote-status{
  display:flex; align-items:center; gap:9px;
  background:var(--cream); border-radius:100px; padding:10px 16px;
  font-family:var(--label); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted);
}
.quote-status .dot{ width:8px; height:8px; border-radius:50%; background:var(--yellow); animation:pulse 1.8s infinite; }
@keyframes pulse{ 0%,100%{ opacity:1; transform:scale(1);} 50%{ opacity:.4; transform:scale(.8);} }

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(36px,5vw,72px); }
.faq-help{
  margin-top:38px; padding:26px;
  background:var(--cream-3); border:1px solid var(--line); border-radius:var(--r-lg);
}
.faq-help h3{ font-size:20px; margin-bottom:8px; }
.faq-help p{ font-size:15.5px; color:var(--muted); margin-bottom:20px; }

.faq-list{ display:flex; flex-direction:column; }
.faq-item{ border-top:1px solid var(--line); }
.faq-item:last-child{ border-bottom:1px solid var(--line); }
.faq-item summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:24px 0;
  font-size:clamp(17px,1.6vw,20px); font-weight:600; letter-spacing:-.02em;
  transition:color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary:hover{ color:var(--yellow-dark); }
.faq-icon{ position:relative; width:34px; height:34px; flex:none; border-radius:50%; border:1.5px solid var(--line); }
.faq-icon::before,.faq-icon::after{
  content:''; position:absolute; left:50%; top:50%; background:var(--ink);
  transform:translate(-50%,-50%); transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-icon::before{ width:13px; height:1.6px; }
.faq-icon::after{ width:1.6px; height:13px; }
.faq-item[open] .faq-icon{ background:var(--yellow); border-color:var(--yellow); }
.faq-item[open] .faq-icon::after{ transform:translate(-50%,-50%) rotate(90deg); opacity:0; }
.faq-answer{ padding:0 60px 26px 0; }
.faq-answer p{ font-size:16.5px; color:var(--muted); }
.faq-item[open] .faq-answer{ animation:fadeDown .35s var(--ease); }
@keyframes fadeDown{ from{ opacity:0; transform:translateY(-6px);} to{ opacity:1; transform:none;} }

/* =========================================================
   CTA — volle breedte
   ========================================================= */
.cta-full{
  position:relative; overflow:hidden;
  padding:clamp(80px,11vw,150px) var(--pad);
  text-align:center; color:#fff;
  background:var(--ink);
}
.cta-bg{ position:absolute; inset:0; }
.cta-bg img{ width:100%; height:100%; object-fit:cover; opacity:.55; }
.cta-full::after{
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(90% 70% at 50% 50%, rgba(15,12,9,.5), rgba(15,12,9,.82) 70%),
    linear-gradient(180deg, rgba(15,12,9,.55), rgba(15,12,9,.8));
}
.cta-inner{ position:relative; z-index:2; max-width:1100px; margin-inline:auto; }
.cta-full h2{
  font-size:clamp(28px,4.4vw,58px);
  letter-spacing:-.03em; margin-bottom:18px;
  white-space:nowrap; /* exact 2 regels via de <br> */
}
.cta-full > .cta-inner > p{ font-size:17.5px; color:rgba(255,255,255,.78); max-width:none; margin-inline:auto; }
@media (min-width:901px){
  .cta-full > .cta-inner > p{ white-space:nowrap; }
}
.cta-buttons{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:36px; }

/* =========================================================
   FOOTER — volle breedte
   ========================================================= */
.site-footer{ background:var(--ink-2); color:#fff; padding-top:clamp(56px,6vw,86px); }
.footer-top{
  width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad);
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:clamp(28px,4vw,56px);
  padding-bottom:clamp(48px,5vw,72px);
}
.footer-brand p{ margin-top:20px; font-size:15.5px; color:var(--muted-light); max-width:350px; }
.newsletter{ display:flex; gap:9px; margin-top:22px; max-width:380px; }
.newsletter input{
  flex:1; min-width:0;
  background:rgba(255,255,255,.06); border:1px solid var(--line-light);
  border-radius:100px; padding:13px 20px; color:#fff; font-family:var(--font); font-size:14.5px;
}
.newsletter input::placeholder{ color:rgba(255,255,255,.4); }
.newsletter input:focus{ outline:none; border-color:var(--yellow); }
.newsletter-note{ margin-top:10px; font-size:12.5px; color:var(--yellow); }

.footer-col h4{
  font-family:var(--label); font-size:11.5px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--yellow); font-weight:400; margin-bottom:20px;
}
.footer-col a,.footer-col p{
  display:block; font-size:15.5px; color:var(--muted-light); margin-bottom:12px;
  transition:color .25s var(--ease);
}
.footer-col a:hover{ color:var(--yellow); }

.socials{ display:flex; gap:10px; }
.socials a{
  width:40px; height:40px; border-radius:50%; padding:10px; margin:0;
  border:1px solid var(--line-light); color:#fff;
  display:grid; place-items:center;
  transition:background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover{ background:var(--yellow); color:var(--ink); border-color:var(--yellow); transform:translateY(-3px); }
.footer-small{ margin-top:20px; font-size:13px; color:rgba(255,255,255,.4); }

.footer-bottom{
  border-top:1px solid var(--line-light);
  width:100%; max-width:var(--maxw); margin-inline:auto; padding:26px var(--pad) 32px;
  display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap;
}
.footer-bottom p{ font-size:14.5px; color:rgba(255,255,255,.5); }
.disclaimer{ max-width:620px; text-align:right; }
.disclaimer strong{ color:var(--yellow); font-weight:600; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible{ opacity:1; transform:none; }
.service-grid .reveal:nth-child(2),.waarom-cols .reveal:nth-child(2),.reviews-grid .reveal:nth-child(2),.team-chips .reveal:nth-child(2){ transition-delay:.08s; }
.service-grid .reveal:nth-child(3),.waarom-cols .reveal:nth-child(3),.reviews-grid .reveal:nth-child(3),.team-chips .reveal:nth-child(3){ transition-delay:.16s; }
.service-grid .reveal:nth-child(4),.team-chips .reveal:nth-child(4){ transition-delay:.24s; }
.price-list .reveal:nth-child(even){ transition-delay:.06s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1100px){
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .reviews-grid{ grid-template-columns:1fr; }
  .team-chips{ grid-template-columns:repeat(2,1fr); }
  .hiw-grid{ grid-template-columns:1fr; }
  /* min-height + aspect-ratio samen dwingt de breedte omhoog: alleen ratio gebruiken */
  .hiw-media{ min-height:0; aspect-ratio:4/3; max-width:100%; }
  .lead-grid{ grid-template-columns:1fr; }
  .lead-photo{ min-height:380px; }
  .merken-grid{ grid-template-columns:repeat(3,1fr); }
  .hero-inner{ grid-template-columns:1fr; align-items:start; }
  .booking-card{ max-width:560px; }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:span 2; }
}

@media (max-width:900px){
  .main-nav{
    position:fixed; inset:0 0 auto 0;
    background:var(--ink); color:#fff;
    flex-direction:column; align-items:stretch; gap:0;
    padding:96px var(--pad) 32px;
    transform:translateY(-100%); opacity:0; pointer-events:none;
    transition:transform .45s var(--ease), opacity .35s var(--ease);
    box-shadow:0 24px 50px rgba(0,0,0,.3);
  }
  .main-nav.open{ transform:none; opacity:1; pointer-events:auto; }
  /* logo en hamburger boven het geopende menupaneel houden */
  .site-header .logo{ position:relative; z-index:5; }
  .site-header .logo,.main-nav.open ~ .header-actions .burger{ color:#fff; }
  .main-nav > a{ color:#fff !important; padding:16px 0; border-bottom:1px solid var(--line-light); font-size:17px; }
  .nav-mobile-actions{ display:flex; flex-direction:column; gap:12px; margin-top:24px; }
  .nav-mobile-actions .btn-ghost{ border-color:var(--line-light); color:#fff; }
  .burger{ display:flex; }
  .header-phone, .header-actions .btn{ display:none; }

  .waarom-cols,.gar-grid,.faq-grid,.case-grid{ grid-template-columns:1fr; }
  .case-media{ min-height:0; aspect-ratio:4/3; max-width:100%; }
  .gar-card{ min-height:480px; }
  .disclaimer{ text-align:left; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .faq-answer{ padding-right:0; }
}

@media (max-width:640px){
  body{ font-size:17px; }
  .hero{ min-height:100svh; padding-top:120px; }
  .hero h1{ font-size:6.8vw; }
  .cta-full h2{ font-size:6.4vw; }
  .hero-usps{ flex-direction:column; gap:10px; }
  .service-grid,.team-chips{ grid-template-columns:1fr; }
  .merken-grid{ grid-template-columns:repeat(2,1fr); }
  .field-row{ grid-template-columns:1fr; }
  .price-row{ flex-direction:column; align-items:flex-start; gap:12px; }
  .case-specs{ grid-template-columns:1fr; }
  .section-head{ flex-direction:column; align-items:flex-start; }
  .reviews-head{ flex-direction:column; align-items:flex-start; }
  .google-score{ text-align:left; }
  .google-score p{ justify-content:flex-start; }
  .hiw-stats{ gap:26px; padding:18px; }
  /* reviewregel in de hero op 1 regel houden */
  .hide-sm{ display:none; }
  .hero-rating{ gap:10px; }
  .hero-rating p{ white-space:nowrap; font-size:14px; }
  .hero-rating .stars{ font-size:13px; letter-spacing:1px; }
  .hiw-foot{ flex-direction:column; align-items:flex-start; }
  .hiw-social{ flex-direction:column; align-items:flex-start; gap:10px; }
  .hiw-actions{ flex-direction:column; align-items:flex-start; gap:14px; width:100%; }
  .hiw-actions .btn{ width:100%; }
  .footer-top{ grid-template-columns:1fr; }
  .footer-brand{ grid-column:auto; }
  .avatars img{ width:40px; height:40px; }
  .quote-card{ transform:none; }
  .gar-badge{ width:158px; height:158px; }
  .gar-badge strong{ font-size:54px; }
}

@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; }
}
