/* ============================================
   schwung.ai — gedeelde stylesheet
   ============================================ */

:root {
  /* Schwung huisstijl */
  --schwung-blue: #0000FE;
  --schwung-pink: #FC3765;
  --schwung-pink-deep: #E22657;

  /* Achtergronden — merkscan-rust */
  --cream: #faf6f0;
  --cream-warm: #f3ede2;

  /* Tekst */
  --navy: #1a1a2e;
  --navy-soft: #2c2c40;
  --muted: #6b6b76;

  /* Lijnen */
  --line: #d4d2cb;
  --line-soft: #e8e6df;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 500;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.18 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ============================================
   TOP NAV
   ============================================ */
nav.top {
  padding: 28px 0 0;
  position: relative;
  z-index: 50;
}
nav.top .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}
.logo img {
  height: 26px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
}
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.18s;
  position: relative;
}
.nav-links a:hover { color: var(--schwung-blue); }
.nav-links a.active { color: var(--schwung-blue); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  height: 2px;
  background: var(--schwung-blue);
}

/* Hamburger toggle — alleen zichtbaar op mobiel */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:focus { outline: none; }
.nav-toggle:focus-visible { outline: 2px solid var(--schwung-blue); outline-offset: 2px; border-radius: 3px; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 700px) {
  nav.top .inner { position: relative; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: -22px;
    right: -22px;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 6px 22px 14px;
    border-bottom: 1px solid var(--line);
    z-index: 20;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 15px;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--schwung-blue); }
}

/* ============================================
   HERO
   ============================================ */
header.hero { padding: 86px 0 110px; }
header.hero.compact { padding: 70px 0 70px; }

.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--schwung-blue);
  font-weight: 700;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--schwung-blue);
}

h1.hero-h {
  font-weight: 700;
  font-size: clamp(34px, 6.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  max-width: 18ch;
  color: var(--navy);
  overflow-wrap: break-word;
}
h1.hero-h em {
  font-style: italic;
  color: var(--schwung-blue);
  font-weight: 700;
}
h1.hero-h .rotator {
  display: inline-block;
  min-width: 10ch;
  transition: opacity 0.5s;
}
h1.hero-h .rotator.fade { opacity: 0; }

.hero-lead {
  font-size: 18px;
  color: var(--navy-soft);
  line-height: 1.55;
  max-width: 56ch;
  margin-bottom: 42px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  letter-spacing: 0.005em;
  cursor: pointer;
}
.btn-primary {
  background: var(--schwung-pink);
  color: white;
}
.btn-primary:hover {
  background: var(--schwung-pink-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn .arrow {
  font-size: 18px;
  line-height: 0;
  font-weight: 600;
}

/* ============================================
   HERO META STRIP
   ============================================ */
.hero-meta {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.hero-meta strong {
  display: block;
  font-weight: 700;
  font-size: 28px;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1;
}
.hero-meta strong em {
  font-weight: 700;
  font-style: italic;
  color: var(--schwung-blue);
}
@media (max-width: 700px) {
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 90px 0;
  position: relative;
}
section + section {
  border-top: 1px solid var(--line-soft);
}

.section-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.section-tag.blue .dot { background: var(--schwung-blue); }
.section-tag.pink .dot { background: var(--schwung-pink); }

h2 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 22ch;
  margin-bottom: 22px;
  overflow-wrap: break-word;
}
h2 em { font-style: italic; font-weight: 700; }
h2 .accent-blue { color: var(--schwung-blue); font-style: italic; font-weight: 700; }
h2 .accent-pink { color: var(--schwung-pink); font-style: italic; font-weight: 700; }

h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
}
h3 em { font-style: italic; font-weight: 700; }

.lede {
  font-size: 17px;
  color: var(--navy-soft);
  line-height: 1.6;
  max-width: 58ch;
}
.lede + .lede { margin-top: 14px; }

/* ============================================
   TWO-COL LAYOUT
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.two-col > div:nth-child(2) {
  padding-top: 41px;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col > div:nth-child(2) { padding-top: 0; }
}

.pull-quote {
  font-size: 22px;
  line-height: 1.4;
  color: var(--navy);
  font-weight: 600;
  border-left: 3px solid var(--schwung-blue);
  padding: 4px 0 4px 22px;
  margin-top: 28px;
  max-width: 30ch;
  font-style: italic;
}
.pull-quote .source {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

/* ============================================
   DURVEN — wel/niet match
   ============================================ */
.durven-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 38px;
}
@media (max-width: 700px) {
  .durven-grid { grid-template-columns: 1fr; }
}
.voor-tegen {
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 26px 28px;
}
.voor-tegen h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 16px;
}
.voor-tegen.wel { border-top: 4px solid var(--schwung-blue); }
.voor-tegen.niet { border-top: 4px solid var(--schwung-pink); }
.voor-tegen.wel h4 { color: var(--schwung-blue); }
.voor-tegen.niet h4 { color: var(--schwung-pink); }
.voor-tegen ul { list-style: none; }
.voor-tegen li {
  padding: 7px 0 7px 20px;
  position: relative;
  font-size: 14.5px;
  color: var(--navy-soft);
  line-height: 1.5;
}
.voor-tegen.wel li::before {
  content: '+';
  position: absolute; left: 0; top: 7px;
  color: var(--schwung-blue);
  font-weight: 700;
}
.voor-tegen.niet li::before {
  content: '−';
  position: absolute; left: 0; top: 7px;
  color: var(--schwung-pink);
  font-weight: 700;
}

/* ============================================
   BOUW-CARDS — Schwung merkmodel vlakken
   ============================================ */
.build-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
@media (max-width: 1000px) {
  .build-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .build-grid { grid-template-columns: 1fr; }
}

.build-card {
  background: var(--schwung-pink);
  color: white;
  border-radius: 4px;
  padding: 32px 28px 30px;
  position: relative;
  transition: transform 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  text-decoration: none;
}
.build-card.blue { background: var(--schwung-blue); }
.build-card:hover { transform: translateY(-4px); }
.build-card .card-num {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 22px;
  color: white;
  padding-right: 60px;
  min-height: 14px;
}
.build-card h3 {
  font-weight: 800;
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.18;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  color: white;
  overflow-wrap: break-word;
}
.build-card .sub {
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 18px;
  opacity: 0.95;
  color: white;
}
.build-card p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
  opacity: 0.95;
  color: white;
  font-weight: 500;
}
.build-card p strong { font-weight: 700; }
.build-card .ex {
  font-size: 12.5px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 14px;
  margin-top: auto;
  opacity: 0.92;
  color: white;
}
.build-card .ex strong {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10.5px;
  margin-bottom: 4px;
  opacity: 0.85;
}
.live-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: white;
  background: rgba(255,255,255,0.18);
  padding: 4px 9px;
  border-radius: 3px;
}
.live-tag::before {
  content: '●';
  margin-right: 5px;
  font-size: 8px;
  color: #9FE1CB;
}

/* ============================================
   TOOL-DETAIL (op bouwen.html)
   ============================================ */
.tool-section {
  padding: 70px 0;
  border-top: 1px solid var(--line-soft);
  scroll-margin-top: 30px;
}
.tool-section .inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 800px) {
  .tool-section .inner { grid-template-columns: 1fr; gap: 28px; }
}
.tool-meta {
  position: sticky;
  top: 30px;
}
.tool-num {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--schwung-pink);
  margin-bottom: 14px;
}
.tool-num.blue { color: var(--schwung-blue); }
.tool-meta h2 { margin-bottom: 8px; }
.tool-meta .tool-sub {
  font-style: italic;
  font-size: 19px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 18px;
}

/* Mobile: sticky uitzetten zodat koppen niet over tekst schuiven */
@media (max-width: 800px) {
  .tool-meta {
    position: static;
    top: auto;
  }
}
.tool-body p {
  font-size: 16px;
  color: var(--navy-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}
.tool-body h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}
.tool-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.tool-body ul li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 15px;
  color: var(--navy-soft);
  line-height: 1.55;
}
.tool-body ul li::before {
  content: '→';
  position: absolute; left: 0; top: 6px;
  color: var(--schwung-blue);
  font-weight: 700;
}

/* ============================================
   WIE-STRIP / DARK BLOCK
   ============================================ */
.dark-block {
  background: var(--navy);
  color: var(--cream);
  border-radius: 6px;
  padding: 50px 56px;
  margin-top: 30px;
}
.dark-block.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 800px) {
  .dark-block { padding: 36px 32px; }
  .dark-block.split { grid-template-columns: 1fr; gap: 28px; }
}
.dark-block h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.dark-block h3 em {
  font-style: italic;
  color: #9FE1CB;
  font-weight: 700;
}
.dark-block p {
  font-size: 15px;
  color: #c5c3bc;
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 500;
}
.dark-block .meta {
  font-size: 11px;
  color: #9FE1CB;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 22px;
  font-weight: 700;
}
.dark-block .meta a {
  color: #9FE1CB;
  text-decoration: none;
  border-bottom: 1px solid rgba(159,225,203,0.3);
}
.dark-block .meta a:hover {
  border-bottom-color: #9FE1CB;
}
.dark-block .side-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 28px 30px;
}
.dark-block .side-card h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #9FE1CB;
  margin-bottom: 14px;
}
.dark-block .side-card a,
.dark-block .side-card p {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  font-weight: 500;
  margin-bottom: 0;
}
.dark-block .side-card a:hover { color: #9FE1CB; }

/* ============================================
   CTA — full Schwung blue vlak
   ============================================ */
.cta-block {
  background: var(--schwung-blue);
  color: white;
  padding: 100px 0 110px;
  border-top: none;
}
.cta-block .section-tag {
  color: rgba(255,255,255,0.7);
  justify-content: center;
}
.cta-block .section-tag .dot { background: white; }
.cta-block h2 {
  color: white;
  margin: 0 auto 24px;
  text-align: center;
  max-width: 24ch;
}
.cta-block h2 em { color: #FFB7CB; }
.cta-block .lede {
  color: rgba(255,255,255,0.9);
  margin: 0 auto 38px;
  text-align: center;
  font-weight: 500;
}
.cta-block .hero-cta { justify-content: center; }
.cta-block .btn-primary {
  background: white;
  color: var(--schwung-blue);
}
.cta-block .btn-primary:hover {
  background: var(--cream);
  color: var(--schwung-blue);
}
.cta-block .btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.cta-block .btn-ghost:hover {
  background: white;
  color: var(--schwung-blue);
  border-color: white;
}
.cta-center { text-align: center; }

/* ============================================
   CONTACT GRID
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: white;
  border: 1px solid var(--line-soft);
  border-top: 4px solid var(--schwung-blue);
  border-radius: 6px;
  padding: 30px 32px;
}
.contact-card.pink { border-top-color: var(--schwung-pink); }
.contact-card h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 14px;
}
.contact-card .big {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}
.contact-card .big:hover { color: var(--schwung-blue); }
.contact-card p {
  font-size: 14px;
  color: var(--navy-soft);
  line-height: 1.6;
  font-weight: 500;
}
.contact-card a {
  color: var(--schwung-blue);
  text-decoration: none;
  font-weight: 600;
}
.contact-card a:hover { text-decoration: underline; }

/* ============================================
   TIJDLIJN (op ontdekken)
   ============================================ */
.timeline {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 800px) {
  .timeline { grid-template-columns: 1fr; }
}
.timeline-step {
  background: white;
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--schwung-blue);
  border-radius: 4px;
  padding: 26px 28px;
}
.timeline-step .step-n {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--schwung-blue);
  margin-bottom: 10px;
}
.timeline-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.timeline-step p {
  font-size: 14px;
  color: var(--navy-soft);
  line-height: 1.55;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--cream-warm);
  padding: 50px 0 36px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 500px) {
  .foot-grid { grid-template-columns: 1fr; }
}
.foot-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}
.foot-col p, .foot-col a {
  font-size: 13.5px;
  color: var(--navy-soft);
  text-decoration: none;
  line-height: 1.7;
  display: block;
  font-weight: 500;
}
.foot-col a:hover { color: var(--schwung-blue); }
.foot-tag {
  margin-bottom: 14px;
  line-height: 0;
}
.foot-tag img {
  height: 24px;
  width: auto;
  display: block;
}
.foot-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
@media (max-width: 600px) {
  .foot-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ============================================
   ENTRANCE ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  h1.hero-h .rotator { transition: none; }
}

/* ============================================
   MOBILE FIXES — onder 700px
   ============================================ */
@media (max-width: 700px) {
  /* Iets meer ademruimte aan de zijkanten op smalle schermen */
  .wrap {
    padding: 0 22px;
  }

  /* Sectie padding kleiner — minder gat tussen blokken */
  section {
    padding: 60px 0;
  }
  header.hero {
    padding: 50px 0 70px;
  }
  header.hero.compact {
    padding: 40px 0 50px;
  }
  .cta-block {
    padding: 70px 0 80px;
  }

  /* Donkere blokken minder strak op mobiel */
  .dark-block {
    padding: 32px 26px;
  }

  /* Tool sections meer adem */
  .tool-section {
    padding: 50px 0;
  }
  .tool-section .inner {
    gap: 24px;
  }

  /* Cards — compacter op mobiel, scheelt scrollen bij 4 vlakken onder elkaar */
  .build-card {
    min-height: auto;
    padding: 24px 22px 22px;
  }
  .build-card .card-num { margin-bottom: 14px; }
  .build-card h3 { font-size: 19px; }
  .build-card .sub { font-size: 15px; margin-bottom: 12px; }
  .build-card p { font-size: 13.5px; margin-bottom: 10px; }
  .build-card .ex { font-size: 12px; padding-top: 11px; }
  .live-tag { top: 18px; right: 18px; }

  /* Hero meta op mobiel kleiner */
  .hero-meta strong {
    font-size: 24px;
  }

  /* Buttons mogen niet wegvallen onder elkaar */
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  /* Pull-quote netjes op mobiel */
  .pull-quote {
    font-size: 19px;
  }

  /* Voor/tegen lijst leesbaar houden */
  .voor-tegen {
    padding: 22px 24px;
  }
}

/* ============================================
   CONTACTFORMULIER
   ============================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.contact-form .req {
  color: var(--schwung-pink);
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--schwung-pink);
  box-shadow: 0 0 0 3px rgba(252, 55, 101, 0.12);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}
.contact-form .form-actions {
  margin-top: 4px;
}
.contact-form button.btn {
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}
.contact-form .form-privacy {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 2px;
}
.contact-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
