/* ============================================================
   LaadPaalMarkt – Main Stylesheet
   Palette: Forest green #1B4332 | Cream #F5F0E8 | Charcoal #1C1C1C
   Type: DM Serif Display (headings) + DM Sans (body)
   ============================================================ */

:root {
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --green-pale: #D8F3DC;
  --cream: #F5F0E8;
  --cream-dark: #EDE7D9;
  --white: #FFFFFF;
  --charcoal: #1C1C1C;
  --grey-600: #4A4A4A;
  --grey-400: #8A8A8A;
  --grey-100: #F4F4F4;
  --border: #E0DACE;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 2px 20px rgba(27,67,50,0.10);
  --shadow-md: 0 8px 40px rgba(27,67,50,0.14);
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s ease;
  --header-h: 74px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--green-mid); }
img { max-width: 100%; display: block; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-green { background: var(--green-dark); }
.bg-cream { background: var(--cream); }
.bg-pale { background: var(--green-pale); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }
p { color: var(--grey-600); max-width: 68ch; }
.lead { font-size: 1.15rem; line-height: 1.7; }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
  display: block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(27,67,50,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--cream);
}
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-header { padding: 10px 22px; font-size: 0.88rem; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9000;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 380px;
  transform: translateX(-120%);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.visible { transform: translateX(0); }
.cookie-inner { padding: 24px; }
.cookie-text strong { font-size: 0.95rem; display: block; margin-bottom: 6px; color: var(--charcoal); }
.cookie-text p { font-size: 0.83rem; color: var(--grey-600); max-width: 100%; margin: 0; }
.cookie-text a { color: var(--green-mid); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--green-dark); color: var(--cream);
  border: none; border-radius: 50px; padding: 10px 18px;
  font-size: 0.83rem; font-weight: 600; cursor: pointer; flex: 1;
  transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--green-mid); }
.btn-cookie-decline {
  background: transparent; color: var(--grey-600);
  border: 1px solid var(--border); border-radius: 50px; padding: 10px 18px;
  font-size: 0.83rem; font-weight: 500; cursor: pointer; flex: 1;
  transition: var(--transition);
}
.btn-cookie-decline:hover { border-color: var(--green-mid); color: var(--green-mid); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--green-dark);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo-accent { color: var(--green-mid); }
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  justify-content: flex-end;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--green-dark);
  background: var(--green-pale);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--cream);
}
.hero-content { padding: 60px 0 60px 0; }
.hero-content h1 {
  color: var(--green-dark);
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--green-mid);
}
.hero-content .lead {
  margin-bottom: 36px;
  color: var(--grey-600);
  max-width: 52ch;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 48px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-600);
}
.hero-trust-item .icon {
  width: 28px; height: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.hero-image {
  height: 100%;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 20%);
}

/* ── USP STRIP ── */
.usp-strip {
  background: var(--green-dark);
  padding: 20px 0;
  overflow: hidden;
}
.usp-scroll {
  display: flex;
  gap: 48px;
  animation: scrollusp 28s linear infinite;
  width: max-content;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.usp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }
@keyframes scrollusp {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 56px; }
.section-header h2 { color: var(--green-dark); margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 { color: var(--green-dark); margin-bottom: 10px; font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }
.step-card p { font-size: 0.92rem; max-width: 100%; }

/* ── USP CARDS ── */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.usp-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
}
.usp-card .icon-lg {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.usp-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.usp-card p { font-size: 0.88rem; color: rgba(245,240,232,0.7); max-width: 100%; }

/* ── FEATURES / SPLIT SECTION ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-content h2 { color: var(--green-dark); margin-bottom: 20px; }
.split-content .lead { margin-bottom: 28px; }
.feature-list { list-style: none; margin-bottom: 32px; }
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--grey-600);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── BRANDS GRID ── */
.brands-section { background: var(--cream); }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.brand-card:hover { box-shadow: var(--shadow); border-color: var(--green-light); }
.brand-card img {
  height: 60px;
  object-fit: contain;
  margin: 0 auto 12px;
}
.brand-card h4 { font-size: 0.9rem; color: var(--charcoal); }
.brand-card p { font-size: 0.78rem; color: var(--grey-400); max-width: 100%; margin-top: 4px; }

/* ── SMART QUALIFICATION MODULE ── */
.qualify-module {
  background: var(--green-dark);
  border-radius: 20px;
  padding: 48px;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto;
}
.qualify-module h2 {
  color: var(--cream);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.qualify-module > p { color: rgba(245,240,232,0.7); max-width: 100%; margin-bottom: 32px; }
.qualify-step { display: none; }
.qualify-step.active { display: block; animation: fadeInUp 0.35s ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.qualify-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
  display: block;
}
.qualify-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.qualify-btn {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 18px 16px;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: var(--font-body);
}
.qualify-btn:hover, .qualify-btn.selected {
  background: rgba(82,183,136,0.25);
  border-color: var(--green-light);
  color: var(--white);
}
.qualify-input-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.qualify-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.qualify-input::placeholder { color: rgba(245,240,232,0.4); }
.qualify-input:focus { border-color: var(--green-light); }
.qualify-nav { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.qualify-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.qualify-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: var(--transition);
}
.qualify-dot.active { background: var(--green-light); width: 24px; border-radius: 4px; }
.qualify-success {
  text-align: center;
  padding: 20px 0;
}
.qualify-success h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: 12px; }
.qualify-success p { color: rgba(245,240,232,0.75); max-width: 100%; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-dark); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green-dark); color: var(--cream); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.2s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 0.93rem;
  color: var(--grey-600);
  line-height: 1.75;
}
.faq-answer-inner strong { color: var(--charcoal); }
.faq-answer-inner ul { padding-left: 18px; margin-top: 8px; }
.faq-answer-inner li { margin-bottom: 4px; }

/* ── CONTACT FORM ── */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { color: var(--green-dark); margin-bottom: 16px; }
.contact-info p { margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail .icon {
  width: 42px; height: 42px;
  background: var(--green-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail h5 { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-400); margin-bottom: 2px; }
.contact-detail p { font-size: 0.93rem; color: var(--charcoal); max-width: 100%; margin: 0; }
.contact-detail a { color: var(--green-mid); }
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.captcha-note {
  font-size: 0.78rem;
  color: var(--grey-400);
  margin-bottom: 20px;
}
.form-success {
  background: var(--green-pale);
  border-radius: 12px;
  padding: 20px;
  color: var(--green-dark);
  font-size: 0.93rem;
  display: none;
  margin-top: 16px;
}
.form-error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 4px;
  display: none;
}

/* ── MAPS ── */
.maps-section { background: var(--white); }
.maps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.map-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-frame { height: 260px; background: var(--grey-100); position: relative; }
.map-frame iframe { width: 100%; height: 100%; border: none; }
.map-info { padding: 20px; background: var(--white); }
.map-info h4 { color: var(--green-dark); margin-bottom: 4px; }
.map-info p { font-size: 0.83rem; color: var(--grey-400); max-width: 100%; margin: 0; }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}
.cert-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 56ch; margin: 0 auto 32px; }
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── LOCATION PAGE ── */
.locations-hero {
  background: var(--green-dark);
  padding: 120px 0 80px;
  color: var(--cream);
}
.locations-hero h1 { color: var(--cream); margin-bottom: 16px; }
.locations-hero p { color: rgba(245,240,232,0.75); max-width: 60ch; }
.location-region {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.location-region:last-child { border-bottom: none; }
.location-header { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.location-title h2 { color: var(--green-dark); }
.location-title p { color: var(--grey-600); margin-top: 6px; max-width: 60ch; }
.towns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.town-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
}
.town-tag:hover {
  background: var(--green-pale);
  border-color: var(--green-light);
  color: var(--green-dark);
}
.town-tag a { color: inherit; display: block; }

/* ── HERO INNER (subpages) ── */
.page-hero {
  background: var(--green-dark);
  padding: 120px 0 72px;
}
.page-hero h1 { color: var(--cream); margin-bottom: 14px; }
.page-hero p { color: rgba(245,240,232,0.75); max-width: 60ch; font-size: 1.08rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.88rem; margin-top: 14px; max-width: 34ch; }
.footer-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.footer-badges .badge {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.74rem;
}
.footer-logo { color: var(--white); font-size: 1.1rem; }
.footer-nav h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-nav a:hover { color: var(--green-light); }
.footer-contact h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-contact address { font-style: normal; }
.footer-contact p { font-size: 0.88rem; max-width: 100%; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.footer-contact a { color: var(--green-light); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: 40px 0; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .maps-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--white); padding: 20px 24px; box-shadow: var(--shadow-md); z-index: 999; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); border-radius: 0; }
  .hamburger { display: flex; }
  .btn-header { display: none; }
  .qualify-module { padding: 32px 24px; }
  .qualify-options { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 56px 0; }
}
@media (max-width: 480px) {
  .qualify-options { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
}
