/* ========================================================
   AIS Traffic — Gedeelde stylesheet
   ======================================================== */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #0F172A; background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* VARS */
:root {
  --oranje: #F97316;
  --oranje-dark: #EA6C0A;
  --oranje-light: #FFF7ED;
  --navy: #0F172A;
  --navy-mid: #1E3A5F;
  --grijs: #64748B;
  --grijs-licht: #F8F9FA;
  --border: #E2E8F0;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 16px 48px rgba(15,23,42,0.12);
}

/* TYPOGRAPHY */
h1,h2,h3,h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800; line-height: 1.1;
  word-break: break-word; overflow-wrap: break-word;
}
p, li { overflow-wrap: break-word; line-height: 1.7; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 5rem 0; }
.section--light { background: var(--grijs-licht); }
.section--dark { background: var(--navy); color: #fff; }
.section--orange { background: var(--oranje); }

/* SECTION HEADINGS */
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--oranje); margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  margin-bottom: 1rem; color: var(--navy); hyphens: none; word-break: normal;
}
.section--dark .section-title { color: #fff; }
.section-subtitle { font-size: 1rem; color: var(--grijs); max-width: 560px; }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.875rem 1.875rem; border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  transition: all 0.2s ease; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--oranje); color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}
.btn-primary:hover { background: var(--oranje-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,115,22,0.4); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid rgba(15,23,42,0.2); }
.btn-outline:hover { border-color: var(--oranje); color: var(--oranje); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { box-shadow: 0 8px 24px rgba(255,255,255,0.25); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ========= NAVBAR ========= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 80px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(249,115,22,0.1);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(15,23,42,0.1); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 5%;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 62px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--navy);
  transition: color 0.2s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  right: 100%; height: 2px; background: var(--oranje);
  transition: right 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--oranje); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: 0.3s;
}
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 80px; left: 0; right: 0;
  background: #fff; padding: 1.5rem 5%;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15,23,42,0.1);
  z-index: 199; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.8rem 0; font-weight: 500; color: var(--navy);
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--oranje); }
.mobile-menu .btn-primary { margin-top: 1.25rem; justify-content: center; }

/* ========= PAGE HERO (inner pages) ========= */
.page-hero {
  padding: 130px 0 60px;
  background: linear-gradient(135deg, #fff 0%, var(--oranje-light) 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
  width: 40vw; max-width: 520px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 680px; }
.page-hero .section-label { display: block; margin-bottom: 0.75rem; }
.page-hero h1 { font-size: clamp(1.4rem, 2.8vw, 2.1rem); margin-bottom: 1rem; }
.page-hero p { font-size: 1.05rem; color: var(--grijs); max-width: 540px; margin-bottom: 1.75rem; }
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ========= STATS STRIP ========= */
.stats-strip { background: var(--oranje); padding: 4rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 2.2rem;
  font-weight: 800; color: #fff; line-height: 1;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 6px; }

/* ========= DIENST CARDS ========= */
.diensten-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.dienst-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: all 0.25s ease; position: relative; overflow: hidden;
}
.dienst-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.04), transparent 60%);
  opacity: 0; transition: opacity 0.25s;
}
.dienst-card:hover { border-color: var(--oranje); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dienst-card:hover::before { opacity: 1; }
.dienst-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(249,115,22,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--oranje); margin-bottom: 1.25rem;
}
.dienst-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.dienst-card p { font-size: 0.9rem; color: var(--grijs); margin-bottom: 1rem; }
.dienst-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.875rem; font-weight: 600; color: var(--oranje);
  transition: gap 0.2s;
}
.dienst-card:hover .dienst-link { gap: 8px; }

/* ========= SPLIT LAYOUT ========= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split.reverse .split-visual { order: -1; }
.split-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.check-list { margin: 1.25rem 0 1.75rem; display: flex; flex-direction: column; gap: 0.65rem; }
.check-list li {
  display: flex; align-items: center; gap: 0.75rem; font-size: 0.925rem;
}
.check-list li::before {
  content: ''; width: 22px; height: 22px; min-width: 22px; border-radius: 50%;
  background: rgba(249,115,22,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F97316' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ========= WERKGEBIED ========= */
.steden-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.875rem; margin-top: 2.5rem;
}
.stad-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.25rem; border-radius: 12px;
  border: 1.5px solid var(--border); font-weight: 500;
  font-size: 0.9rem; color: var(--navy);
  transition: all 0.2s; background: #fff;
}
.stad-link::before { content: '→'; color: var(--oranje); font-weight: 700; }
.stad-link:hover { border-color: var(--oranje); color: var(--oranje); box-shadow: 0 4px 16px rgba(249,115,22,0.1); }

/* ========= CONTACT ITEMS ========= */
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: rgba(249,115,22,0.1); display: flex; align-items: center;
  justify-content: center; color: var(--oranje);
}
.contact-item-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grijs); margin-bottom: 0.2rem; }
.contact-item-value { font-weight: 500; }
.contact-item-value a { transition: color 0.2s; }
.contact-item-value a:hover { color: var(--oranje); }

/* ========= FORM ========= */
.form-card { background: #fff; border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-lg); border: 1.5px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.925rem; font-family: 'DM Sans', sans-serif;
  color: var(--navy); background: #fff; transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--oranje); box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 1rem; border-radius: 50px;
  background: var(--oranje); color: #fff; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(249,115,22,0.3);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--oranje-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,115,22,0.4); }
.form-note { text-align: center; font-size: 0.8rem; color: var(--grijs); margin-top: 0.75rem; }

/* ========= CTA BANNER ========= */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 6rem 0; text-align: center; }
.cta-banner h2 { font-size: clamp(1.2rem, 2.2vw, 1.9rem); color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========= FOOTER ========= */
footer { background: #060D1A; padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo img { height: 60px; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 1.25rem; }
.footer-desc { color: rgba(255,255,255,0.4); font-size: 0.875rem; line-height: 1.7; max-width: 260px; margin-bottom: 1.25rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-badge { padding: 0.3rem 0.8rem; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--oranje); }
.footer-bottom { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--oranje); }

/* ========= WHATSAPP FLOAT ========= */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { fill: #fff; }

/* ========= SCROLL REVEAL ========= */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ========= USP STRIP ========= */
.usp-strip { background: var(--navy); padding: 3rem 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.usp-item { display: flex; gap: 1rem; align-items: flex-start; }
.usp-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: rgba(249,115,22,0.15); display: flex; align-items: center; justify-content: center; color: var(--oranje); }
.usp-title { font-weight: 600; color: #fff; font-size: 0.9rem; margin-bottom: 0.2rem; }
.usp-desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ========= FAQ ========= */
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 0.75rem; }
.faq-q { width: 100%; text-align: left; padding: 1.25rem 1.5rem; background: #fff; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy); transition: background 0.2s; }
.faq-q:hover { background: #fff8f3; }
.faq-q.open { background: #fff8f3; color: var(--oranje); }
.faq-chevron { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(249,115,22,0.1); display: flex; align-items: center; justify-content: center; color: var(--oranje); transition: transform 0.3s; }
.faq-q.open .faq-chevron { transform: rotate(180deg); background: var(--oranje); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 1.5rem; font-size: 0.9rem; color: var(--grijs); line-height: 1.7; }
.faq-a.open { max-height: 400px; padding: 1rem 1.5rem 1.25rem; }

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse .split-visual { order: 0; }
  .diensten-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .section { padding: 3.5rem 0; }
}
@media (max-width: 640px) {
  .usp-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steden-grid { grid-template-columns: 1fr 1fr; }
  .nav-logo img { height: 52px; }
}

/* ========= HERO (homepage) ========= */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(-45deg, #ffffff, #fff8f3, #fff3e6, #fff8f3);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
}
@keyframes gradientShift { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }
.hero-bg-circle {
  position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
  width: 55vw; max-width: 700px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(249,115,22,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-dots {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.025;
  background-image: repeating-linear-gradient(0deg,#0F172A 0,#0F172A 1px,transparent 1px,transparent 48px), repeating-linear-gradient(90deg,#0F172A 0,#0F172A 1px,transparent 1px,transparent 48px);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.1); color: var(--oranje);
  border: 1px solid rgba(249,115,22,0.2); padding: 6px 16px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--oranje); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.4);} }
.hero-title { font-size: clamp(1.4rem, 2.6vw, 2.4rem); margin-bottom: 1.25rem; color: var(--navy); word-break: normal; overflow-wrap: normal; hyphens: none; }
.hero-title em { font-style: normal; color: var(--oranje); }
.hero-desc { font-size: 1.05rem; color: var(--grijs); max-width: 480px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: var(--grijs); margin-top: 3px; }
.hero-logo-card {
  background: #fff; border-radius: 24px; padding: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.hero-logo-card img { width: 200px; height: auto; }
.hero-logo-badges { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
.hero-logo-badge {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; background: var(--grijs-licht);
  border-radius: 10px; font-size: 0.875rem; font-weight: 500;
}
.hero-logo-badge svg { color: var(--oranje); flex-shrink: 0; }

/* CONTACT GRID */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* RESPONSIVE ADDITIONS */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero { min-height: auto; padding: 110px 0 60px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-title { font-size: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 0 50px; }
}

/* ========= MOBIELE VERBETERINGEN ========= */

/* Voorkom dat tekst buiten scherm valt */
*, *::before, *::after { box-sizing: border-box; }
body { max-width: 100vw; }
h1, h2, h3, h4 { word-break: break-word; hyphens: auto; }
p, li, a { overflow-wrap: break-word; }
img { max-width: 100%; height: auto; }
table { width: 100%; overflow-x: auto; display: block; }

/* Betere touch targets */
a, button { min-height: 44px; }
.nav-hamburger { min-height: 44px; min-width: 44px; display: flex; align-items: center; justify-content: center; }

/* Telefoon-specifieke fixes */
@media (max-width: 480px) {
  .container { padding: 0 4%; }
  .hero { padding: 95px 0 50px; }
  .hero-title { font-size: 1.3rem; line-height: 1.15; }
  .hero-desc { font-size: 0.95rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-badge { font-size: 0.7rem; padding: 5px 12px; }
  .hero-logo-card { padding: 1.75rem; }
  .hero-logo-card img { width: 160px; }
  .section { padding: 2.75rem 0; }
  .section-title { font-size: 1.2rem; }
  .btn { padding: 0.8rem 1.4rem; font-size: 0.9rem; }
  .dienst-card { padding: 1.5rem; }
  .page-hero { padding: 110px 0 45px; }
  .page-hero h1 { font-size: 1.3rem; }
  .usp-grid { gap: 1rem; }
  .usp-item { gap: 0.75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat-num { font-size: 2.1rem; }
  .steden-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .stad-link { padding: 0.75rem 1rem; font-size: 0.85rem; }
  .cta-banner { padding: 3.5rem 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .form-card { padding: 1.5rem; }
  .footer-grid { gap: 1.75rem; }
  .footer-logo img { height: 48px; }
  .contact-item { gap: 0.75rem; }
  .contact-item-icon { width: 38px; height: 38px; flex-shrink: 0; }
}

/* Extra: hero-logo-card verbergen op kleine schermen */
@media (max-width: 768px) {
  .hero-visual { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Dienst subpagina specifiek */
.dienst-hero-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--radius); margin-bottom: 2rem; box-shadow: var(--shadow-lg); }
.dienst-subpage .split { align-items: start; }
.process-steps { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.process-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--oranje); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.process-step-title { font-weight: 600; margin-bottom: 0.2rem; }
.process-step-desc { font-size: 0.875rem; color: var(--grijs); }
.price-card { background: var(--grijs-licht); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.price-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 0.5rem; }
.price-card p { font-size: 0.9rem; color: var(--grijs); }

/* Mobiele fixes - projecten, faq, werken bij */
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .diensten-grid { grid-template-columns: 1fr; }
}

/* Fix inline grid op mobiel */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
