@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --navy: #0f2240;
  --navy-light: #1a3358;
  --teal: #5C7C28;
  --teal-light: #EBF2D8;
  --teal-mid: #8FAC58;
  --blue: #185FA5;
  --blue-light: #E6F1FB;
  --blue-mid: #85B7EB;
  --cream: #faf8f4;
  --warm: #f0ede7;
  --text: #1a1a1a;
  --muted: #5a6272;
  --border: #e2ddd5;
}

html {
  background: var(--cream);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  max-width: 1440px;
  margin: 0 auto;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── NAV ── */
.nav {
  background: var(--navy);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 144px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 128px;
  display: block;
  width: auto;
  filter: invert(1) hue-rotate(180deg);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; font-weight: 500; }
.nav-cta {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; margin: 5px 0; transition: 0.3s;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 4rem 2.5rem;
  text-align: center;
}
.page-hero .elabel {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* ── BADGES BAR ── */
.badges-bar {
  background: var(--warm);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 2.5rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  overflow-x: auto;
  flex-wrap: wrap;
}
.badge-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.badge-item span { font-size: 13.5px; color: var(--muted); }

/* ── SECTIONS ── */
section { padding: 4rem 2.5rem; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 0.75rem;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* ── HERO (homepage) ── */
.hero {
  background: var(--navy);
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--teal-mid);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
.hero h1 em { color: var(--teal-mid); font-style: italic; }
.hero-lead {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 12px 24px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
}
.btn-white {
  background: #fff;
  color: var(--teal);
  border: none;
  padding: 13px 28px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem;
}
.hero-card-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: #fff; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid;
  font-weight: 400;
}
.pill.g { background: rgba(93,202,165,0.15); color: var(--teal-mid); border-color: rgba(93,202,165,0.3); }
.pill.b { background: rgba(133,183,235,0.15); color: var(--blue-mid); border-color: rgba(133,183,235,0.3); }

/* ── INTRO ── */
.intro { background: #fff; border-bottom: 1px solid var(--border); }
.intro-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.intro-text p { color: var(--muted); font-size: 16px; line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.feature-check {
  width: 20px; height: 20px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.feature-check svg { width: 10px; height: 10px; stroke: #3D5518; stroke-width: 2.5; fill: none; }

/* ── DIENSTEN CATS ── */
.diensten { background: var(--cream); }
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.cat-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
}
.cat-block.blue-border { border-color: #B5D4F4; }
.cat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.cat-icon.t { background: var(--teal-light); }
.cat-icon.t svg { stroke: #3D5518; }
.cat-icon.b { background: var(--blue-light); }
.cat-icon.b svg { stroke: #0C447C; }
.cat-icon svg { width: 22px; height: 22px; stroke-width: 1.75; fill: none; }
.cat-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  padding: 3px 9px; border-radius: 20px; display: inline-block; margin-bottom: 0.6rem;
}
.cat-tag.t { background: var(--teal-light); color: #3D5518; }
.cat-tag.b { background: var(--blue-light); color: #0C447C; }
.cat-block h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; margin-bottom: 0.5rem; letter-spacing: -0.2px;
}
.cat-block p { font-size: 13.5px; color: var(--muted); line-height: 1.7; font-weight: 300; }

.cards-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.dienst-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.dienst-card.blue-border { border-color: #B5D4F4; }
.dienst-num { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: var(--teal); text-transform: uppercase; margin-bottom: 0.3rem; }
.dienst-num.b { color: var(--blue); }
.dienst-card h4 { font-family: 'DM Serif Display', serif; font-size: 17px; margin-bottom: 0.5rem; letter-spacing: -0.2px; }
.dienst-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── SPECIALISME ── */
.specialisme { background: var(--navy); color: #fff; text-align: center; }
.specialisme .section-label { color: var(--teal-mid); }
.specialisme .section-title { color: #fff; margin: 0 auto 1rem; }
.specialisme .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto 3rem; }
.spec-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; max-width: 650px; margin: 0 auto; }
.spec-tag {
  padding: 10px 22px; border-radius: 8px; font-size: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--teal);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; color: #fff;
  max-width: 480px; letter-spacing: -0.3px;
}

/* ── DIENSTEN PAGE ── */
.note-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 2.5rem;
  display: flex; align-items: center; gap: 12px;
}
.note-icon {
  width: 32px; height: 32px;
  background: var(--teal-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.note-icon svg { width: 16px; height: 16px; stroke: #3D5518; stroke-width: 2; fill: none; }
.note-bar p { font-size: 14px; color: var(--muted); }
.note-bar strong { color: var(--text); }

.cat-header { padding: 2.25rem 2.5rem 0.25rem; }
.cbadge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 7px;
  font-size: 11.5px; font-weight: 500; margin-bottom: 1rem;
}
.cbadge svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2; fill: none; }
.cbadge.t { background: var(--teal-light); color: #3D5518; }
.cbadge.b { background: var(--blue-light); color: #0C447C; }
.ctitle { font-family: 'DM Serif Display', serif; font-size: 26px; letter-spacing: -0.3px; margin-bottom: 0.3rem; }
.csub { color: var(--muted); font-size: 14.5px; font-weight: 300; max-width: 580px; }

.diensten-section { padding: 1.25rem 2.5rem 2.5rem; }
.db { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 1rem; background: #fff; }
.db.ba { border-color: #B5D4F4; }
.dh { padding: 1.25rem 1.75rem; display: flex; align-items: flex-start; gap: 1.1rem; border-bottom: 1px solid var(--border); }
.dh.bb { background: #EBF4FD; border-bottom-color: #B5D4F4; }
.dh.gb { background: var(--warm); }
.dnum { font-family: 'DM Serif Display', serif; font-size: 30px; line-height: 1; flex-shrink: 0; margin-top: -1px; }
.dnum.gc { color: #ccc7be; }
.dnum.bc { color: #B5D4F4; }
.dtag { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.05em; padding: 3px 9px; border-radius: 20px; margin-top: 3px; }
.dtag.t { background: var(--teal-light); color: #3D5518; }
.dtag.b { background: var(--blue-light); color: #0C447C; }
.dh h3 { font-family: 'DM Serif Display', serif; font-size: 19px; margin-bottom: 3px; letter-spacing: -0.2px; }
.dbody { padding: 1.25rem 1.75rem; display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; }
.dbody p { color: var(--muted); font-size: 14px; line-height: 1.8; font-weight: 300; }
.dlist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.dlist li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; }
.ck { width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.ck.t { background: var(--teal-light); }
.ck.t svg { stroke: #3D5518; }
.ck.b { background: var(--blue-light); }
.ck.b svg { stroke: #0C447C; }
.ck svg { width: 8px; height: 8px; stroke-width: 2.5; fill: none; }

.mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.9rem; padding: 0 2.5rem 0.5rem; }
.mc { background: #fff; border: 1px solid var(--border); border-radius: 11px; padding: 1.1rem; }
.mc.bb { border-color: #B5D4F4; }
.mci { width: 35px; height: 35px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.mci.t { background: var(--teal-light); }
.mci.t svg { stroke: #3D5518; }
.mci.b { background: var(--blue-light); }
.mci.b svg { stroke: #0C447C; }
.mci svg { width: 17px; height: 17px; stroke-width: 1.75; fill: none; }
.mc h4 { font-size: 13.5px; font-weight: 500; margin-bottom: 4px; }
.mc p { font-size: 12.5px; color: var(--muted); line-height: 1.6; font-weight: 300; }

.section-divider { height: 1px; background: var(--border); margin: 1.5rem 2.5rem; }

.werkwijze { padding: 2.5rem; background: #fff; border-top: 1px solid var(--border); }
.stappen { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.9rem; margin-top: 1.75rem; }
.stap { background: var(--cream); border: 1px solid var(--border); border-radius: 11px; padding: 1.1rem; }
.stap-num { font-family: 'DM Serif Display', serif; font-size: 26px; color: #ccc7be; margin-bottom: 0.4rem; }
.stap h4 { font-size: 13.5px; font-weight: 500; margin-bottom: 3px; }
.stap p { font-size: 12.5px; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ── KLANTEN ── */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  text-align: center;
}
.snum { font-family: 'DM Serif Display', serif; font-size: 30px; color: var(--navy); }
.slbl { font-size: 13px; color: var(--muted); margin-top: 2px; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.review-card.large { grid-column: span 2; }
.stars { display: flex; gap: 3px; }
.star { width: 14px; height: 14px; fill: #EF9F27; }
.quote { font-size: 15px; color: var(--text); line-height: 1.75; font-style: italic; font-weight: 300; flex: 1; }
.rfooter { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 0.75rem; }
.rname { font-weight: 500; font-size: 14px; }
.rrole { font-size: 12px; color: var(--muted); margin-top: 1px; }
.ctag { font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 20px; white-space: nowrap; }
.ctag.g { color: #3D5518; background: var(--teal-light); }
.ctag.b { color: #0C447C; background: var(--blue-light); }
.sectors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2rem; }
.sc { background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; display: flex; align-items: center; gap: 1rem; }
.sc-icon { width: 36px; height: 36px; background: var(--teal-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sc-icon svg { width: 18px; height: 18px; stroke: #3D5518; stroke-width: 1.75; fill: none; }
.sc-name { font-weight: 500; font-size: 13.5px; }
.sc-desc { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-icon { width: 40px; height: 40px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 18px; height: 18px; stroke: #3D5518; stroke-width: 1.75; fill: none; }
.info-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.info-value { font-size: 15px; font-weight: 500; }
.info-value a { color: var(--text); }
.social-row { display: flex; gap: 12px; margin-top: 2rem; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-size: 13px; font-weight: 500; background: #fff; }
.social-btn svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.75; fill: none; }
.form-card { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; }
.form-card h3 { font-family: 'DM Serif Display', serif; font-size: 22px; margin-bottom: 0.5rem; letter-spacing: -0.2px; }
.form-card > p { color: var(--muted); font-size: 14px; font-weight: 300; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label { font-size: 13px; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12px; color: var(--muted); margin-bottom: 1.25rem; }
.btn-submit {
  background: var(--teal); color: #fff; border: none;
  padding: 13px 28px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  cursor: pointer; width: 100%;
}
.pill-groups { margin-top: 0; }
.pill-group { margin-bottom: 1.5rem; }
.pill-group-label { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 8px; }
.pill-group-label .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pill-group-label.g { color: #3D5518; }
.pill-group-label.b { color: #0C447C; }
.dot.g { background: var(--teal); }
.dot.b { background: var(--blue); }
.dpills { display: flex; flex-wrap: wrap; gap: 10px; }
.dpill { padding: 9px 18px; border: 1px solid var(--border); border-radius: 8px; font-size: 13.5px; background: #fff; color: var(--text); }
.dpill.b { border-color: #B5D4F4; background: #F4F9FE; color: #0C447C; }

/* ── FOOTER ── */
footer {
  background: #0a1a30;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2.5rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img {
  height: 100px;
  width: auto;
  display: block;
  filter: invert(1) hue-rotate(180deg);
  margin-bottom: 1.25rem;
}
.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col ul li,
.footer-col ul a {
  color: rgba(255,255,255,0.45);
  font-size: 13.5px;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  padding: 1.4rem 2.5rem;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy); padding: 1.5rem 2.5rem; gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .hero { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .hero h1 { font-size: 32px; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .stappen { grid-template-columns: repeat(2,1fr); }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.large { grid-column: span 1; }
  .sectors-grid { grid-template-columns: repeat(2,1fr); }
  .mini-grid { grid-template-columns: 1fr; }
  .dbody { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 3rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem; }
  .page-hero h1 { font-size: 30px; }
  .cta-strip { flex-direction: column; align-items: flex-start; padding: 2.5rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { padding: 1.2rem 1.5rem; }
  .badges-bar { gap: 1.5rem; padding: 1rem 1.5rem; }
}
