/* ============================================================
   Tilburg Badkamer — tilburgbadkamer.nl
   Eigen layoutsysteem (licht split-hero, trustbar, tijdlijn)
   ============================================================ */

:root {
  --primary: #0E4F76;
  --primary-light: #1678AE;
  --primary-dark: #0A3B59;
  --accent: #F28A2E;
  --accent-hover: #D9740F;
  --light: #F8F8F8;
  --white: #fff;
  --text: #1B1E22;
  --text-muted: #6A6F76;
  --border: #E4E7EB;
  --tint: #EAF4FB;
  --shadow-sm: 0 2px 10px rgba(14, 79, 118, .07);
  --shadow-md: 0 10px 34px rgba(14, 79, 118, .12);
  --shadow-lg: 0 22px 60px rgba(10, 59, 89, .16);
  --radius: 16px;
  --radius-lg: 26px;
  --pill: 999px;
  --tr: .25s cubic-bezier(.4, 0, .2, 1);
  --font: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--tr); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.18; letter-spacing: -.02em; color: var(--primary-dark); }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }

.section { padding: 84px 0; }
.section.tinted { background: var(--light); }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: var(--tint);
  border-radius: var(--pill);
  padding: 6px 14px;
  margin-bottom: 14px;
}
.section-title { margin-bottom: 12px; }
.section-sub { color: var(--text-muted); font-size: 1.02rem; }

/* ============ Buttons (pill) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--pill);
  border: none;
  font-family: inherit;
  font-weight: 800;
  font-size: .93rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--tr);
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(242, 138, 46, .35);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(242, 138, 46, .4); }
.btn-ghost {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .45);
}
.btn-outline-light:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

/* ============ Header / nav ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
.header.scrolled { box-shadow: 0 6px 24px rgba(16, 24, 40, .09); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: inline-flex; align-items: center; line-height: 1; }
.logo-img { height: 44px; width: auto; }

.nav ul { display: flex; align-items: center; gap: 2px; }
.nav ul li a {
  display: inline-block;
  padding: 9px 13px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  border-radius: var(--pill);
  transition: all var(--tr);
}
.nav ul li a:hover, .nav ul li a.active { color: var(--primary-light); background: var(--tint); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 225px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--tr);
  z-index: 200;
}
.nav-dropdown::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 10px; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 15px; font-size: .85rem; font-weight: 600; border-radius: 10px; }
.dropdown-menu a:hover, .dropdown-menu a.active { background: var(--tint); color: var(--primary-light); }

.nav-cta { margin-left: 10px; }
.nav-cta a {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: var(--pill);
  padding: 11px 22px !important;
  font-size: .85rem !important;
  box-shadow: 0 6px 16px rgba(14, 79, 118, .28);
}
.nav-cta a:hover { background: var(--primary-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 25px; height: 2.5px; background: var(--primary-dark); border-radius: 3px; transition: var(--tr); }

/* ============ Hero (index) — licht split-hero ============ */
.hero {
  padding: 168px 0 0;
  background: linear-gradient(180deg, var(--tint) 0%, var(--white) 78%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 120, 174, .14) 0%, transparent 68%);
  pointer-events: none;
}
.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 92px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: 7px 16px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.hero-kicker strong { color: var(--accent); }
.hero h1 { margin-bottom: 18px; }
.hero h1 .mark {
  color: var(--primary-light);
  background: linear-gradient(transparent 68%, rgba(242, 138, 46, .35) 68%);
}
.hero-lead { font-size: 1.12rem; color: var(--text-muted); max-width: 520px; margin-bottom: 28px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.hero-points li { font-size: .86rem; font-weight: 700; color: var(--primary-dark); }
.hero-points li::before { content: '\2713'; color: var(--accent); font-weight: 800; margin-right: 8px; }

.hero-visual { position: relative; }
.hero-panel {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 38px 34px 32px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.panel-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--pill);
  padding: 6px 14px;
  margin-bottom: 18px;
}
.hero-panel h3 { color: var(--white); margin-bottom: 16px; font-size: 1.3rem; }
.panel-list { margin-bottom: 24px; }
.panel-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.panel-list li:last-child { border-bottom: none; }
.panel-list li::before {
  content: '\2713';
  position: absolute;
  left: 0; top: 7px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: rgba(242, 138, 46, .22);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel-stats { display: flex; gap: 26px; }
.panel-stat .num { font-size: 1.5rem; font-weight: 800; color: var(--accent); line-height: 1.1; }
.panel-stat .lbl { font-size: .72rem; color: rgba(255, 255, 255, .72); }
.hero-chip {
  position: static;
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-chip .g {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--primary-light);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-chip .stars { color: var(--accent); font-size: .8rem; letter-spacing: 2px; }
.hero-chip .txt { font-size: .78rem; font-weight: 700; color: var(--primary-dark); line-height: 1.35; }

/* ============ Trustbar ============ */
.trustbar { background: var(--primary-dark); color: var(--white); padding: 20px 0; }
.trustbar-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px 30px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 700; }
.trust-item .ico { color: var(--accent); font-size: 1.05rem; }

/* ============ Diensten — horizontale kaarten ============ */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.svc-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: all var(--tr);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(22, 120, 174, .4); }
.svc-icon {
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all var(--tr);
}
.svc-card:hover .svc-icon { background: var(--accent); }
.svc-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.svc-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 10px; }
.svc-link { font-size: .84rem; font-weight: 800; color: var(--primary-light); }
.svc-link::after { content: ' \2192'; }
.svc-card:hover .svc-link { color: var(--accent-hover); }

/* ============ Split (waarom / over) ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .section-head { margin-bottom: 22px; }
.split p { color: var(--text-muted); margin-bottom: 14px; font-size: .95rem; }
.usp-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.usp-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all var(--tr);
}
.usp-tile:hover { border-top-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.usp-tile .ico { font-size: 1.6rem; margin-bottom: 10px; }
.usp-tile h4 { font-size: .95rem; margin-bottom: 6px; }
.usp-tile p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* ============ Check-list ============ */
.check-list { margin: 16px 0 22px; }
.check-list li {
  position: relative;
  padding-left: 22px;
  margin: 9px 0;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}
.check-list li strong { color: var(--primary-dark); }

/* ============ Werkwijze tijdlijn ============ */
.timeline { max-width: 780px; margin: 0 auto; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 27px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--primary-light), var(--accent));
  opacity: .35;
}
.tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 26px; padding: 20px 0; position: relative; }
.tl-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.tl-step:hover .tl-num { background: var(--accent); border-color: var(--accent); color: var(--white); }
.tl-body h3 { font-size: 1.08rem; margin-bottom: 6px; }
.tl-body p { font-size: .92rem; color: var(--text-muted); }
.tl-body .tl-tag { display: inline-block; font-size: .72rem; font-weight: 800; color: var(--primary-light); background: var(--tint); border-radius: var(--pill); padding: 3px 12px; margin-top: 10px; }

/* ============ Wijken ============ */
.wijk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.wijk-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}
.wijk-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform var(--tr);
}
.wijk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wijk-card:hover::before { transform: scaleY(1); }
.wijk-card h3 { font-size: 1rem; margin-bottom: 6px; }
.wijk-card p { font-size: .82rem; color: var(--text-muted); margin-bottom: 12px; }
.wijk-arrow { font-size: .82rem; font-weight: 800; color: var(--primary-light); }
.wijk-card:hover .wijk-arrow { color: var(--accent-hover); }

/* ============ Leadsectie (formulier, donker) ============ */
.lead-section {
  background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 62%, var(--primary-light) 130%);
  color: var(--white);
  padding: 90px 0;
}
.lead-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 62px; align-items: start; }
.lead-copy .section-label { background: rgba(255, 255, 255, .12); color: var(--white); }
.lead-copy h2 { color: var(--white); margin-bottom: 14px; }
.lead-copy > p { color: rgba(255, 255, 255, .78); margin-bottom: 26px; }
.lead-points li {
  position: relative;
  padding: 9px 0 9px 34px;
  font-size: .92rem;
  color: rgba(255, 255, 255, .88);
}
.lead-points li::before {
  content: '\2713';
  position: absolute;
  left: 0; top: 9px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(242, 138, 46, .25);
  color: var(--accent);
  font-size: .74rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-quote {
  margin-top: 28px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .85);
}
.lead-quote .who { display: block; margin-top: 10px; font-weight: 800; color: var(--accent); font-size: .8rem; }

/* ============ Formulier ============ */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.form-card h3 { margin-bottom: 4px; font-size: 1.25rem; }
.form-card .form-note { font-size: .82rem; color: var(--text-muted); margin-bottom: 22px; }
.ghl-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: .78rem; font-weight: 800; color: var(--primary-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--light);
  font-family: inherit;
  font-size: .88rem;
  color: var(--text);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(22, 120, 174, .16);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9AA0A6; }
.form-group textarea { resize: vertical; min-height: 84px; }
.ghl-form__submit { width: 100%; font-size: 1rem; padding: 15px; }
.ghl-invalid { border-color: #e53935 !important; }
.ghl-form__feedback { padding: 14px 16px; border-radius: 12px; font-size: .88rem; margin-top: 4px; }
.ghl-form__success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.ghl-form__error { background: #fbe9e7; color: #c62828; border: 1px solid #ef9a9a; }
.ghl-form__error a { color: #c62828; text-decoration: underline; font-weight: 800; }

/* ============ Reviews ============ */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: all var(--tr);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.review-stars { color: var(--accent); letter-spacing: 2px; font-size: .9rem; }
.google-chip {
  font-size: .68rem;
  font-weight: 800;
  color: var(--primary-light);
  background: var(--tint);
  border-radius: var(--pill);
  padding: 4px 11px;
}
.review-text { font-size: .89rem; color: var(--text-muted); font-style: italic; margin-bottom: 20px; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-name { font-size: .85rem; font-weight: 800; color: var(--primary-dark); }
.review-loc { font-size: .74rem; color: var(--text-muted); }

/* ============ FAQ ============ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; padding: 0 22px; transition: border-color var(--tr); }
.faq-item:hover { border-color: rgba(22, 120, 174, .45); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 19px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-align: left;
}
.faq-q::after {
  content: '+';
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--primary-light);
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr);
}
.faq-q.open::after { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .89rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-q.open + .faq-a { max-height: 340px; padding-bottom: 20px; }

/* ============ CTA-banner (ingelegde ronde box) ============ */
.cta-banner { padding: 30px 0 90px; }
.cta-box {
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 125%);
  border-radius: var(--radius-lg);
  padding: 66px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  right: -110px; top: -110px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(242, 138, 46, .18);
}
.cta-box h2 { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-box p { color: rgba(255, 255, 255, .75); max-width: 520px; margin: 0 auto 28px; position: relative; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; position: relative; }

/* ============ Page-hero (subpagina's, licht) ============ */
.page-hero {
  padding: 150px 0 62px;
  background: linear-gradient(180deg, var(--tint) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
}
.breadcrumb { font-size: .8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--primary-light); }
.breadcrumb a:hover { color: var(--accent-hover); }
.page-hero h1 { margin-bottom: 14px; }
.accent-bar { width: 64px; height: 5px; border-radius: var(--pill); background: var(--accent); margin-bottom: 18px; }
.page-hero p { color: var(--text-muted); max-width: 640px; font-size: 1.05rem; }

/* ============ Dienstenpagina rijen ============ */
.dienst-row {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
  align-items: center;
  padding: 54px 0;
  border-bottom: 1px solid var(--border);
}
.dienst-row:last-child { border-bottom: none; }
.dienst-row.rev .dienst-visual { order: 2; }
.dienst-visual {
  position: relative;
  background: linear-gradient(150deg, var(--tint) 0%, #DCEBF6 100%);
  border-radius: var(--radius-lg);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.2rem;
}
.dienst-num {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--white);
  color: var(--primary);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  border-radius: var(--pill);
  padding: 5px 13px;
  box-shadow: var(--shadow-sm);
}
.dienst-body h2 { font-size: 1.5rem; margin-bottom: 10px; }
.dienst-body p { color: var(--text-muted); font-size: .94rem; margin-bottom: 12px; }

/* ============ Contentpagina's ============ */
.content-wrap { max-width: 780px; margin: 0 auto; }
.content-wrap h2 { margin: 34px 0 12px; }
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap h3 { margin: 26px 0 10px; }
.content-wrap p { color: var(--text-muted); margin-bottom: 14px; font-size: .95rem; }

/* ============ Werkgebied / oplossingen ============ */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.area-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: all var(--tr);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(242, 138, 46, .55); }
.area-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.area-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 12px; }
.area-card .wijk-arrow { font-weight: 800; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.chip-list span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: 7px 16px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
}
.sol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sol-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary-light);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: all var(--tr);
}
.sol-card:hover { border-left-color: var(--accent); box-shadow: var(--shadow-md); }
.sol-card h3 { font-size: 1rem; margin-bottom: 6px; }
.sol-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ============ Contactpagina ============ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 24px; }
.contact-form-wrap .form-card { box-shadow: var(--shadow-md); }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  margin-bottom: 18px;
}
.contact-card h3 { margin-bottom: 16px; font-size: 1.1rem; }
.contact-detail { display: flex; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--light); font-size: .9rem; }
.contact-detail:last-child { border-bottom: none; }
.contact-detail strong { display: block; color: var(--primary-dark); }
.contact-detail small { color: var(--text-muted); }
.contact-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail a { color: var(--primary-light); font-weight: 700; }
.contact-detail a:hover { color: var(--accent-hover); }
.contact-card-accent { background: var(--primary); border-color: var(--primary); color: var(--white); }
.contact-card-accent h3 { color: var(--white); }
.contact-card-accent p { color: rgba(255, 255, 255, .78); font-size: .88rem; margin-bottom: 16px; }

/* ============ Over ons ============ */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  padding: 30px 18px;
}
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1.1; }
.stat-label { font-size: .8rem; font-weight: 700; color: var(--text-muted); margin-top: 6px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all var(--tr);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.value-card h4 { margin-bottom: 8px; font-size: 1rem; }
.value-card p { font-size: .86rem; color: var(--text-muted); margin: 0; }

/* ============ Footer ============ */
.footer { background: var(--primary-dark); color: rgba(255, 255, 255, .72); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer .logo { background: var(--white); padding: 7px 13px; border-radius: 12px; display: inline-flex; margin-bottom: 16px; }
.footer .logo .logo-img { height: 36px; }
.footer-brand p { font-size: .86rem; line-height: 1.65; margin-bottom: 16px; }
.footer-nap span { display: block; font-size: .8rem; padding: 3px 0; color: rgba(255, 255, 255, .8); }
.footer-nap a { color: rgba(255, 255, 255, .8); }
.footer-nap a:hover { color: var(--accent); }
.footer-col h4 { color: var(--white); font-size: .88rem; font-weight: 800; margin-bottom: 15px; }
.footer-col ul li a { display: block; font-size: .83rem; color: rgba(255, 255, 255, .8); padding: 4px 0; }
.footer-col ul li a:hover { color: var(--accent); }
.fc-item { display: flex; gap: 10px; font-size: .83rem; padding: 5px 0; }
.fc-icon { flex-shrink: 0; }
.fc-text a { color: rgba(255, 255, 255, .8); }
.fc-text a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0;
  font-size: .76rem;
  color: rgba(255, 255, 255, .58);
}
.footer-bottom a { color: rgba(255, 255, 255, .58); }
.footer-bottom a:hover { color: var(--accent); }

/* ============ Float call ============ */
.float-call {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: .9rem;
  border-radius: var(--pill);
  padding: 15px 24px;
  box-shadow: 0 10px 28px rgba(242, 138, 46, .45);
  transition: all var(--tr);
}
.float-call:hover { background: var(--accent-hover); transform: translateY(-3px); }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .nav ul { gap: 0; }
  .nav ul li a { padding: 8px 9px; font-size: .83rem; }
  .nav-cta a { padding: 9px 15px !important; }
  .hero-wrap { grid-template-columns: 1fr; gap: 46px; padding-bottom: 70px; }
  .hero-chip { left: 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .wijk-grid { grid-template-columns: 1fr 1fr; }
  .lead-grid { grid-template-columns: 1fr; gap: 44px; }
  .review-grid { grid-template-columns: 1fr; }
  .dienst-row { grid-template-columns: 1fr; gap: 28px; }
  .dienst-row.rev .dienst-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav ul {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 24px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 44px rgba(16, 24, 40, .14);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav ul.open { display: flex; }
  .nav ul li { border-bottom: 1px solid var(--light); }
  .nav ul li:last-child { border-bottom: none; }
  .nav ul li a { display: block; padding: 14px 6px; font-size: .95rem; border-radius: 0; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 16px;
    min-width: 0;
  }
  .dropdown-menu a { padding: 9px 6px; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta a { display: block; text-align: center; }

  .section { padding: 56px 0; }
  .hero { padding-top: 128px; }
  .page-hero { padding: 118px 0 44px; }
  .hero-panel { padding: 30px 24px 26px; }
  .panel-stats { gap: 18px; }
  .trustbar-row { justify-content: flex-start; }
  .wijk-grid { grid-template-columns: 1fr; }
  .usp-tiles { grid-template-columns: 1fr; }
  .timeline::before { left: 23px; }
  .tl-step { grid-template-columns: 48px 1fr; gap: 18px; }
  .tl-num { width: 48px; height: 48px; font-size: .95rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .area-grid { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .logo-img { height: 38px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.95rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-chip { position: static; margin-top: 18px; }
  .stats-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .float-call .call-text { display: none; }
  .float-call { padding: 15px 17px; }
}
