/* ====================================================================
   Win Win Mediation — custom CSS, geen frameworks.
   Tokens komen overeen met v1 (Bootstrap-bouw) zodat het visuele
   resultaat 1:1 behouden blijft.
   ==================================================================== */

:root {
  /* Kleuren */
  --primary: #1e2a38;
  --primary-soft: #2d3b4d;
  --accent: #c99a3b;
  --accent-dark: #b58422;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f7f8fa;
  --white: #ffffff;
  --border: #e5e7eb;
  --success: #198754;

  /* Schaduwen + radius */
  --shadow-sm: 0 4px 12px rgba(16, 24, 40, .04);
  --shadow:    0 12px 35px rgba(16, 24, 40, .08);
  --shadow-lg: 0 20px 50px rgba(16, 24, 40, .16);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* Layout */
  --header-h: 78px;
  --container-max: 1200px;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent-dark); }
/* Knoptekst-kleuren: hogere specificiteit dan de algemene a-regel */
body a.btn--primary { color: #fff; }
body a.btn--ghost-light { color: #fff; }
body a.btn--outline { color: var(--primary); }
body a.btn--outline-success { color: var(--success); }
button { font-family: inherit; }
h1, h2, h3, h4 {
  color: var(--primary);
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p  { margin: 0 0 1em; }
ul, ol { padding-left: 0; list-style: none; margin: 0; }
strong { color: var(--primary); }

/* ===== Utilities ===== */
.container {
  width: 100%; max-width: var(--container-max);
  margin: 0 auto; padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Smooth-scroll offset zodat anchor-links niet onder fixed header verdwijnen */
:target { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ===== Icons ===== */
.icon {
  width: 1.1em; height: 1.1em;
  vertical-align: -0.2em;
  flex-shrink: 0;
}
.icon--lg     { width: 1.75em; height: 1.75em; }
.icon--accent { color: var(--accent); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font: 500 .95rem/1 var(--font);
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm    { padding: 8px 16px;  font-size: .85rem; }
.btn--lg    { padding: 16px 28px; font-size: 1rem;   }
.btn--block { width: 100%; }

.btn--primary,
a.btn--primary             { background: var(--primary); color: #fff !important; }
.btn--primary:hover,
a.btn--primary:hover       { background: var(--primary-soft); color: #fff !important; }
.btn--outline,
a.btn--outline             { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover,
a.btn--outline:hover       { background: var(--primary); color: #fff; }
.btn--outline-success,
a.btn--outline-success     { background: transparent; color: var(--success); border-color: var(--success); }
.btn--outline-success:hover,
a.btn--outline-success:hover { background: var(--success); color: #fff; }
.btn--ghost-light,
a.btn--ghost-light         { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover,
a.btn--ghost-light:hover   { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); color: #fff; }

/* ===== Header / Nav ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.brand { display: flex; align-items: center; }
.brand__name {
  font-weight: 800; font-size: 1.15rem;
  color: var(--primary); letter-spacing: -.02em;
}

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--primary);
  cursor: pointer;
}
.nav-toggle__icon          { width: 22px; height: 22px; }
.nav-toggle__icon--close   { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--open  { display: none;  }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--close { display: block; }

.primary-nav {
  display: none;
  position: absolute; top: var(--header-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 20px;
  box-shadow: var(--shadow);
}
.primary-nav.is-open { display: block; }
.primary-nav__list { display: flex; flex-direction: column; }
.primary-nav__list li a {
  display: block; padding: 12px 8px;
  font-weight: 500; color: var(--primary);
  border-bottom: 1px solid var(--border);
}
.primary-nav__list li:last-child a { border-bottom: none; }
.primary-nav__list li a:hover { color: var(--accent-dark); }
.primary-nav__cta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 16px;
}
.primary-nav__cta .btn { flex: 1 1 auto; }

@media (min-width: 992px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex; align-items: center; gap: 24px;
    position: static;
    background: transparent;
    border: none; padding: 0; box-shadow: none;
  }
  .primary-nav__list  { flex-direction: row; gap: 24px; }
  .primary-nav__list li a {
    border: none; padding: 4px 0; font-size: .95rem;
  }
  .primary-nav__cta { margin-top: 0; }
  .primary-nav__cta .btn { flex: 0 0 auto; }
}

/* ===== Sections ===== */
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 88px 0; } }
.section--light { background: var(--bg); }
.section--dark {
  background: var(--primary);
  color: rgba(255, 255, 255, .92);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.section-kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.section-kicker--accent { color: var(--accent); }

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201, 154, 59, .18);
  color: var(--accent);
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  border: 1px solid rgba(201, 154, 59, .3);
}

/* ===== Grid ===== */
.grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Cards ===== */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card h3 { margin-top: 8px; }
.card p  { color: var(--muted); margin-bottom: 0; }

.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: rgba(30, 42, 56, .06);
  color: var(--primary);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}

/* Step-card variant: groot getal rechtsboven */
.step-card { position: relative; padding-top: 36px; }
.step-card__number {
  position: absolute; top: 16px; right: 22px;
  font-size: 2.75rem; font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

/* Testimonial-card */
.testimonial-card {
  display: flex; flex-direction: column; gap: 16px;
  margin: 0;
}
.testimonial-card__quote {
  font-style: italic;
  color: var(--text);
  font-size: 1rem; margin: 0;
}
.testimonial-card__author {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.testimonial-card__author cite {
  font-style: normal; font-weight: 600;
  color: var(--primary);
}
.testimonial-card__author span {
  color: var(--muted); font-size: .9rem;
}

/* ===== Hero ===== */
.hero {
  padding: 32px 0 64px;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(201, 154, 59, .08) 0%, transparent 55%),
    linear-gradient(155deg, #1e2a38 0%, #243347 45%, #1a2d42 75%, #162235 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(30, 42, 56, .3) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 992px) { .hero { padding: 48px 0 96px; } }

.hero__inner {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .hero__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    min-height: calc(100vh - var(--header-h) - 96px);
  }
}
.hero__content { display: flex; flex-direction: column; }
.hero h1 { color: #fff; }
.hero__lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .78);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__buttons {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 32px;
}
/* Hero-knop: goud met witte tekst */
.hero .btn--primary,
body .hero a.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 700;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.hero .btn--primary:hover,
body .hero a.btn--primary:hover {
  background: #deb24a;
  border-color: #deb24a;
  color: #fff;
  box-shadow: 0 6px 20px rgba(201,154,59,.45);
}
.hero__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.trust-row {
  display: grid; gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8px;
}
.trust-row li {
  padding: 12px 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  font-weight: 500; font-size: .9rem;
  text-align: center;
  color: rgba(255, 255, 255, .90);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ===== Split layout ===== */
.split {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 992px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.split__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split__content { display: flex; flex-direction: column; }
.split__content > .btn { align-self: flex-start; }
.split__content p { color: var(--muted); }
.section--dark .split__content p { color: rgba(255, 255, 255, .82); }

/* Contact section: form eerst tonen op desktop, content links — niet swappen
   op mobile (content blijft visueel boven het form). */
.split--reverse-mobile { grid-template-columns: 1fr; }
@media (min-width: 992px) {
  .split--reverse-mobile {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* ===== Benefit-list (diensten) ===== */
.benefit-list {
  display: flex; flex-direction: column; gap: 12px;
  margin: 24px 0 32px;
}
.benefit-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--text);
}
.benefit-list .icon { margin-top: 4px; }

/* ===== FAQ (native <details>) ===== */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.75rem; font-weight: 300; line-height: 1;
  color: var(--accent);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq__body { padding: 0 22px 18px; color: var(--muted); }
.faq__body p { margin: 0; }

/* ===== CTA-panel ===== */
.cta-panel {
  display: grid; gap: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  align-items: center;
}
@media (min-width: 768px) {
  .cta-panel {
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    padding: 48px;
  }
  .cta-panel .btn { justify-self: end; }
}
.cta-panel h2 { margin: 8px 0 12px; }
.cta-panel p  { color: var(--muted); margin: 0; }

/* ===== Contact ===== */
.contact-list {
  display: flex; flex-direction: column; gap: 14px;
  margin: 24px 0;
}
.contact-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.05rem;
}
.contact-list a { color: var(--primary); font-weight: 500; }
.contact-list a:hover { color: var(--accent-dark); }

.contact-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-top: 16px;
}

/* ===== Form ===== */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .form-card { padding: 36px; } }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field > span {
  font-weight: 500; font-size: .92rem;
  color: var(--primary);
}
.form-field input,
.form-field textarea {
  font: inherit;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 42, 56, .1);
}
.form-field textarea { resize: vertical; min-height: 140px; }

/* Success-banner (verschijnt via JS bij ?sent=1) */
.form-success {
  background: rgba(25, 135, 84, .08);
  border: 1px solid rgba(25, 135, 84, .2);
  color: #135733;
  padding: 14px 18px;
  border-radius: 10px;
  margin: 0 0 24px;
  display: flex; align-items: flex-start; gap: 12px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, .78);
  padding: 56px 0 24px;
}
.site-footer h3 { color: #fff; font-size: 1.15rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer a { color: rgba(255, 255, 255, .78); }
.site-footer a:hover { color: var(--accent); }

.site-footer__cols {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__cols { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
}
.site-footer__cols ul { display: flex; flex-direction: column; gap: 6px; }
.site-footer__cols p  { margin: 0 0 6px; }

.site-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .85rem;
}
.site-footer__bottom small { color: rgba(255, 255, 255, .58); }
