/* ===== Ome Gerrit — kleuren uit de zegel ===== */
:root {
  --bg: #ffffff;
  --blue: #2c6fd6;          /* leading */
  --blue-dark: #1b4b9e;
  --blue-deep: #11306b;
  --blue-soft: #eaf2fd;     /* lichte tint achtergrond */
  --blue-stamp: #bcd6f0;    /* zegelachtergrond */
  --orange: #ea5631;        /* accent */
  --orange-dark: #cf4824;
  --ink: #15233f;
  --muted: #5b6b86;
  --line: #dce6f3;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 18px 40px -18px rgba(17, 48, 107, 0.35);
  --maxw: 1120px;
  --display: "Fredoka", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.center { text-align: center; }

h1, h2, h3 { font-family: var(--display); line-height: 1.12; font-weight: 600; color: var(--ink); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.18rem; }
a { color: inherit; text-decoration: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--display); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn--sm { padding: 9px 18px; font-size: .95rem; }
.btn--full { width: 100%; }
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -10px rgba(234, 86, 49, .7); }
.btn--orange:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--blue-dark); border-color: var(--blue); }
.btn--ghost:hover { background: var(--blue-soft); transform: translateY(-2px); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; }
.brand__mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: var(--orange); color: #fff; font-weight: 700; font-size: .95rem; letter-spacing: .5px;
  box-shadow: 0 6px 14px -6px rgba(234,86,49,.8);
}
.brand__stamp { width: 46px; height: auto; display: block; filter: drop-shadow(0 4px 8px rgba(17,48,107,.25)); }
.brand__name { font-size: 1.2rem; color: var(--blue-deep); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-weight: 500; color: var(--ink); font-size: .98rem; }
.nav__links a:not(.btn):hover { color: var(--blue); }
.nav__toggle { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--blue-deep); }

/* ===== Hero ===== */
.hero { padding: 64px 0 40px; background: linear-gradient(180deg, var(--blue-soft) 0%, #fff 78%); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block; font-family: var(--display); font-weight: 600; font-size: .82rem;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange);
  background: #fff; border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); font-weight: 700; }
.hero h1 .hl { color: var(--blue); }
.lead { font-size: 1.14rem; color: var(--muted); margin: 20px 0 28px; max-width: 540px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__note { margin-top: 20px; font-size: .92rem; color: var(--muted); }

.hero__visual { position: relative; display: grid; place-items: center; }
.hero__blob {
  position: absolute; inset: 0; margin: auto; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--blue-stamp), transparent 68%); z-index: 0;
}
/* Postzegel — perforatierand zit al in de PNG */
.hero__stamp {
  position: relative; z-index: 1; display: block; width: 100%; max-width: 400px;
  height: auto; rotate: 6deg; filter: drop-shadow(0 22px 34px rgba(17, 48, 107, .3));
  mix-blend-mode: multiply;
}

/* ===== Stats ===== */
.stats { background: var(--blue-deep); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 30px 16px; border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: none; }
.stat__num { display: block; font-family: var(--display); font-weight: 700; font-size: 2.1rem; color: #fff; }
.stat__label { font-size: .9rem; color: #b9c9e6; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section--soft { background: var(--blue-soft); }
.section__head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section__head.center { text-align: center; }
.section__sub { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.section__sub--light { color: #d3e0f5; }
.kicker {
  display: inline-block; font-family: var(--display); font-weight: 600; font-size: .8rem;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.kicker--light { color: #ffd2c4; }
.big { font-size: 1.16rem; color: var(--muted); margin-top: 18px; }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
  transition: transform .18s ease, box-shadow .2s ease; border-top: 4px solid var(--blue);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card:nth-child(even) { border-top-color: var(--orange); }
.card__icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.card h3 { margin-bottom: 8px; color: var(--blue-deep); }
.card p { color: var(--muted); font-size: .98rem; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; list-style: none; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 22px 24px; }
.step__num {
  position: absolute; top: -18px; left: 22px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.15rem; box-shadow: 0 8px 16px -8px rgba(44,111,214,.8);
}
.step h3 { margin: 8px 0; color: var(--blue-deep); }
.step p { color: var(--muted); font-size: .96rem; }

/* ===== Prijs / blauwe blokken ===== */
.section--blue { background: linear-gradient(160deg, var(--blue-dark), var(--blue-deep)); color: #fff; position: relative; }
.h2--light { color: #fff; }
.price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin: 28px 0 8px; }
.price__amount { font-family: var(--display); font-weight: 700; font-size: 3.6rem; color: #fff; }
.price__per { color: #c9d8f0; font-size: 1.05rem; }
.price__frame { color: #d8e3f6; font-size: 1.08rem; max-width: 600px; margin: 0 auto 26px; }
.price__frame strong { color: #fff; }
.price__list { list-style: none; max-width: 520px; margin: 0 auto 30px; text-align: left; display: grid; gap: 12px; }
.price__list li { position: relative; padding-left: 32px; color: #e4ecf9; }
.price__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); color: #fff; display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}

/* ===== Branches tags ===== */
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 820px; margin: 0 auto; }
.tags li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px;
  font-weight: 500; color: var(--blue-deep); font-size: .98rem; transition: .15s ease;
}
.tags li:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.branches__note { text-align: center; margin-top: 28px; color: var(--muted); }

/* ===== FAQ ===== */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 22px; }
.faq__item summary {
  list-style: none; cursor: pointer; font-family: var(--display); font-weight: 500; font-size: 1.08rem;
  color: var(--blue-deep); padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--orange); transition: transform .2s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 0 18px; }

/* ===== Form ===== */
.form { background: #fff; border-radius: 20px; padding: 32px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 6px; font-weight: 600; font-size: .92rem; color: var(--blue-deep); }
.form .opt { color: var(--muted); font-weight: 400; }
.form input, .form textarea {
  font-family: var(--body); font-size: 1rem; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; color: var(--ink); background: #fbfdff; transition: border .15s ease, box-shadow .15s ease;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(44,111,214,.15); }
.form textarea { resize: vertical; }
.form__opt-out { font-size: .85rem; color: var(--muted); text-align: center; }
.form__success { background: var(--blue-soft); color: var(--blue-deep); border: 1px solid var(--blue); border-radius: 10px; padding: 14px; text-align: center; font-weight: 500; }

/* ===== Footer ===== */
.footer { background: var(--blue-deep); color: #c9d8f0; padding: 44px 0; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand strong { color: #fff; display: block; font-family: var(--display); font-size: 1.1rem; }
.footer__brand span { font-size: .85rem; color: #9fb4d8; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__links a { color: #c9d8f0; font-size: .95rem; }
.footer__links a:hover { color: #fff; }
.footer__copy { width: 100%; border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; font-size: .85rem; color: #8ea6cf; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__visual { order: 1; }
  .lead, .hero__cta { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .cards, .steps { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .nav__links {
    position: absolute; top: 70px; left: 0; right: 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: 0; padding: 8px 24px 20px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__links a.btn { margin-top: 10px; justify-content: center; }
  .nav__toggle { display: block; }
  .cards, .steps, .form__row { grid-template-columns: 1fr; }
  .step__num { left: 50%; transform: translateX(-50%); }
  .step { text-align: center; padding-top: 34px; }
  .section { padding: 60px 0; }
}
