/* ==========================================================================
   IOM BV — stylesheet
   Ontwerp geïnspireerd op Lightspeed Capital: rustig, veel witruimte,
   één warm-rood accent tegen een warm bijna-zwart.
   ========================================================================== */

:root {
  --rood: #e81c1d;
  --rood-donker: #c41718;
  --inkt: #191513;
  --grijs-tekst: #4a4a4a;
  --grijs-licht: #6b6b6b;
  --wit: #ffffff;
  --offwit: #f7f7f5;
  --rand: #e2e0dd;
  --rand-donker: #d0cecb;
  --schaduw: 0 1px 2px rgba(25, 21, 19, 0.04), 0 8px 24px rgba(25, 21, 19, 0.06);
  --radius: 8px;
  --radius-groot: 16px;
  --maxbreedte: 1160px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--grijs-tekst);
  background: var(--wit);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  color: var(--inkt);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--rood);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  width: 100%;
  max-width: var(--maxbreedte);
  margin: 0 auto;
  padding: 0 24px;
}

.smal {
  max-width: 760px;
}

/* ------------------------------------------------------------------ knoppen */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, transform 0.05s ease;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primair {
  background: var(--rood);
  color: var(--wit);
}

.btn-primair:hover {
  background: var(--rood-donker);
  color: var(--wit);
}

.btn-secundair {
  background: transparent;
  color: var(--inkt);
  border-color: var(--rand-donker);
}

.btn-secundair:hover {
  border-color: var(--inkt);
  color: var(--inkt);
}

.btn-groot {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-blok {
  width: 100%;
}

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rand);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.merk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--inkt);
  letter-spacing: -0.02em;
}

.merk:hover {
  text-decoration: none;
}

.merk-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--rood);
  color: var(--wit);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--inkt);
  font-weight: 500;
  font-size: 0.98rem;
}

.nav-links a:hover {
  color: var(--rood);
  text-decoration: none;
}

.nav-acties {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--inkt);
}

/* ------------------------------------------------------------------ hero */
.hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  background: linear-gradient(180deg, var(--offwit) 0%, var(--wit) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rood);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.hero p.lead {
  font-size: 1.2rem;
  color: var(--grijs-tekst);
  max-width: 34em;
}

.hero-acties {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 22px;
  font-size: 0.9rem;
  color: var(--grijs-licht);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-note svg {
  flex: none;
  color: var(--rood);
}

/* hero-illustratie (geen stockfoto — schone SVG-compositie) */
.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw);
  padding: 28px;
}

.hero-card h3 {
  margin-bottom: 4px;
}

.hero-card .bedrag {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--inkt);
  letter-spacing: -0.03em;
}

.hero-card .bedrag small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--grijs-licht);
}

.hero-meter {
  height: 8px;
  border-radius: 999px;
  background: var(--offwit);
  overflow: hidden;
  margin: 18px 0 20px;
}

.hero-meter span {
  display: block;
  height: 100%;
  width: 68%;
  background: var(--rood);
  border-radius: 999px;
}

.hero-rij {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--rand);
  font-size: 0.95rem;
}

.hero-rij span:last-child {
  color: var(--inkt);
  font-weight: 600;
}

/* ------------------------------------------------------------------ secties */
section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.sectie-offwit {
  background: var(--offwit);
}

.sectie-kop {
  max-width: 640px;
  margin-bottom: 48px;
}

.sectie-kop.centraal {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rood);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.sectie-kop p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* ------------------------------------------------------------------ waarden */
.waarden {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.waarde-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(232, 28, 29, 0.08);
  color: var(--rood);
  margin-bottom: 16px;
}

.waarde h3 {
  margin-bottom: 6px;
}

.waarde p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* ------------------------------------------------------------------ stappen */
.stappen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: stap;
}

.stap {
  position: relative;
  padding-top: 8px;
}

.stap-nr {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid var(--rood);
  color: var(--rood);
  font-weight: 800;
  margin-bottom: 18px;
}

.stap h3 {
  margin-bottom: 6px;
}

.stap p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* ------------------------------------------------- twee-koloms benefit blok */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.checklijst {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.checklijst li {
  position: relative;
  padding: 12px 0 12px 38px;
  border-top: 1px solid var(--rand);
  color: var(--inkt);
}

.checklijst li:first-child {
  border-top: 0;
}

.checklijst li strong {
  display: block;
  font-weight: 700;
}

.checklijst li span {
  color: var(--grijs-tekst);
  font-weight: 400;
  font-size: 0.98rem;
}

.checklijst li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(232, 28, 29, 0.1)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e81c1d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 14px no-repeat;
}

.info-kaart {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw);
  padding: 34px;
}

.sectie-offwit .info-kaart {
  background: var(--wit);
}

/* ------------------------------------------------------------------ voor wie */
.pijlers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pijler {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-groot);
  padding: 28px;
}

.sectie-offwit .pijler {
  background: var(--wit);
}

.pijler h3 {
  margin-bottom: 8px;
}

.pijler p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

/* ------------------------------------------------------------------ citaat */
.citaat {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.citaat blockquote {
  margin: 0 0 20px;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--inkt);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.citaat .quote-mark {
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--rood);
  font-weight: 800;
}

.citaat cite {
  font-style: normal;
  color: var(--grijs-licht);
  font-size: 0.95rem;
}

/* ------------------------------------------------------------------ faq */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--rand);
}

.faq-vraag {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 40px 22px 0;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--inkt);
  cursor: pointer;
  position: relative;
}

.faq-vraag::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s ease;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23191513' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.faq-item.open .faq-vraag::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-antwoord {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-antwoord-inner {
  padding: 0 40px 22px 0;
}

.faq-antwoord-inner p {
  margin: 0;
}

/* ------------------------------------------------------------------ cta band */
.cta-band {
  background: var(--inkt);
  color: var(--wit);
  text-align: center;
}

.cta-band h2 {
  color: var(--wit);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 40em;
  margin: 0 auto 28px;
}

/* ------------------------------------------------------------------ contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  margin-top: 28px;
}

.contact-info a {
  color: var(--inkt);
  font-weight: 600;
}

.contact-info .direct {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--grijs-tekst);
}

.contact-info .direct svg {
  color: var(--rood);
  flex: none;
}

.form-kaart {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw);
  padding: 34px;
}

.veld {
  margin-bottom: 18px;
}

.veld-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--inkt);
  margin-bottom: 6px;
}

label .optioneel {
  color: var(--grijs-licht);
  font-weight: 400;
}

input,
textarea,
select {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--inkt);
  padding: 12px 14px;
  border: 1px solid var(--rand-donker);
  border-radius: var(--radius);
  background: var(--wit);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--rood);
  box-shadow: 0 0 0 3px rgba(232, 28, 29, 0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* honeypot — verborgen voor mensen, zichtbaar voor bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-voet {
  font-size: 0.85rem;
  color: var(--grijs-licht);
  margin: 4px 0 18px;
}

.form-melding {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-bottom: 18px;
  display: none;
}

.form-melding.ok {
  display: block;
  background: rgba(34, 139, 62, 0.1);
  color: #1c7a35;
  border: 1px solid rgba(34, 139, 62, 0.25);
}

.form-melding.fout {
  display: block;
  background: rgba(232, 28, 29, 0.08);
  color: var(--rood-donker);
  border: 1px solid rgba(232, 28, 29, 0.25);
}

/* ------------------------------------------------------------------ footer */
.site-footer {
  background: var(--inkt);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .merk {
  color: var(--wit);
  margin-bottom: 16px;
}

.footer-over p {
  max-width: 34em;
  margin-bottom: 8px;
}

.footer-col h4 {
  color: var(--wit);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
  color: var(--wit);
}

.bedrijfsgegevens {
  display: grid;
  gap: 4px;
  margin-top: 4px;
}

.bedrijfsgegevens .ph {
  color: rgba(255, 255, 255, 0.45);
}

.footer-wft {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-onder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-onder nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------------ legal pagina's */
.legal {
  padding: clamp(48px, 7vw, 80px) 0;
}

.legal .container {
  max-width: 820px;
}

.legal h1 {
  margin-bottom: 8px;
}

.legal .laatst {
  color: var(--grijs-licht);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 1.4rem;
  margin-top: 40px;
}

.legal h3 {
  margin-top: 28px;
}

.legal ul {
  padding-left: 20px;
}

.legal li {
  margin-bottom: 8px;
}

.terug {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 32px;
}

.placeholder {
  background: rgba(232, 28, 29, 0.08);
  color: var(--rood-donker);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-weight: 600;
}

/* ------------------------------------------------------------------ responsief */
@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .waarden,
  .stappen {
    grid-template-columns: repeat(2, 1fr);
  }

  .pijlers {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-over {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .nav-links,
  .nav-acties .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--wit);
    border-bottom: 1px solid var(--rand);
    padding: 8px 24px 20px;
  }

  .nav-links.open li {
    width: 100%;
  }

  .nav-links.open a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--rand);
    width: 100%;
  }

  .waarden,
  .stappen,
  .veld-rij {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-onder {
    flex-direction: column;
    align-items: flex-start;
  }
}
