/* ==========================================================================
   Voipzo — zakelijke telefonie
   Stylesheet voor de hele site
   ========================================================================== */

:root {
  /* Merk */
  --teal:        #12A79A;
  --teal-dark:   #0C8C81;
  --teal-deep:   #0C7E74;
  --teal-600:    #0E9D8C;
  --teal-bright: #19BCAC;
  --mint:        #2FD9B6;
  --ink:         #122426;

  /* Tekst */
  --heading:     #1E2E37;
  --body:        #54656E;
  --body-soft:   #637179;
  --muted:       #7C8C93;
  --muted-2:     #9AA1A7;

  /* Vlakken */
  --white:       #ffffff;
  --tint:        #F0F8F6;
  --tint-2:      #EAF2F0;
  --tint-3:      #E4F3F0;
  --tint-icon:   #E9F5F3;

  /* Lijnen */
  --line:        #E7EDEC;
  --line-2:      #E2EAE8;
  --line-3:      #EAEFEE;

  --gold:        #F5A623;

  --radius:      12px;
  --radius-lg:   18px;
  --maxw:        1560px;
  --shadow:      0 18px 40px rgba(20,40,40,.15);
  --shadow-sm:   0 1px 4px rgba(20,40,40,.08);

  --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--heading); }

/* Layout ------------------------------------------------------------------ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 50px;
}

.section { padding: 72px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 80px 0; }

.bg-white { background: var(--white); }
.bg-tint  { background: var(--tint); }
.bg-tint-2 { background: var(--tint-2); }
.bg-tint-3 { background: var(--tint-3); }
.bg-ink   { background: var(--ink); }
.bg-teal  { background: var(--teal); }

.bordered-y { border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }

/* Koppen ------------------------------------------------------------------ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.h1 {
  font-weight: 700;
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: -1.6px;
  color: var(--heading);
}
.h1 .accent { color: var(--teal); }

.h2 {
  font-weight: 700;
  font-size: 33px;
  line-height: 1.14;
  letter-spacing: -1px;
  color: var(--heading);
}

.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 42px; }
.section-head .lead { font-size: 16px; }

/* Knoppen ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease, gap .15s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }

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

.btn-outline { color: var(--heading); border-color: #D6E0DE; background: transparent; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.btn-white { background: #fff; color: var(--teal-deep); font-weight: 700; }
.btn-white:hover { background: #EAFBF8; }

.btn-sm { padding: 11px 18px; font-size: 14px; }

.link-arrow {
  color: var(--teal-600);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .15s ease;
}
.link-arrow svg { width: 15px; height: 15px; }
.link-arrow:hover { gap: 10px; }

/* Header ------------------------------------------------------------------ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line-3);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  padding-top: 17px;
  padding-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand .wordmark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.5px;
  color: var(--muted-2);
}
.brand .wordmark span { color: var(--teal); }
.brand .tagline {
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #A6ADB2;
  margin-top: 4px;
}

.main-nav { display: flex; gap: 25px; font-size: 14.5px; color: #41525B; font-weight: 500; flex-wrap: nowrap; white-space: nowrap; }
.brand { flex: none; }
.header-actions { flex: none; }
.main-nav a { text-decoration: none; transition: color .15s ease; }
.main-nav a:hover,
.main-nav a.active { color: var(--teal); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .login { font-size: 14px; color: #41525B; font-weight: 600; text-decoration: none; }
.header-actions .login:hover { color: var(--teal); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  color: var(--heading);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobiel menu is standaard verborgen, alleen zichtbaar onder 760px */
.mobile-nav { display: none; }

/* Hero -------------------------------------------------------------------- */
.hero { background: #fff; padding: 60px 0 70px; }
.hero .container {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 46px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tint-icon);
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 12.5px;
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.badge svg { width: 14px; height: 14px; }

.hero h1 { margin: 0 0 18px; }
.hero .lead { margin: 0 0 24px; max-width: 480px; }

.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.check-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  color: #33444D;
  font-weight: 500;
}
.check-list li svg { flex: none; width: 17px; height: 17px; color: var(--teal); }

.hero-actions { display: flex; gap: 13px; align-items: center; flex-wrap: wrap; }

.rating-row { display: flex; align-items: center; gap: 11px; margin-top: 26px; }
.stars { display: flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.rating-row span { font-size: 13.5px; color: var(--body); }
.rating-row strong { color: #33444D; }

.hero-visual { position: relative; }
.media-frame {
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-lg);
  border: 1px solid #DCE6E4;
  background: repeating-linear-gradient(135deg, #EDF4F3 0 13px, #F6FAF9 13px 26px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame .placeholder {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: #8FA39F;
  background: #fff;
  padding: 7px 13px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
}
.floating-card {
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 190px;
  background: #fff;
  border: 1px solid var(--line-3);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex;
  gap: 11px;
  align-items: center;
}
.floating-card .ico {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  background: var(--tint-icon); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.floating-card .ico svg { width: 20px; height: 20px; }
.floating-card .t { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--heading); }
.floating-card .s { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* Strip met trust-punten -------------------------------------------------- */
.trust-strip .container {
  padding-top: 17px;
  padding-bottom: 17px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 600;
  color: #37545A;
}
.trust-strip span.item { display: flex; align-items: center; gap: 9px; }
.trust-strip .item svg { width: 18px; height: 18px; color: var(--teal); }

/* Iconen ------------------------------------------------------------------ */
.icon-box {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--tint-icon);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.icon-box svg { width: 22px; height: 22px; }
.icon-box.round { border-radius: 999px; }

/* Doelgroep-kaarten ------------------------------------------------------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }

.audience-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-top: 3px solid var(--teal-bright);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.audience-card .num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #CFE0DD;
}
.audience-card h3 { font-size: 18px; font-weight: 600; margin: 0 0 5px; }
.audience-card p { font-size: 14px; line-height: 1.55; color: var(--body-soft); margin: 0; }
.audience-card .icon-box { background: #E7F6F3; color: var(--teal-600); }
.audience-card .mini-list { display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; color: #33444D; }
.audience-card .mini-list span { display: flex; align-items: flex-start; gap: 9px; }
.audience-card .mini-list svg { flex: none; width: 14px; height: 14px; color: var(--teal-600); margin-top: 2px; }
.audience-card .link-arrow { margin-top: auto; }

.audience-card.dark {
  background: var(--ink);
  border-color: var(--ink);
  border-top-color: var(--mint);
}
.audience-card.dark .num { color: rgba(255,255,255,.18); }
.audience-card.dark h3 { color: #F2F8F7; }
.audience-card.dark p { color: #A7BFBC; }
.audience-card.dark .icon-box { background: var(--mint); color: #07312B; }
.audience-card.dark .mini-list { color: #D7E5E3; }
.audience-card.dark .mini-list svg { color: var(--mint); }
.audience-card.dark .link-arrow { color: var(--mint); }

/* Feature-kaarten --------------------------------------------------------- */
.cards-3.features { gap: 22px; }
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-card h3 { font-size: 17px; font-weight: 600; margin: 0; }
.feature-card p { font-size: 14px; line-height: 1.55; color: var(--body-soft); margin: 0; }

/* Split (tekst + beeld) --------------------------------------------------- */
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items: center; }
.split.reverse { grid-template-columns: 1.08fr .92fr; }
.split .media-frame { aspect-ratio: 4 / 3.4; }

.feature-rows { display: flex; flex-direction: column; gap: 20px; }
.feature-row { display: flex; gap: 15px; }
.feature-row .icon-box { width: 42px; height: 42px; }
.feature-row h3 { font-size: 16.5px; font-weight: 600; margin: 0 0 4px; }
.feature-row p { font-size: 14px; line-height: 1.55; color: var(--body-soft); margin: 0; }

/* Stappen ----------------------------------------------------------------- */
.steps-wrap { position: relative; }
.steps-line { position: absolute; left: 7%; right: 7%; top: 21px; height: 2px; background: #C9DDD9; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.step { display: flex; flex-direction: column; gap: 12px; }
.step .n {
  font-family: var(--font-head); font-weight: 700; font-size: 30px; line-height: 1;
  color: var(--teal-bright); background: var(--tint-2);
  display: inline-block; padding-right: 16px; width: max-content;
}
.bg-tint-3 .step .n { background: var(--tint-3); }
.step h3 { font-size: 16.5px; font-weight: 600; color: var(--ink); margin: 0; }
.step p { font-size: 14px; line-height: 1.55; color: #5A6E71; margin: 0; }

/* Waarden ----------------------------------------------------------------- */
.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.value { display: flex; flex-direction: column; gap: 11px; }
.value .icon-box { width: 42px; height: 42px; background: #fff; }
.value h3 { font-size: 15.5px; font-weight: 600; color: #163C3B; margin: 0; }
.value p { font-size: 13px; line-height: 1.5; color: #3F5E5C; margin: 0; }

/* Reviews ----------------------------------------------------------------- */
.google-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 22px; margin-bottom: 26px; flex-wrap: wrap;
}
.google-bar .left { display: flex; align-items: center; gap: 16px; }
.g-badge {
  flex: none; width: 48px; height: 48px; border-radius: 999px;
  background: #fff; border: 1px solid #E2E8E6;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 24px; color: #4285F4;
}
.google-bar .label { font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 3px; }
.google-bar .score-row { display: flex; align-items: center; gap: 10px; }
.google-bar .score { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--heading); }
.google-bar .count { font-size: 13.5px; color: var(--muted); }

.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.review-head { display: flex; align-items: center; gap: 12px; }
.avatar {
  flex: none; width: 42px; height: 42px; border-radius: 999px;
  background: repeating-linear-gradient(135deg, #E4EEEC 0 7px, #EFF5F4 7px 14px);
  border: 1px solid #DDE7E5;
}
.review-head .who { flex: 1; }
.review-head .name { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--heading); }
.review-head .org { font-size: 12px; color: #8C9A9F; }
.g-mini {
  flex: none; width: 22px; height: 22px; border-radius: 999px;
  background: #fff; border: 1px solid #E2E8E6;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 13px; color: #4285F4;
}
.review-stars { display: flex; align-items: center; gap: 8px; }
.review-stars .stars svg { width: 15px; height: 15px; }
.review-stars .when { font-size: 12px; color: #9AA7AB; }
.review-card p { font-size: 14.5px; line-height: 1.6; color: #475862; margin: 0; flex: 1; }

/* CTA-band ---------------------------------------------------------------- */
.cta-band { padding: 62px 0; background: var(--teal); position: relative; overflow: hidden; }
.cta-band .blob { position: absolute; border-radius: 999px; }
.cta-band .blob-1 { top: -80px; right: -40px; width: 320px; height: 320px; background: rgba(255,255,255,.08); }
.cta-band .blob-2 { bottom: -120px; left: 60px; width: 260px; height: 260px; background: rgba(255,255,255,.06); }
.cta-band .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px; flex-wrap: wrap; position: relative;
}
.cta-band h2 { font-size: 34px; line-height: 1.1; letter-spacing: -1px; color: #fff; margin: 0 0 12px; }
.cta-band p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.9); margin: 0; max-width: 560px; }
.cta-band .cta-actions { display: flex; flex-direction: column; gap: 13px; align-items: flex-start; }
.cta-band .phone-note { font-size: 14px; color: rgba(255,255,255,.92); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.cta-band .phone-note svg { width: 16px; height: 16px; }

/* Contactkaarten ---------------------------------------------------------- */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-card {
  border: 1px solid #E4EBEA; border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 10px;
}
.contact-card h3 { font-size: 19px; font-weight: 600; margin: 6px 0 0; }
.contact-card p { font-size: 14.5px; line-height: 1.55; color: var(--body-soft); margin: 0; }
.contact-card .line { font-size: 14px; color: #33444D; font-weight: 600; margin-top: 6px; }

/* FAQ --------------------------------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 22px;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--heading);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 20px; height: 20px; color: var(--teal); transition: transform .2s ease; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { font-size: 14.5px; line-height: 1.65; color: var(--body-soft); padding: 0 0 18px; margin: 0; }

/* Prijskaarten ------------------------------------------------------------ */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 16px;
}
.price-card.featured { border-color: var(--teal); box-shadow: var(--shadow); position: relative; }
.price-card .tag {
  position: absolute; top: -12px; left: 26px;
  background: var(--teal); color: #fff; font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
}
.price-card h3 { font-size: 20px; font-weight: 600; margin: 0; }
.price-card .desc { font-size: 14px; color: var(--body-soft); margin: 0; }
.price-card .price { font-family: var(--font-head); font-weight: 700; font-size: 38px; color: var(--heading); letter-spacing: -1px; }
.price-card .price small { font-size: 14px; font-weight: 500; color: var(--muted); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #33444D; }
.price-card li svg { flex: none; width: 16px; height: 16px; color: var(--teal-600); margin-top: 2px; }
.price-card .btn { justify-content: center; margin-top: auto; }
.price-note { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 24px; }

/* Pagina-kop (subpagina's) ------------------------------------------------ */
.page-hero { background: var(--tint); border-bottom: 1px solid var(--line-2); padding: 64px 0 56px; }
.page-hero .container { max-width: 760px; text-align: center; }
.page-hero .h1 { font-size: 40px; margin: 0 0 16px; }
.page-hero .lead { margin: 0 auto; max-width: 560px; }

/* Formulier --------------------------------------------------------------- */
.form-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13.5px; font-weight: 600; color: #33444D; }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 15px; color: var(--heading);
  padding: 12px 14px; border: 1.5px solid var(--line-2); border-radius: 10px;
  background: #fff; transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn { justify-content: center; }

.form-status {
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 18px;
  border: 1px solid transparent;
}
.form-status.ok  { background: #E7F6F3; color: #0C7E74; border-color: #BFE7E1; }
.form-status.err { background: #FBEDED; color: #B4423C; border-color: #F0CFCE; }

/* Klantlogo's ------------------------------------------------------------- */
.logo-strip-label {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 28px;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 54px;
}
.logo-strip img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .62;
  transition: filter .2s ease, opacity .2s ease;
}
.logo-strip img:hover { filter: none; opacity: 1; }

@media (max-width: 760px) {
  .logo-strip { gap: 24px 34px; }
  .logo-strip img { height: 34px; max-width: 120px; }
}

/* Footer ------------------------------------------------------------------ */
.site-footer { background: #F4F6F6; border-top: 1px solid #E4EBEA; padding: 54px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 34px; }
.footer-brand .wordmark {
  font-family: var(--font-head); font-weight: 700; font-size: 22px;
  letter-spacing: -.5px; color: var(--muted-2); margin-bottom: 6px;
}
.footer-brand .wordmark span { color: var(--teal); }
.footer-brand p { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0 0 14px; max-width: 230px; }
.footer-brand .contact { font-size: 13.5px; color: #54656E; font-weight: 600; }
.footer-col h4 { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--heading); margin-bottom: 13px; }
.footer-col .links { display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; color: var(--body-soft); }
.footer-col .links a { text-decoration: none; transition: color .15s ease; }
.footer-col .links a:hover { color: var(--teal); }
.footer-loc { display: flex; flex-direction: column; gap: 14px; font-size: 13px; line-height: 1.5; color: var(--body-soft); }
.footer-loc .place { font-weight: 700; color: #37545A; }
.footer-bottom {
  border-top: 1px solid #E4EBEA; margin-top: 36px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--muted-2);
}

/* Hulpklassen ------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.maxw-560 { max-width: 560px; }

/* Responsief -------------------------------------------------------------- */
/* Menu klapt in zodra de volledige balk niet comfortabel op één lijn past */
@media (max-width: 1080px) {
  .main-nav, .header-actions .login, .header-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }

  .mobile-nav {
    display: none;
    border-top: 1px solid var(--line-3);
    background: #fff;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav .container { flex-direction: column; align-items: stretch; gap: 0; padding-top: 8px; padding-bottom: 16px; }
  .mobile-nav a {
    text-decoration: none; color: #41525B; font-weight: 500; font-size: 15px;
    padding: 13px 0; border-bottom: 1px solid var(--line-3);
  }
  .mobile-nav a.active { color: var(--teal); }
  .mobile-nav .btn { margin-top: 14px; justify-content: center; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 38px; }
  .hero-visual { order: -1; }
  .floating-card { left: auto; right: 16px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .split .media-frame { order: -1; }
  .cards-3, .cards-3.features, .price-cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps-line { display: none; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { padding: 0 24px; }

  .h1, .page-hero .h1 { font-size: 33px; letter-spacing: -1px; }
  .h2, .cta-band h2 { font-size: 27px; }
  .section { padding: 54px 0; }

  .cards-3, .cards-3.features, .price-cards, .cards-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .field-row { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  .values { grid-template-columns: 1fr; }
  .trust-strip .container { gap: 12px; }
}
