/* =========================================
   TAKELAAR — Premium Sleepdienst Website
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0A1A33;
  --navy-2:      #0F2647;
  --navy-3:      #16345f;
  --orange:      #FF6B1A;
  --orange-2:    #FF8533;
  --orange-dark: #E5560A;
  --white:       #FFFFFF;
  --off:         #F4F7FB;
  --off-2:       #E9EFF6;
  --ink:         #0B1320;
  --gray:        #5B6B80;
  --gray-light:  #8A98AC;
  --line:        #E2E9F1;
  --green:       #25D366;
  --green-dark:  #1FAE54;
  --red:         #E23B3B;
  --sans:        'Inter', system-ui, sans-serif;
  --display:     'Plus Jakarta Sans', var(--sans);
  --radius:      14px;
  --radius-sm:   10px;
  --shadow:      0 10px 40px rgba(10,26,51,0.08);
  --shadow-lg:   0 24px 70px rgba(10,26,51,0.18);
  --t:           0.3s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg, iframe { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 820px; }

.section { padding: 100px 0; }
.section-alt { background: var(--off); }
.section-dark { background: var(--navy); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--orange-2); }

.section-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }

.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 640px; }
.section-sub.center { margin: 0 auto; }
.section-sub.light-muted { color: rgba(255,255,255,0.7); }

.section-head { text-align: center; margin-bottom: 60px; }
.lead { font-size: 1.12rem; color: var(--ink); margin-bottom: 18px; }
.text-orange { color: var(--orange); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn-sm  { padding: 10px 18px; font-size: 0.85rem; }
.btn-lg  { padding: 17px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(10,26,51,0.3); }

.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 8px 24px rgba(255,107,26,0.35); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,26,0.45); }

.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-whatsapp:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.4); }

.btn-emergency {
  background: var(--red); color: var(--white);
  box-shadow: 0 8px 30px rgba(226,59,59,0.45);
  animation: pulseBtn 2s infinite;
}
.btn-emergency:hover { background: #c52f2f; transform: translateY(-2px); }
@keyframes pulseBtn {
  0%,100% { box-shadow: 0 8px 30px rgba(226,59,59,0.45); }
  50%      { box-shadow: 0 8px 40px rgba(226,59,59,0.7); }
}

.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

.btn-ghost-light { background: rgba(255,255,255,0.1); color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost-light:hover { background: var(--white); color: var(--navy); }

.btn-ico { font-size: 1.05em; }

/* ---------- Pulse dot ---------- */
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
  margin-right: 4px;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: var(--green);
  animation: pulseRing 1.8s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3); opacity: 0; }
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; transition: color var(--t); }
a.topbar-item:hover { color: var(--orange-2); }

/* ---------- Header ---------- */
#header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t), background var(--t);
}
#header::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--red) 55%, transparent 100%);
  opacity: 0; transition: opacity var(--t);
}
#header.scrolled { box-shadow: 0 6px 24px rgba(10,26,51,0.10); background: rgba(255,255,255,0.97); }
#header.scrolled::before { opacity: 1; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-img { height: 52px; width: auto; display: block; }
.logo-img-footer { height: 66px; }
/* logo heeft eigen donkere achtergrond -> afgeronde badge op witte header */
#header .logo-img { height: 54px; border-radius: 12px; }
.logo-mark {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%); color: var(--white);
  font-family: var(--display); font-weight: 800; font-size: 1.3rem;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(226,59,59,0.32);
}
.logo-text { font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: var(--navy); letter-spacing: -0.02em; }
.logo-dot { color: var(--red); }
.logo-light .logo-text { color: var(--white); }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: var(--display); font-weight: 600; font-size: 0.92rem;
  color: var(--navy); position: relative; padding: 4px 0;
  transition: color var(--t);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: linear-gradient(90deg, var(--orange), var(--red));
  transition: width var(--t);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red); }

/* mobile-only menu parts (hidden on desktop) */
.nav-mobile-head, .nav-mobile-cta { display: none; }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 110; }
.hamburger span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: var(--t); transform-origin: center; }
#header.menu-open .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--red); }
#header.menu-open .hamburger span:nth-child(2) { opacity: 0; }
#header.menu-open .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--red); }

/* dark overlay behind drawer */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 80;
  background: rgba(10,26,51,0.55); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity var(--t);
}
#header.menu-open .nav-overlay { opacity: 1; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(255,107,26,0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 70%, rgba(22,52,95,0.6) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.25fr 0.9fr;
  gap: 56px; align-items: center;
  padding: 80px 24px 90px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 22px;
}

.hero-sub { font-size: 1.12rem; color: rgba(255,255,255,0.8); max-width: 560px; margin-bottom: 34px; }
.hero-sub strong { color: var(--white); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

.hero-trust { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: rgba(255,255,255,0.75); flex-wrap: wrap; }
.hero-trust strong { color: var(--white); }
.trust-stars { color: #FFB800; letter-spacing: 2px; font-size: 1rem; }
.trust-stars.big { font-size: 1.4rem; }

/* Hero card / quick form */
.hero-card {
  background: var(--white); color: var(--ink);
  border-radius: 20px; padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card::before {
  content: ''; position: absolute; top: -2px; left: 24px; right: 24px; height: 4px;
  background: var(--orange); border-radius: 0 0 4px 4px;
}
.quick-form-title { font-family: var(--display); font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.quick-form-sub { font-size: 0.9rem; color: var(--gray); margin-bottom: 18px; }

.form-row { margin-bottom: 12px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--navy); font-family: var(--display); }
.quick-form input, .quick-form select,
.offerte-form input, .offerte-form select, .offerte-form textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  background: var(--off); transition: var(--t);
}
.quick-form input:focus, .quick-form select:focus,
.offerte-form input:focus, .offerte-form select:focus, .offerte-form textarea:focus {
  outline: none; border-color: var(--orange); background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,107,26,0.1);
}
.form-note { display: block; text-align: center; font-size: 0.78rem; color: var(--gray-light); margin-top: 10px; }

/* ---------- USP Bar ---------- */
.usp-bar { background: transparent; padding: 0; position: relative; z-index: 5; }
.usp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: -52px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 60px -20px rgba(10,26,51,0.28);
  overflow: hidden;
}
.usp-item {
  display: flex; align-items: center; gap: 15px;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background var(--t);
  position: relative;
}
/* remove right border on last column (3 per row) */
.usp-item:nth-child(3n) { border-right: none; }
/* remove bottom border on last row (items 4,5,6) */
.usp-item:nth-child(n+4) { border-bottom: none; }
.usp-item:hover { background: var(--off); }
.usp-ico {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,26,0.12), rgba(226,59,59,0.12));
  font-size: 1.5rem;
}
.usp-item strong { display: block; font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 1.04rem; line-height: 1.25; }
.usp-item span { font-size: 0.82rem; color: var(--gray); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
  transition: var(--t); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--orange); transition: width var(--t);
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { width: 4px; }
.service-ico {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--off); font-size: 1.7rem; margin-bottom: 16px;
  transition: var(--t);
}
.service-card:hover .service-ico { background: var(--orange); transform: scale(1.05); }
.service-card h3 { font-family: var(--display); font-size: 1.18rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; color: var(--gray); margin-bottom: 16px; }
.service-link { font-family: var(--display); font-weight: 700; font-size: 0.88rem; color: var(--orange); transition: var(--t); }
.service-link:hover { color: var(--orange-dark); }

/* ---------- Spoeddienst ---------- */
.spoed { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--white); padding: 80px 0; position: relative; overflow: hidden; }
.spoed::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,59,59,0.2) 0%, transparent 70%);
}
.spoed-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: center; position: relative; }
.spoed-content p { color: rgba(255,255,255,0.8); margin-bottom: 26px; max-width: 540px; }
.spoed-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.spoed-visual { display: grid; place-items: center; }
.spoed-circle {
  width: 230px; height: 230px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,107,26,0.5);
  display: grid; place-items: center; text-align: center;
  animation: spinSlow 30s linear infinite;
}
.spoed-big { font-family: var(--display); font-size: 4.5rem; font-weight: 800; color: var(--orange); line-height: 1; }
.spoed-small { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin-top: 6px; }
.spoed-big, .spoed-small { animation: spinSlowReverse 30s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes spinSlowReverse { to { transform: rotate(-360deg); } }

/* ---------- Over ons ---------- */
.over-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.over-visual { position: relative; }
.over-image {
  height: 440px; border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,107,26,0.25) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.over-image-label { font-family: var(--display); font-weight: 700; color: rgba(255,255,255,0.5); font-size: 1.1rem; }
.over-stat-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--orange); color: var(--white);
  padding: 22px 28px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); text-align: center;
}
.over-stat-num { display: block; font-family: var(--display); font-size: 2.4rem; font-weight: 800; line-height: 1; }
.over-stat-label { font-size: 0.85rem; font-weight: 600; }

.over-features { margin: 22px 0; display: grid; gap: 12px; }
.over-feat { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink); }
.over-feat span {
  display: grid; place-items: center; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange); color: var(--white); font-size: 0.8rem; font-weight: 700;
}
.over-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cert-badge {
  background: var(--off); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
}

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; }
.price-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 28px;
  transition: var(--t); position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-featured { border: 2px solid var(--orange); box-shadow: 0 16px 50px rgba(255,107,26,0.15); }
.price-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-family: var(--display); font-weight: 700; font-size: 0.78rem;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.price { font-family: var(--display); color: var(--gray); font-size: 0.95rem; margin-bottom: 22px; }
.price span { font-size: 2.6rem; font-weight: 800; color: var(--navy); }
.price small { font-size: 1rem; color: var(--gray); }
.price-card ul { display: grid; gap: 11px; margin-bottom: 26px; }
.price-card li { font-size: 0.94rem; color: var(--ink); }
.price-disclaimer { text-align: center; font-size: 0.82rem; color: var(--gray-light); margin-top: 26px; }

/* ---------- Offerte ---------- */
.offerte-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
.offerte-contacts { display: grid; gap: 12px; margin: 26px 0; }
.offerte-contact {
  display: flex; align-items: center; gap: 14px;
  background: var(--off); border: 1px solid var(--line);
  padding: 14px 18px; border-radius: var(--radius-sm); transition: var(--t);
}
.offerte-contact:hover { border-color: var(--orange); background: var(--white); transform: translateX(4px); }
.oc-ico { font-size: 1.4rem; }
.offerte-contact strong { display: block; font-family: var(--display); color: var(--navy); font-size: 0.95rem; }
.offerte-contact span { font-size: 0.88rem; color: var(--gray); }
.offerte-trust { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.88rem; font-weight: 600; color: var(--navy); }

.offerte-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }

/* ---------- Werkgebieden ---------- */
/* Grouped werkgebieden */
.geo-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.geo-group {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 22px 22px 24px;
  transition: var(--t);
}
.geo-group:hover { border-color: rgba(255,107,26,0.45); background: rgba(255,255,255,0.06); }
.geo-region {
  font-family: var(--display); font-weight: 800; font-size: 1.05rem;
  color: var(--white); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.geo-region::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.geo-region span { margin-left: auto; font-size: 1rem; }
.geo-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.geo-chips span {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 0.84rem; font-weight: 500;
  padding: 6px 12px; border-radius: 999px;
  transition: var(--t);
}
.geo-chips span:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.regions-note { text-align: center; margin-top: 34px; color: rgba(255,255,255,0.75); }

/* Direct-contact CTA (vervangt prijzen) */
.contact-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 22px; padding: 40px;
  box-shadow: 0 24px 60px -20px rgba(10,26,51,0.4);
  position: relative; overflow: hidden;
}
.contact-cta::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.22) 0%, transparent 70%);
}
.contact-cta-inner {
  display: flex; align-items: center; gap: 28px;
  position: relative; flex-wrap: wrap; justify-content: center; text-align: left;
}
.contact-cta-ico { font-size: 3rem; flex-shrink: 0; }
.contact-cta-text { flex: 1; min-width: 240px; }
.contact-cta-text strong { display: block; font-family: var(--display); font-weight: 800; font-size: 1.25rem; color: var(--white); line-height: 1.3; margin-bottom: 6px; }
.contact-cta-text span { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.contact-cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.contact-cta-actions .btn { justify-content: center; }

/* Werkgebieden teaser op homepage */
.geo-teaser { text-align: center; max-width: 760px; margin: 0 auto; }
.geo-teaser-regions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
.geo-teaser-regions span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-family: var(--display); font-weight: 600; font-size: 0.9rem;
  padding: 10px 18px; border-radius: 999px;
}
.geo-teaser-text { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.7; margin-bottom: 28px; }
.geo-teaser-text strong { color: var(--orange-2); }

/* ---------- Aparte pagina (werkgebieden) ---------- */
.page-hero { position: relative; background: var(--navy); color: var(--white); padding: 64px 0 70px; overflow: hidden; }
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.breadcrumb { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--orange-2); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }
.breadcrumb strong { color: var(--white); font-weight: 600; }
.page-hero-title { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.1; letter-spacing: -0.02em; margin: 14px 0 18px; }
.page-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.82); line-height: 1.7; max-width: 640px; margin-bottom: 28px; }
.page-hero-sub strong { color: var(--white); }

.narrow { max-width: 820px; }
.prose h2 { font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: var(--navy); letter-spacing: -0.02em; margin: 0 0 16px; }
.prose h2:not(:first-child) { margin-top: 34px; }
.prose p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-size: 1.02rem; }
.prose strong { color: var(--navy); }
.section-dark .prose h2, .section-dark .prose strong { color: var(--white); }
.section-dark .prose p { color: rgba(255,255,255,0.8); }

.back-link { text-align: center; margin-top: 34px; }
.back-link a { font-family: var(--display); font-weight: 700; color: var(--orange); }
.back-link a:hover { color: var(--orange-dark); }
.regions-note a { color: var(--orange-2); font-weight: 600; }
.regions-note strong { color: var(--white); }

/* ---------- Zakelijk ---------- */
.business-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.business-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: var(--t);
}
.business-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.business-ico {
  display: inline-grid; place-items: center;
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--navy); font-size: 1.7rem; margin-bottom: 14px;
}
.business-card h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.business-card p { font-size: 0.9rem; color: var(--gray); }
.business-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 34px 40px;
}
.business-cta h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.business-cta p { color: rgba(255,255,255,0.75); }

/* ---------- Reviews ---------- */
.reviews-score-head { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 14px; font-size: 0.95rem; color: var(--gray); flex-wrap: wrap; }
.reviews-score-head strong { color: var(--navy); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; transition: var(--t);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review-card p { color: var(--ink); margin: 14px 0 20px; font-size: 0.98rem; }
.review-author { display: flex; align-items: center; gap: 12px; }
.ra-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--navy); color: var(--white);
  font-family: var(--display); font-weight: 700; font-size: 1.1rem;
}
.review-author strong { display: block; font-family: var(--display); color: var(--navy); font-size: 0.95rem; }
.review-author span { font-size: 0.82rem; color: var(--gray); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden; transition: var(--t);
}
.faq-item[open] { border-color: var(--orange); box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer; padding: 18px 22px; list-style: none;
  font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 400; color: var(--orange);
  transition: transform var(--t); flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; color: var(--gray); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: stretch; }
.contact-info { display: grid; gap: 12px; align-content: start; }
.contact-block {
  display: flex; align-items: center; gap: 15px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 20px; transition: var(--t);
}
a.contact-block:hover { border-color: var(--orange); transform: translateX(4px); box-shadow: var(--shadow); }
.cb-ico {
  display: grid; place-items: center; flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 12px; background: var(--off); font-size: 1.4rem;
}
.contact-block strong { display: block; font-family: var(--display); color: var(--navy); font-size: 0.98rem; }
.contact-block span { font-size: 0.9rem; color: var(--gray); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 380px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(0.2); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { margin: 16px 0; font-size: 0.92rem; max-width: 300px; }
.footer-trust { font-size: 0.88rem; }
.footer-col h4 { font-family: var(--display); font-weight: 700; color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.92rem; color: rgba(255,255,255,0.65); margin-bottom: 10px; transition: var(--t); }
.footer-col a:hover { color: var(--orange-2); }
.footer-btn { margin-top: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { transition: color var(--t); }
.footer-links a:hover { color: var(--orange-2); }

/* ---------- Sticky mobile bar ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  display: none; background: var(--white);
  box-shadow: 0 -6px 24px rgba(10,26,51,0.12);
  padding: 8px; gap: 8px;
}
.mb-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 4px; border-radius: 10px;
  font-family: var(--display); font-weight: 700; font-size: 0.74rem; color: var(--white);
}
.mb-btn span { font-size: 1.1rem; }
.mb-call { background: var(--navy); }
.mb-wa { background: var(--green); }
.mb-quote { background: var(--orange); }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed; bottom: 26px; right: 26px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  transition: var(--t); animation: floatY 3s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); background: var(--green-dark); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--navy); color: var(--white);
  padding: 15px 26px; border-radius: var(--radius-sm);
  font-family: var(--display); font-weight: 600; font-size: 0.95rem;
  box-shadow: var(--shadow-lg); z-index: 200; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 90vw; text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--green-dark); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.services-grid .reveal:nth-child(2),.reviews-grid .reveal:nth-child(2),.business-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.services-grid .reveal:nth-child(3),.reviews-grid .reveal:nth-child(3),.business-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.services-grid .reveal:nth-child(4),.business-grid .reveal:nth-child(4) { transition-delay: 0.18s; }

/* ---------- Mobile nav drawer ---------- */
@media (max-width: 960px) {
  /* backdrop-filter maakt #header de containing block voor position:fixed,
     waardoor de drawer maar zo hoog werd als de header. Op mobiel uitzetten. */
  #header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--white); }

  .nav-overlay { display: block; pointer-events: none; }
  #header.menu-open .nav-overlay { pointer-events: auto; }

  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(86vw, 360px);
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--white);
    padding: 0 24px calc(24px + env(safe-area-inset-bottom));
    transform: translateX(105%);
    transition: transform 0.34s cubic-bezier(.4,.0,.2,1);
    box-shadow: -18px 0 50px rgba(10,26,51,0.22);
    overflow-y: auto; z-index: 100;
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, var(--orange), var(--red)) 1;
  }
  #header.menu-open .nav-links { transform: translateX(0); }

  .nav-mobile-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0 14px; margin-bottom: 6px;
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; background: var(--white); z-index: 2;
  }
  .nav-mobile-title { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--navy); }
  .nav-close {
    width: 38px; height: 38px; border: none; cursor: pointer;
    background: rgba(226,59,59,0.08); color: var(--red);
    border-radius: 10px; font-size: 1.5rem; line-height: 1;
    display: grid; place-items: center; transition: var(--t);
  }
  .nav-close:hover { background: var(--red); color: var(--white); }

  /* menu-items als tappable vakjes */
  .nav-links a {
    width: 100%; margin-top: 10px;
    padding: 15px 16px;
    background: var(--off);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: var(--display); font-weight: 600; font-size: 1.02rem;
    color: var(--navy);
    display: flex; align-items: center; justify-content: space-between;
    transition: var(--t);
  }
  .nav-links a:first-of-type { margin-top: 4px; }
  .nav-links a::after {
    content: '›'; display: block; position: static; width: auto; height: auto;
    background: none; font-size: 1.4rem; line-height: 1; color: var(--gray);
    transition: var(--t);
  }
  .nav-links a:hover, .nav-links a:active {
    background: var(--navy); border-color: var(--navy); color: var(--white);
    transform: translateX(2px);
  }
  .nav-links a:hover::after { color: var(--orange-2); transform: translateX(3px); }
  .nav-links a.active {
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-color: transparent; color: var(--white);
    box-shadow: 0 8px 18px rgba(226,59,59,0.3);
  }
  .nav-links a.active::after { color: var(--white); }

  .nav-mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
  .btn-block { width: 100%; justify-content: center; }

  .hamburger { display: flex; }
  .nav-actions { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 460px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .geo-groups { grid-template-columns: repeat(2, 1fr); }
  .over-grid, .offerte-grid, .contact-grid, .spoed-inner { grid-template-columns: 1fr; gap: 40px; }
  .over-stat-card { right: 0; }
  .spoed-visual { order: -1; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .usp-grid { margin-top: 28px; }
  .topbar-hide-mobile { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .geo-groups { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mobile-bar { display: flex; }
  .float-wa { bottom: 80px; right: 18px; }
  body { padding-bottom: 64px; }
  .footer { padding-bottom: 64px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .business-grid { grid-template-columns: 1fr; }
  /* diensten blijven 2 per rij op mobiel */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { padding: 18px 14px; }
  .service-ico { width: 46px; height: 46px; font-size: 1.4rem; margin-bottom: 12px; border-radius: 12px; }
  .service-card h3 { font-size: 1rem; margin-bottom: 6px; }
  .service-card p { font-size: 0.82rem; margin-bottom: 10px; }
  .service-link { font-size: 0.8rem; }
  /* USP box: 2 per rij op mobiel, randen netjes herschikken */
  .usp-grid { grid-template-columns: repeat(2, 1fr); margin-top: 24px; border-radius: 16px; }
  .usp-item { padding: 16px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .usp-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .usp-item:nth-child(2n) { border-right: none; }
  .usp-item:nth-child(n+4) { border-bottom: 1px solid var(--line); }
  .usp-item:nth-last-child(-n+2) { border-bottom: none; }
  .usp-ico { width: 40px; height: 40px; font-size: 1.25rem; }
  .usp-item strong { font-size: 0.92rem; }
  .usp-item span { font-size: 0.74rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .business-cta { padding: 28px 24px; text-align: center; justify-content: center; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
