/* =========================================================
   Scootersloperij.nl — Hoofdstijl
   Designsysteem: donkerblauw #0f2942, oranje #ff6b1a, Inter
   ========================================================= */

/* ---------- Reset & Basis ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1d2a3a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #0f2942;
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: #ff6b1a; }

/* ---------- Toegankelijkheid ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #ff6b1a;
  color: #fff;
  padding: 12px 18px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid #ff6b1a;
  outline-offset: 2px;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  color: #0f2942;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.6em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1em; }
ul, ol { margin: 0 0 1em 1.4em; }
li { margin-bottom: 0.4em; }

strong { font-weight: 600; color: #0f2942; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.btn-primary {
  background: #ff6b1a;
  color: #fff;
}
.btn-primary:hover {
  background: #e55a0d;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255,107,26,0.3);
}
.btn-secondary {
  background: #0f2942;
  color: #fff;
}
.btn-secondary:hover {
  background: #1a3a5c;
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #0f2942;
  border-color: #0f2942;
}
.btn-outline:hover {
  background: #0f2942;
  color: #fff;
}
.btn-large { padding: 18px 36px; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5ebf2;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(15,41,66,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 32px;
  min-height: 70px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo img, .logo svg {
  height: 50px;
  width: auto;
  display: block;
}
.site-footer .logo img {
  height: 64px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  padding: 9px 14px;
  font-weight: 500;
  font-size: .94rem;
  color: #1d2a3a;
  border-radius: 7px;
  line-height: 1;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.main-nav a:hover { background: #f4f7fa; color: #0f2942; }
.main-nav a.active { color: #ff6b1a; background: rgba(255,107,26,0.08); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  color: #0f2942;
  font-size: .95rem;
  line-height: 1;
  white-space: nowrap;
  min-width: 44px;
  min-height: 44px;
  padding: 0 6px;
}
.header-phone svg { width: 22px; height: 22px; flex-shrink: 0; fill: currentColor; }
.header-phone:hover { color: #ff6b1a; }
.header-cta .btn { padding: 10px 20px; font-size: .92rem; line-height: 1; }

.hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f2942;
  margin: 5px auto;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #0f2942 0%, #1a3a5c 100%);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255,107,26,0.12), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p.lead {
  font-size: 1.2rem;
  color: #d2dde9;
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  aspect-ratio: 4/3;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
  color: #d2dde9;
  font-size: .9rem;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-badges span::before {
  content: "✓";
  color: #ff6b1a;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- Trust strook ---------- */
.trust-bar {
  background: #f7f9fc;
  padding: 36px 0;
  border-bottom: 1px solid #e5ebf2;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(15,41,66,0.08);
  color: #ff6b1a;
  font-size: 1.4rem;
  font-weight: 700;
}
.trust-item strong { color: #0f2942; font-size: 1rem; }
.trust-item small { color: #5d6e80; font-size: .85rem; }

/* ---------- Sections ---------- */
section { padding: 70px 0; }
.section-light { background: #f7f9fc; }
.section-dark { background: #0f2942; color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.section-head p { font-size: 1.1rem; color: #5d6e80; }
.section-dark .section-head p { color: #d2dde9; }

.eyebrow {
  display: inline-block;
  background: rgba(255,107,26,0.12);
  color: #ff6b1a;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid #e5ebf2;
  border-radius: 12px;
  padding: 28px 22px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15,41,66,0.08);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 22px;
  width: 36px;
  height: 36px;
  background: #ff6b1a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.step h3 { font-size: 1.15rem; margin-top: 10px; margin-bottom: 8px; }
.step p { color: #5d6e80; font-size: .95rem; margin-bottom: 0; }

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 2px solid #e5ebf2;
  border-radius: 16px;
  padding: 36px 30px;
  text-align: center;
  position: relative;
  transition: all .25s;
}
.price-card.featured {
  border-color: #ff6b1a;
  box-shadow: 0 12px 32px rgba(255,107,26,0.15);
  transform: scale(1.02);
}
.price-card.featured::before {
  content: "Meest gekozen";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b1a;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #0f2942;
  line-height: 1;
  margin: 18px 0 6px;
}
.price-amount sup { font-size: 1.4rem; vertical-align: super; }
.price-card .desc {
  color: #5d6e80;
  font-size: .95rem;
  margin-bottom: 24px;
}
.price-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  text-align: left;
}
.price-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #1d2a3a;
  font-size: .95rem;
  border-bottom: 1px solid #f0f3f7;
}
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b1a;
  font-weight: 700;
}

/* ---------- Legal callout ---------- */
.legal-callout {
  background: linear-gradient(135deg, #fff7f0 0%, #fff0e3 100%);
  border-left: 5px solid #ff6b1a;
  padding: 32px 36px;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}
.legal-callout h2 { font-size: 1.5rem; margin-bottom: 12px; }
.legal-callout p { margin-bottom: 0; color: #1d2a3a; }

/* ---------- Region cards ---------- */
.regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.region-card {
  background: #fff;
  border: 1px solid #e5ebf2;
  padding: 24px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: #0f2942;
  transition: all .2s;
}
.region-card:hover {
  border-color: #ff6b1a;
  color: #ff6b1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15,41,66,0.08);
}
.region-card small {
  display: block;
  font-weight: 400;
  color: #5d6e80;
  font-size: .85rem;
  margin-top: 4px;
}

/* ---------- Brand list ---------- */
.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.brands span {
  background: #fff;
  border: 1px solid #e5ebf2;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: .9rem;
  color: #0f2942;
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid #e5ebf2;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 56px 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: #0f2942;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b1a;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { background: #f7f9fc; }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: #5d6e80;
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid #e5ebf2;
  border-radius: 12px;
  padding: 28px 26px;
}
.testimonial .stars {
  color: #ff6b1a;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.testimonial blockquote {
  font-style: italic;
  color: #1d2a3a;
  margin: 0 0 16px;
  line-height: 1.6;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: #0f2942;
  font-size: .9rem;
}
.testimonial cite small {
  display: block;
  font-weight: 400;
  color: #5d6e80;
  font-size: .8rem;
  margin-top: 2px;
}

/* ---------- Mobile menu CTA-strook ---------- */
.mobile-menu-cta {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0 4px;
  border-top: 1px solid #e5ebf2;
  margin-top: 6px;
}
.mobile-menu-cta .btn { width: 100%; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid #e5ebf2;
  border-radius: 14px;
  padding: 36px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(15,41,66,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  color: #0f2942;
  margin-bottom: 6px;
  font-size: .95rem;
}
.form-group label .req { color: #ff6b1a; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d4dde8;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: #1d2a3a;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 0;
  border-color: #ff6b1a;
  box-shadow: 0 0 0 3px rgba(255,107,26,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: .92rem;
  color: #5d6e80;
}
.form-check input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  accent-color: #ff6b1a;
  cursor: pointer;
}
.form-check label { cursor: pointer; line-height: 1.5; }

/* Service choice cards */
.choice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.choice-card {
  border: 2px solid #d4dde8;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  background: #fff;
}
.choice-card.selected {
  border-color: #ff6b1a;
  background: #fff7f0;
}
.choice-card strong { display: block; color: #0f2942; margin-bottom: 4px; }
.choice-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b1a;
  margin: 8px 0 4px;
}
.choice-card small { color: #5d6e80; }

/* ---------- Two-column content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col img { border-radius: 12px; box-shadow: 0 10px 30px rgba(15,41,66,0.08); }

/* ---------- Page header ---------- */
.page-header {
  background: linear-gradient(135deg, #0f2942 0%, #1a3a5c 100%);
  color: #fff;
  padding: 70px 0 60px;
  text-align: center;
}
.page-header h1 { color: #fff; }
.page-header p {
  font-size: 1.15rem;
  color: #d2dde9;
  max-width: 700px;
  margin: 0 auto;
}
.breadcrumbs {
  font-size: .9rem;
  margin-bottom: 16px;
  color: #d2dde9;
}
.breadcrumbs a { color: #d2dde9; text-decoration: underline; }
.breadcrumbs a:hover { color: #ff6b1a; }

/* ---------- Article content ---------- */
.article-content {
  max-width: 820px;
  margin: 0 auto;
}
.article-content h2 { margin-top: 1.6em; }
.article-content h3 { margin-top: 1.4em; }
.article-content ul li,
.article-content ol li { margin-bottom: 0.6em; }
.article-content .callout {
  background: #f7f9fc;
  border-left: 4px solid #ff6b1a;
  padding: 20px 24px;
  border-radius: 6px;
  margin: 28px 0;
}
.article-content .callout p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1d33;
  color: #c1ccd9;
  padding: 60px 0 30px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 4px; }
.footer-col a {
  color: #c1ccd9;
  transition: color .15s;
  display: inline-block;
  padding: 8px 0;
  line-height: 1.3;
}
.footer-col a:hover { color: #ff6b1a; }
.footer-brand p { color: #c1ccd9; margin-bottom: 6px; }
.footer-brand .logo {
  color: #fff;
  margin-bottom: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: #8aa0b8;
}

/* ---------- WhatsApp floating ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
/* Verberg de floating WhatsApp op pagina's met eigen WhatsApp/contact-CTA's
   zodat de knop niet over formulier-velden of de submit-knop heen valt. */
body.has-inline-cta .wa-float { display: none; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 560px;
  margin: 0 auto;
  background: #0f2942;
  color: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  z-index: 200;
  display: none;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
  margin: 0;
  font-size: .9rem;
  flex: 1;
  min-width: 240px;
}
.cookie-banner .btn { padding: 10px 20px; font-size: .9rem; }

/* ---------- Map ---------- */
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5ebf2;
}
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------- Info-grid (Contact / over ons) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.info-block h3 { font-size: 1.2rem; margin-bottom: 10px; }
.info-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.info-block table td {
  padding: 8px 0;
  border-bottom: 1px solid #e5ebf2;
  font-size: .95rem;
}
.info-block table td:first-child { color: #5d6e80; }
.info-block table td:last-child { font-weight: 500; text-align: right; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
.text-orange { color: #ff6b1a; }
.text-muted { color: #5d6e80; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .regions { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
  .hamburger { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid #e5ebf2;
    box-shadow: 0 10px 30px rgba(15,41,66,0.1);
    gap: 4px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 14px;
    width: 100%;
    border-bottom: 1px solid #f4f7fa;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .main-nav .mobile-menu-cta { display: flex; }
  .main-nav .mobile-menu-cta a {
    border-bottom: 0;
    min-height: 48px;
    justify-content: center;
    padding: 14px 18px;
    text-align: center;
    border-radius: 8px;
  }
  .main-nav .mobile-menu-cta .btn-primary {
    background: #ff6b1a;
    color: #fff;
  }
  .main-nav .mobile-menu-cta .btn-secondary {
    background: #0f2942;
    color: #fff;
  }

  /* Header CTA — kompakte versie op mobile */
  .header-cta { gap: 6px; }
  .header-cta .btn { display: none; }
  .header-cta .btn-mobile { display: inline-flex; }
  .header-cta .btn-mobile.btn { padding: 10px 14px; font-size: .88rem; }
  .header-phone span { display: none; }
  .header-phone { padding: 0; }

  section { padding: 50px 0; }
  .hero { padding: 50px 0 60px; }
  .hero-cta .btn { flex: 1 1 auto; min-height: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .choice-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* WhatsApp-knop iets kleiner op mobile zodat hij minder content blokkeert */
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }

  /* Cookie banner mag de WhatsApp-knop niet overlappen */
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px 18px; }
}

/* Op desktop hoeft het mobile-only knopje nooit te verschijnen */
.btn-mobile { display: none; }

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .regions { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .form-card { padding: 24px; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .wa-float, .cookie-banner { display: none; }
  body { color: #000; }
}
