/* ============================================
   StepUp Support — Editorial Warmth Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --sand: #F2E8DA;
  --sand-light: #F9F3EB;
  --sand-dark: #E8D9C5;
  --navy: #1A2744;
  --navy-light: #2A3D5E;
  --navy-muted: #3D5278;
  --gold: #B07840;
  --gold-light: #C48E55;
  --gold-dark: #8E6230;
  --cream: #FFFBF5;
  --text: #1A2744;
  --text-soft: #4A5568;
  --text-muted: #7A8599;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(26,39,68,0.06);
  --shadow-md: 0 8px 30px rgba(26,39,68,0.08);
  --shadow-lg: 0 20px 60px rgba(26,39,68,0.10);
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--sand-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

p { max-width: 65ch; }

a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(242, 232, 218, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 39, 68, 0.06);
  transition: all var(--transition);
}

.nav.scrolled {
  height: 64px;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo .accent {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--cream) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: var(--radius) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.05em !important;
  transition: all var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--navy-light) !important;
  color: var(--cream) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--navy-light);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(1.5rem, 4vw, 4rem) 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(196,162,101,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2.5rem;
}

.hero-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1.5px;
  background: var(--gold);
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.3;
  z-index: -1;
}

/* Floating stat card */
.hero-stat {
  position: absolute;
  bottom: -20px; left: -30px;
  background: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ============================================
   Section utilities
   ============================================ */
.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 4rem);
}

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

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

.section-header .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-top: 1rem;
}

.section-alt {
  background: var(--cream);
}

.section-navy {
  background: var(--navy);
  color: var(--sand-light);
}

.section-navy h2, .section-navy h3 { color: var(--cream); }
.section-navy p { color: rgba(242, 232, 218, 0.8); }
.section-navy .tag { color: var(--gold-light); }

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

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 39, 68, 0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link:hover { color: var(--navy); }
.service-link::after { content: '→'; transition: transform var(--transition); }
.service-link:hover::after { transform: translateX(4px); }

/* ============================================
   Stats bar
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
}

.stat-item { position: relative; }

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem; top: 10%; height: 80%;
  width: 1px;
  background: rgba(196, 162, 101, 0.3);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(242, 232, 218, 0.7);
}

/* ============================================
   Detailed services (diensten page)
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
}

.service-detail:last-child { border-bottom: none; }

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-detail h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-detail p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.service-detail ul {
  list-style: none;
  margin: 1.5rem 0;
}

.service-detail ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85rem;
  width: 8px; height: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.service-detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: var(--sand);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.service-detail-visual .detail-icon {
  font-size: 6rem;
  opacity: 0.15;
  position: absolute;
}

.service-detail-visual .detail-content {
  position: relative;
  z-index: 1;
  padding: 3rem;
  text-align: center;
}

.highlight-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  margin: 1.5rem 0;
}

.highlight-box .big-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.highlight-box .big-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================
   About page
   ============================================ */
.about-hero {
  padding: 140px clamp(1.5rem, 4vw, 4rem) 80px;
  text-align: center;
}

.about-hero h1 { margin-bottom: 1.5rem; }
.about-hero p { margin: 0 auto; font-size: 1.15rem; color: var(--text-soft); }

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

.about-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(26, 39, 68, 0.06);
  transition: all var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: 50%;
  font-size: 1.6rem;
}

.about-card h3 { margin-bottom: 0.75rem; }
.about-card p { font-size: 0.95rem; color: var(--text-soft); margin: 0 auto; }

.mission-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--gold);
}

/* ============================================
   Contact page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-soft);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: 50%;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text {
  font-size: 0.95rem;
}

.contact-detail-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-detail-text span {
  color: var(--text-soft);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--sand-light);
  border: 1.5px solid rgba(26, 39, 68, 0.1);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.15);
}

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

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

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--sand-light);
  padding: 4rem clamp(1.5rem, 4vw, 4rem) 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242, 232, 218, 0.1);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand .accent { color: var(--gold); }

.footer p {
  color: rgba(242, 232, 218, 0.6);
  font-size: 0.9rem;
  max-width: 35ch;
}

.footer h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer ul {
  list-style: none;
}

.footer ul li { margin-bottom: 0.75rem; }

.footer ul a {
  color: rgba(242, 232, 218, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer ul a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(242, 232, 218, 0.4);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(196,162,101,0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: rgba(242, 232, 218, 0.7);
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ============================================
   Reveal animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Mobile overlay
   ============================================ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--sand-light);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-overlay.active { display: flex; }

.mobile-overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.mobile-overlay a:hover { color: var(--gold-dark); }

/* ============================================
   Page header (inner pages)
   ============================================ */
.page-header {
  padding: 140px clamp(1.5rem, 4vw, 4rem) 60px;
  text-align: center;
  position: relative;
}

.page-header .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.page-header h1 { margin-bottom: 1rem; }

.page-header p {
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-soft);
}

/* ============================================
   Responsive
   ============================================ */
/* Tablet */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero { min-height: auto; padding: 100px 1.25rem 50px; }
  .hero-image { order: -1; }
  .hero-image img { height: 300px; }
  .hero-image::before { top: -10px; right: -10px; }
  .hero-stat { bottom: -10px; left: 0; }
  .hero-tag { margin-bottom: 1rem; }

  .section { padding: 3.5rem 1.25rem; }
  .page-header { padding: 110px 1.25rem 40px; }
  .about-hero { padding: 110px 1.25rem 50px; }

  .service-detail { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0; }
  .service-detail.reverse { direction: ltr; }
  .service-detail-number { font-size: 3.5rem; }
  .service-detail-visual { min-height: 220px; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .service-card { padding: 2rem 1.5rem; }

  .mission-block { grid-template-columns: 1fr; gap: 2rem; }
  .mission-quote { font-size: 1.5rem; }

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

  .about-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .about-card { padding: 2rem 1.5rem; }

  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .stats-bar { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; }
  .stat-item::after { display: none; }

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

  .cta-banner { padding: 3.5rem 1.25rem; }

  .btn { padding: 0.85rem 1.75rem; font-size: 0.85rem; }
}

/* Mobiel */
@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.25rem; }

  .nav { padding: 0 1rem; height: 64px; }
  .nav-logo { font-size: 1.25rem; }

  .hero { padding: 90px 1rem 40px; }
  .hero-text p { font-size: 1rem; }
  .hero-image img { height: 220px; }
  .hero-image::before { display: none; }
  .hero-stat { position: relative; bottom: auto; left: auto; margin-top: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .section { padding: 2.5rem 1rem; }
  .page-header { padding: 90px 1rem 30px; }
  .about-hero { padding: 90px 1rem 40px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.75rem 1.25rem; }

  .service-detail { padding: 2rem 0; }
  .service-detail-number { font-size: 3rem; }
  .service-detail h3 { font-size: 1.4rem; }
  .service-detail-visual { min-height: 180px; }
  .service-detail-visual .detail-content { padding: 1.5rem; }

  .highlight-box { padding: 1.25rem; }
  .highlight-box .big-number { font-size: 2rem; }

  .about-card { padding: 1.75rem 1.25rem; }
  .about-card-icon { width: 56px; height: 56px; font-size: 1.4rem; }

  .contact-form { padding: 1.75rem 1.25rem; }
  .contact-form h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }

  .btn { padding: 0.9rem 1.5rem; font-size: 0.85rem; width: 100%; justify-content: center; }

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

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

  .stat-number { font-size: 2.5rem; }

  .mobile-overlay { gap: 1.5rem; }
  .mobile-overlay a { font-size: 1.6rem; }
}

/* Kleine telefoons */
@media (max-width: 380px) {
  h1 { font-size: 1.9rem; }
  .hero { padding-top: 80px; }
  .section { padding: 2rem 0.75rem; }
  .service-card { padding: 1.5rem 1rem; }
  .contact-form { padding: 1.5rem 1rem; }
}
