/* =============================================
   FinCars — Gedeeld Stylesheet
   Montserrat · #0386D1 · #061B2E
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --main:        #0386D1;
  --accent:      #025A8E;
  --bg-licht:    #EDF6FD;
  --bg-donker:   #061B2E;
  --zwart:       #111111;
  --wit:         #FFFFFF;
  --tekst-licht: #5A7A8C;
  --grijs-rand:  #C8DFF0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--zwart);
  background: var(--wit);
  line-height: 1.6;
}

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

/* =============================================
   NAVIGATIE
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-licht);
  border-bottom: 1px solid var(--grijs-rand);
  box-shadow: 0 2px 12px rgba(3,134,209,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* Tekst logo — verborgen, afbeelding wordt gebruikt */
.nav-logo { display: none; }

/* Afbeelding logo — zichtbaar op desktop en mobiel */
.nav-logo-img-wrap { display: flex; flex-shrink: 0; align-items: center; }
.nav-logo-img      { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(2,90,142,0.65);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

/* Telefoon knop desktop */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--main);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-phone:hover { background: var(--accent); color: #fff; }

/* Telefoon icoon knop mobiel */
.nav-phone-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--main);
  color: #fff;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-phone-mobile:hover { background: var(--accent); }

/* Rechter groep: telefoon + hamburger samen */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s;
}
.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); }

/* Mobiel uitklapmenu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg-licht);
  padding: 16px 5% 24px;
  border-top: 1px solid var(--grijs-rand);
  box-shadow: 0 6px 24px rgba(3,134,209,0.10);
}
.nav-mobile.open { display: block; }

.nav-mobile ul { margin-bottom: 16px; }
.nav-mobile ul a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(2,90,142,0.7);
  padding: 13px 0;
  border-bottom: 1px solid var(--grijs-rand);
  transition: color 0.2s;
}
.nav-mobile ul a:hover,
.nav-mobile ul a.active { color: var(--accent); }

/* Telefoon link in mobiel menu */
.nav-mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--main);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: 6px;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.nav-mobile-phone:hover { background: var(--accent); color: #fff; }

/* =============================================
   KNOPPEN
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  line-height: 1.2;
}

.btn-primary { background: var(--main); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: #fff; color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: var(--main);
  border: 2px solid var(--main);
}
.btn-outline-dark:hover { background: var(--main); color: #fff; }

/* =============================================
   HOME HERO
   ============================================= */
.hero {
  background: var(--bg-donker);
  padding: 80px 5% 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,134,209,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: rgba(3,134,209,0.18);
  color: var(--main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-highlight { color: var(--main); }

.hero-text > p {
  font-size: 17px;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 34px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image img {
  width: 100%;
  border-radius: 12px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.45));
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--wit);
  border-top: 1px solid var(--grijs-rand);
  border-bottom: 1px solid var(--grijs-rand);
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--grijs-rand);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--main); }
.stat-label {
  font-size: 12px;
  color: var(--tekst-licht);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =============================================
   SECTIES — HELPERS
   ============================================= */
.section { padding: 80px 5%; }
.section-licht  { background: var(--bg-licht); }
.section-donker { background: var(--bg-donker); }
.section-white  { background: var(--wit); }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .accent-line { margin: 0 auto 18px; }
.section-header.center p { margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--main);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--zwart);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-donker .section-header h2 { color: #fff; }
.section-header p {
  font-size: 16px;
  color: var(--tekst-licht);
  max-width: 580px;
  line-height: 1.8;
}
.section-donker .section-header p { color: rgba(255,255,255,0.6); }

.accent-line {
  width: 44px;
  height: 4px;
  background: var(--main);
  border-radius: 2px;
  margin-bottom: 18px;
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--wit);
  border-radius: 10px;
  padding: 32px 28px;
  border-top: 4px solid var(--main);
  box-shadow: 0 2px 16px rgba(3,134,209,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(3,134,209,0.14);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(3,134,209,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--tekst-licht);
  line-height: 1.7;
}
.cards-center { text-align: center; margin-top: 36px; }

/* =============================================
   ABOUT / PROFIEL GRID
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 16px 48px rgba(3,134,209,0.18);
}
.about-text blockquote {
  font-size: 17px;
  font-style: italic;
  color: var(--tekst-licht);
  border-left: 3px solid var(--main);
  padding-left: 20px;
  margin: 16px 0 22px;
  line-height: 1.75;
}
.about-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-text .btn { margin-top: 8px; }
.about-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--zwart);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.about-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--main);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* =============================================
   CTA SECTIE
   ============================================= */
.cta-section {
  background: var(--bg-donker);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,134,209,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 34px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   PAGE HERO (subpagina's)
   ============================================= */
.page-hero {
  background: var(--bg-donker);
  padding: 72px 5% 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,134,209,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-tag {
  display: inline-block;
  background: rgba(3,134,209,0.18);
  color: var(--main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero-inner > p {
  font-size: 17px;
  color: rgba(255,255,255,0.60);
  max-width: 520px;
  line-height: 1.75;
}

/* =============================================
   CONTACT INFO CARDS
   ============================================= */
.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--wit);
  border-radius: 10px;
  padding: 20px 22px;
  border-left: 3px solid var(--main);
  box-shadow: 0 2px 12px rgba(3,134,209,0.07);
}
.contact-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(3,134,209,0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-text h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--tekst-licht);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 4px;
}
.contact-card-text p,
.contact-card-text a {
  font-size: 15px;
  font-weight: 600;
  color: var(--zwart);
  line-height: 1.5;
}
.contact-card-text a:hover { color: var(--main); }

.contact-note {
  font-size: 14px;
  color: var(--tekst-licht);
  line-height: 1.7;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--wit);
  border-radius: 8px;
  border: 1px solid var(--grijs-rand);
}

/* =============================================
   CONTACTFORMULIER
   ============================================= */
.form-box {
  background: var(--wit);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(3,134,209,0.09);
  border: 1px solid var(--grijs-rand);
}
.form-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--zwart);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--zwart);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--zwart);
  background: var(--bg-licht);
  border: 1.5px solid var(--grijs-rand);
  border-radius: 6px;
  padding: 12px 15px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--main);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}
.form-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--main);
  cursor: pointer;
}
.form-check label {
  font-size: 13px;
  color: var(--tekst-licht);
  line-height: 1.6;
  cursor: pointer;
}
.form-check a { color: var(--main); }
.form-check a:hover { text-decoration: underline; }

.form-status {
  padding: 13px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  display: none;
}
.form-status.success {
  background: #d4f0e0;
  color: #1a6640;
  border: 1px solid #a8dbb9;
  display: block;
}
.form-status.error {
  background: #fde8e8;
  color: #8b1a1a;
  border: 1px solid #f5c0c0;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-donker);
  padding: 60px 5% 0;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
}
.footer-logo .fin  { color: #fff; }
.footer-logo .cars { color: var(--main); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 280px;
}
.footer-contact-info { display: flex; flex-direction: column; gap: 9px; }
.footer-contact-info a {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--main); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* =============================================
   OVER ONS — TIMELINE
   ============================================= */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--grijs-rand);
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px; top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--main);
  border: 3px solid var(--wit);
  box-shadow: 0 0 0 2px var(--main);
}
.timeline-item .timeline-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--main);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.timeline-item p {
  font-size: 14px;
  color: var(--tekst-licht);
  line-height: 1.65;
}

/* Waarden cards */
.waarden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.waarde-card {
  background: var(--wit);
  border-radius: 10px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(3,134,209,0.07);
  border-bottom: 3px solid var(--main);
}
.waarde-card-icon {
  width: 56px; height: 56px;
  background: rgba(3,134,209,0.10);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.waarde-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.waarde-card p {
  font-size: 14px;
  color: var(--tekst-licht);
  line-height: 1.7;
}

/* =============================================
   DIENSTEN — DETAIL RIJEN
   ============================================= */
.diensten-list { max-width: 1200px; margin: 0 auto; }

.dienst-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--grijs-rand);
}
.dienst-row:first-child { padding-top: 0; }
.dienst-row:last-child  { border-bottom: none; padding-bottom: 0; }

.dienst-icon-big {
  width: 72px; height: 72px;
  background: rgba(3,134,209,0.10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.dienst-text h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--zwart);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.dienst-text > p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}
.dienst-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.dienst-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--tekst-licht);
  font-weight: 500;
}
.dienst-list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--main);
  flex-shrink: 0;
}
.dienst-visual {
  background: var(--bg-licht);
  border-radius: 16px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border: 1px solid var(--grijs-rand);
}
.dienst-visual img { border-radius: 10px; width: 100%; object-fit: cover; }
.dienst-visual-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.dienst-visual-icon svg { opacity: 0.35; }
.dienst-visual-icon p {
  font-size: 13px;
  color: var(--tekst-licht);
  font-weight: 600;
  text-align: center;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 240px 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .timeline-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-phone { font-size: 11px; padding: 9px 11px; gap: 6px; }
  .nav-phone-mobile { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero h1 { font-size: 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }

  /* Stats */
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--grijs-rand); }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }
  .waarden-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { width: 180px; border-radius: 50%; margin: 0 auto; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-tagline { max-width: 100%; }

  /* CTA */
  .cta-section h2 { font-size: 26px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; }

  /* Page hero */
  .page-hero { padding: 56px 5% 48px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero-inner > p { font-size: 15px; }

  /* Diensten */
  .dienst-row { grid-template-columns: 1fr; gap: 32px; }
  .dienst-row .dienst-visual { order: 2; min-height: 160px; padding: 32px; }
  .dienst-row .dienst-text   { order: 1; }
  .dienst-text h3 { font-size: 22px; }

  /* Section */
  .section { padding: 56px 5%; }

  /* Form */
  .form-box { padding: 24px 18px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .page-hero h1 { font-size: 24px; }
  .section-header h2 { font-size: 22px; }
  .stat-num { font-size: 28px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
}
