/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --clr-blue:        #0062CC;
  --clr-blue-dark:   #0050A8;
  --clr-blue-light:  #EBF4FF;
  --clr-navy:        #233761;
  --clr-text:        #1A1A2E;
  --clr-muted:       #6B7280;
  --clr-bg-light:    #F8F9FA;
  --clr-border:      #E5E7EB;
  --clr-white:       #FFFFFF;
  --clr-footer-bg:   #0D1421;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 44px rgba(0,0,0,0.14);
  --shadow-blue: 0 6px 20px rgba(0,98,204,0.35);

  --radius:    8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --nav-h:    72px;
  --max-w:    1200px;
  --pad-x:    clamp(1.25rem, 4vw, 3rem);
  --section-y: 96px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

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

img    { max-width: 100%; height: auto; display: block; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { font-family: inherit; }
address { font-style: normal; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding: var(--section-y) 0; }

.bg-light { background: var(--clr-footer-bg); }
.bg-blue  { background: var(--clr-navy); color: white; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-blue);
  margin-bottom: 0.875rem;
}

.section-label.light { color: rgba(255,255,255,0.65); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header .section-label { display: block; }

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-header.light h2 { color: white; }
.section-header.light .section-intro { color: rgba(255,255,255,0.78); }

.section-intro {
  font-size: 1.0625rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s,
              transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}

.btn-lg { padding: 0.9375rem 2.25rem; font-size: 1rem; }

.btn-primary {
  background: var(--clr-blue);
  color: white;
  border-color: var(--clr-blue);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--clr-blue-dark);
  border-color: var(--clr-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.65);
}
.btn-outline-white:hover, .btn-outline-white:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-white {
  background: white;
  color: var(--clr-blue);
  border-color: white;
}
.btn-white:hover, .btn-white:focus-visible {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--clr-blue);
  color: white;
  padding: 0.75rem 1.25rem;
  z-index: 999;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

#site-header.scrolled {
  background: white;
  box-shadow: 0 1px 20px rgba(0,0,0,0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.logo-img-color { display: none; }

#site-header.scrolled .logo-img-color { display: block; }
#site-header.scrolled .logo-img-white { display: none; }

/* Nav menu wrapper */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-right: 0.75rem;
}

.nav-links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

#site-header.scrolled .nav-links a {
  color: var(--clr-text);
}

.nav-links a:hover, .nav-links a:focus-visible {
  background: rgba(255,255,255,0.15);
}

#site-header.scrolled .nav-links a:hover,
#site-header.scrolled .nav-links a:focus-visible {
  background: var(--clr-blue-light);
  color: var(--clr-blue);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
  transform-origin: center;
}

#site-header.scrolled .nav-toggle span { background: var(--clr-text); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1920&q=90');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 15, 50, 0.90) 0%,
    rgba(0, 30, 80, 0.72) 50%,
    rgba(0, 20, 60, 0.60) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 6rem;
  max-width: 760px;
}

.hero-content .section-label { margin-bottom: 1.25rem; }

.hero-content h1 {
  font-size: clamp(2.25rem, 6.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 2.75rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* ============================================================
   USP STRIP
   ============================================================ */
.usps {
  background: var(--clr-navy);
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.usp-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}

.usp-item:last-child { border-right: none; }
.usp-item:hover      { background: white; }

.usp-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-blue);
  transition: background 0.2s, color 0.2s;
}

.usp-item:hover .usp-icon {
  background: var(--clr-blue);
  color: white;
}

.usp-icon svg { width: 22px; height: 22px; }

.usp-item h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: white;
  transition: color 0.2s;
}

.usp-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  transition: color 0.2s;
}

.usp-item:hover h3 { color: var(--clr-text); }
.usp-item:hover p  { color: var(--clr-muted); }

/* ============================================================
   DIENSTEN
   ============================================================ */
.diensten {
  background: var(--clr-navy);
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dienst-card {
  background: var(--clr-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-blue);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.25s ease;
}

.dienst-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dienst-image {
  height: 210px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.dienst-card:hover .dienst-image { transform: scale(1.04); }

.dienst-body {
  padding: 1.875rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dienst-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.125rem;
  flex-shrink: 0;
}

.dienst-icon svg { width: 20px; height: 20px; }

.dienst-body h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: white;
}

.dienst-body p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.dienst-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s;
  margin-top: auto;
}

.dienst-link:hover { gap: 0.75rem; }

/* ============================================================
   OVER ONS
   ============================================================ */
.over-ons-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.over-ons-text .section-label { display: block; }

.over-ons-text h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.375rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: white;
}

.over-ons-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1.125rem;
}

.growth-callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--clr-blue-light);
  border-left: 3px solid var(--clr-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.growth-icon {
  width: 36px;
  height: 36px;
  background: var(--clr-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.growth-icon svg { width: 16px; height: 16px; }

.growth-callout p {
  font-size: 0.9375rem;
  color: var(--clr-text);
  margin: 0;
  line-height: 1.6;
}

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--clr-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78125rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.375rem;
  font-weight: 500;
}

/* Image column */
.over-ons-image { position: relative; }

.over-ons-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.image-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--clr-blue);
  color: white;
  padding: 1rem 1.375rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.image-badge svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================================
   WERKGEBIED
   ============================================================ */
.werkgebied-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

.werkgebied-text h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.375rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: white;
}

.werkgebied-text p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1.5rem;
  margin-bottom: 2.75rem;
}

.city-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
  font-weight: 500;
}

.city-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--clr-navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; }

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.375rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.contact-card:first-child { border-top: 1px solid rgba(255,255,255,0.15); }

.contact-icon {
  width: 42px;
  height: 42px;
  background: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-blue);
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; }

.contact-card strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.375rem;
}

.contact-card p {
  font-size: 0.9375rem;
  color: white;
  line-height: 1.55;
}

.contact-card a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.contact-card a:hover { opacity: 0.8; }

.emerg-tag {
  display: inline-flex;
  align-items: center;
  background: #FFF0F0;
  color: #CC2200;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.25rem;
}

.contact-info .btn { margin-top: 1.75rem; }

/* Contact form */
.contact-form-wrap {
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.form-intro {
  font-size: 0.9rem;
  color: var(--clr-muted);
  margin-bottom: 1.75rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text);
}

.form-group label span { color: var(--clr-muted); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--clr-text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 3px rgba(0, 98, 204, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0B7C0;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.field-error {
  font-size: 0.8125rem;
  color: #CC2200;
  margin-top: -0.25rem;
}

.field-error:empty {
  display: none;
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #CC2200;
}

.form-group input[aria-invalid="true"]:focus,
.form-group textarea[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(204, 34, 0, 0.12);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--clr-muted);
  text-align: center;
  margin-top: 0.875rem;
}

.form-status {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 0.75rem;
}

.form-status:empty {
  display: none;
}

.form-status.error { color: #CC2200; }

.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--clr-footer-bg); color: rgba(255,255,255,0.65); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 5rem 0 4rem;
}

.footer-logo { display: inline-block; }

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.48);
  margin-top: 1rem;
}

.footer-domain {
  font-size: 0.8125rem !important;
  font-weight: 600;
  color: rgba(255,255,255,0.48) !important;
  letter-spacing: 0.06em;
  margin-top: 0.5rem !important;
}

.footer-links strong,
.footer-contact-col strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.375rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links a,
.footer-contact-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact-col a:hover { color: white; }

.footer-contact-col address p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}

.footer-bv-note {
  font-size: 0.78125rem !important;
  color: rgba(255,255,255,0.48) !important;
  font-style: italic;
  margin-top: 0.875rem !important;
}

.footer-kvk {
  font-size: 0.78125rem !important;
  color: rgba(255,255,255,0.48) !important;
  margin-top: 0.375rem !important;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.375rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-inner a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-bottom-inner a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   LEGAL CONTENT (privacy policy, etc.)
   ============================================================ */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content .updated-note {
  color: var(--clr-muted);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  color: var(--clr-text);
  line-height: 1.75;
  margin-bottom: 1.125rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.125rem;
}

.legal-content li {
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--clr-blue);
  text-decoration: underline;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-y: 80px; }

  .over-ons-inner,
  .werkgebied-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .over-ons-image { order: -1; }
  .over-ons-image img { height: 380px; }

  .image-badge {
    bottom: 1rem;
    left: 1rem;
  }

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

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-y: 64px; }

  /* Nav */
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-top: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
    gap: 0.25rem;
  }

  .nav-menu.open { display: flex; }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .nav-links a {
    color: var(--clr-text);
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--clr-border);
    border-radius: 0;
    font-size: 1rem;
  }

  .nav-links a:last-child { border-bottom: none; }
  .nav-links a:hover { background: var(--clr-blue-light); color: var(--clr-blue); border-radius: var(--radius); }

  .nav-cta { width: 100%; justify-content: center; margin-top: 0.5rem; }

  .nav-toggle { display: flex; }

  /* Hero */
  .hero-sub br { display: none; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  /* USPs */
  .usps-grid { grid-template-columns: 1fr; }

  .usp-item {
    border-right: none;
    border-bottom: 1px solid var(--clr-border);
    padding: 1.5rem var(--pad-x);
  }

  .usp-item:last-child { border-bottom: none; }

  /* Diensten */
  .diensten-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-row { gap: 1.5rem; flex-wrap: wrap; }

  /* City list */
  .city-list { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2.5rem; }
  .footer-bottom-inner { flex-direction: column; gap: 0.375rem; text-align: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .contact-form-wrap { padding: 1.5rem; }
  .city-list { grid-template-columns: 1fr; }
  .image-badge { font-size: 0.8125rem; padding: 0.75rem 1rem; }
  .hero-scroll-indicator { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }
}
