/* ========================================
   VARIABLES
======================================== */
:root {
  --navy: #0d2140;
  --navy-light: #1a3a6b;
  --teal: #00c8a0;
  --teal-dark: #00a882;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 3vw, 1.375rem); }
h4 { font-size: 1.0625rem; }

p { color: var(--text-muted); line-height: 1.75; }

/* ========================================
   LAYOUT
======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.text-center { text-align: center; }

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 { margin-bottom: 0.75rem; }

.section-header.centered {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.badge {
  display: inline-block;
  background: rgba(0, 200, 160, 0.12);
  color: var(--teal-dark);
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
  font-family: inherit;
}

.btn-primary {
  background: var(--teal);
  color: white;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 200, 160, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.btn-outline:hover {
  background: white;
  border-color: white;
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--navy);
}
.btn-white:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
======================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.nav-logo .accent { color: var(--teal); }

.logo-icon {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .nav-cta {
  background: var(--navy);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--teal);
  color: white;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   HERO (homepage)
======================================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 55%, #0f4980 100%);
  color: white;
  padding: 7rem 1.5rem 9rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,200,160,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,200,160,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-text {}
.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  position: relative;
}
.hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(0,200,160,0.18);
  border: 1px solid rgba(0,200,160,0.35);
  color: #80ffe0;
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: white;
  max-width: 680px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.125rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========================================
   PAGE HERO (inner pages)
======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  color: white;
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,200,160,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.125rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ========================================
   STATS BAR
======================================== */
.stats-lift {
  padding: 0 1.5rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}
.stats-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 2rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.625rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-number .teal { color: var(--teal); }
.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========================================
   SERVICE CARDS (homepage)
======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* 5-card layout: 3 on top row, 2 centered on bottom */
.cards-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.cards-grid-5 .card:nth-child(-n+3) { grid-column: span 2; }
.cards-grid-5 .card:nth-child(4)    { grid-column: 2 / 4; }
.cards-grid-5 .card:nth-child(5)    { grid-column: 4 / 6; }

@media (max-width: 900px) {
  .cards-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-5 .card:nth-child(-n+3),
  .cards-grid-5 .card:nth-child(4),
  .cards-grid-5 .card:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 560px) {
  .cards-grid-5 { grid-template-columns: 1fr; }
}
.card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,200,160,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal-dark);
}
.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 { color: var(--navy); margin-bottom: 0.625rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1.25rem;
  transition: gap 0.2s;
}
.card-link:hover { gap: 0.625rem; }
.card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========================================
   BENEFITS / WHY SECTION
======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,200,160,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-dark);
}
.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-content h4 { color: var(--navy); margin-bottom: 0.375rem; }
.benefit-content p { font-size: 0.9rem; }

/* ========================================
   CTA BANNER
======================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,200,160,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: white; margin-bottom: 0.875rem; }
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 480px;
  margin: 0 auto 2.25rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   DIENSTEN PAGE
======================================== */
.dienst-block {
  padding: 5rem 1.5rem;
}
.dienst-block.alt { background: var(--bg-soft); }
.dienst-block-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.dienst-block.alt .dienst-block-inner { direction: rtl; }
.dienst-block.alt .dienst-block-inner > * { direction: ltr; }

.dienst-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(0,200,160,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--teal-dark);
}
.dienst-icon-wrap svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dienst-text h2 { color: var(--navy); margin-bottom: 1rem; }
.dienst-text p { font-size: 1.0625rem; margin-bottom: 1.25rem; }

.check-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
}
.check-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300a882' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.dienst-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--bg-soft);
}
.dienst-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.dienst-visual:hover .dienst-photo {
  transform: scale(1.04);
}

/* over-ons team photo */
.over-ons-photo-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.over-ons-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* ========================================
   OVER ONS PAGE
======================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col p { margin-bottom: 1.25rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.value-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0,200,160,0.25);
  line-height: 1;
  margin-bottom: 0.875rem;
}
.value-card h3 { color: var(--navy); margin-bottom: 0.5rem; }

.team-note {
  background: rgba(0,200,160,0.07);
  border: 1px solid rgba(0,200,160,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.team-note h3 { color: var(--navy); margin-bottom: 0.75rem; }

/* ========================================
   CONTACT PAGE
======================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { color: var(--navy); margin-bottom: 0.875rem; }
.contact-info > p { margin-bottom: 2.5rem; }
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,200,160,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-dark);
}
.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item-label {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.contact-item-value {
  font-weight: 500;
  color: var(--text);
  font-size: 0.9375rem;
}

.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.form-card > p { font-size: 0.9rem; margin-bottom: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.375rem; }

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,200,160,0.15);
  background: white;
}
textarea { resize: vertical; min-height: 130px; }

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--navy);
  padding: 4.5rem 1.5rem 2rem;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.footer-brand .footer-logo .accent { color: var(--teal); }
.footer-logo .logo-icon { height: 32px; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--teal); }

/* ========================================
   WTTA CALLOUT
======================================== */
.wtta-box {
  background: linear-gradient(135deg, rgba(13,33,64,0.04) 0%, rgba(0,200,160,0.07) 100%);
  border: 1.5px solid rgba(0,200,160,0.3);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 2rem 0;
}
.wtta-box-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}
.wtta-box-header svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.wtta-box-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.wtta-box p { font-size: 0.9rem; margin-bottom: 0.875rem; }
.wtta-box p:last-child { margin-bottom: 0; }
.wtta-box strong { color: var(--text); }

/* ========================================
   HELPERS
======================================== */
.bg-soft { background: var(--bg-soft); }
.mt-2 { margin-top: 2rem; }

/* ========================================
   COOKIE BANNER
======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: white;
  padding: 1.25rem 2rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  min-width: 200px;
}
.cookie-banner a { color: var(--teal); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--teal);
  color: var(--navy);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}
.cookie-btn-accept:hover { background: #00b38e; }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}
.cookie-btn-decline:hover { color: white; border-color: rgba(255,255,255,0.6); }


/* ========================================
   WTTA BADGE
======================================== */
.wtta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(0,200,160,0.12) 0%, rgba(0,200,160,0.06) 100%);
  border: 1.5px solid rgba(0,200,160,0.35);
  border-radius: 100px;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.02em;
}
.wtta-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal-dark);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ========================================
   TARIEVEN
======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-lg);
}
.pricing-card.featured:hover {
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-xl);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.375rem;
}
.pricing-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0.75rem 0 0.25rem;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1.25rem 0 2rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.5;
}
.pricing-feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal-dark);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-feature.muted { color: var(--text-muted); }
.pricing-feature.muted svg { stroke: var(--border); }
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 1.25rem;
}
.pricing-faq {
  margin-top: 5rem;
}
.pricing-faq h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.3s;
}
details[open] .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ========================================
   ALGEMENE VOORWAARDEN
======================================== */
.av-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
}
.av-nav {
  position: sticky;
  top: 88px;
}
.av-nav-title {
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}
.av-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.av-nav-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  display: block;
}
.av-nav-links a:hover { color: var(--navy); background: var(--bg-soft); }
.av-content h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-top: 3rem;
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.av-content h2:first-child { margin-top: 0; }
.av-content h3 {
  font-size: 1rem;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.av-content p { margin-bottom: 0.875rem; font-size: 0.9375rem; }
.av-content ul {
  margin: 0.5rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.av-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.av-content ul li::before {
  content: '–';
  color: var(--teal-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.av-content a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 2px; }
.av-content a:hover { color: var(--navy); }
.av-meta {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.av-meta strong { color: var(--text); }
@media (max-width: 768px) {
  .av-layout { grid-template-columns: 1fr; }
  .av-nav { display: none; }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-img-wrap { display: none; }

  .two-col,
  .dienst-block-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .dienst-block.alt .dienst-block-inner { direction: ltr; }
  .dienst-photo { height: 280px; }
  .over-ons-photo { height: 300px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    color: var(--text);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    display: block;
    border-radius: var(--radius);
  }
  .nav { position: sticky; }
  .nav-hamburger { display: flex; }

  .stats-bar { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:last-child { border-bottom: none; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-banner {
    padding: 3rem 2rem;
  }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-lift { margin-top: -1.5rem; }
}
