/* ============================================================
   OptiX Pay — website
   Ontwerptaal gelijk aan optixai.nl, kleuren uit de OptiX-huisstijl
   (navy #1F264B, blauw #3172B8, cyaan #30BDE7, teal #58C1D3)
   ============================================================ */

:root {
  --bg: #060A16;
  --bg-raised: #0B1122;
  --bg-card: #0F1730;
  --bg-card-hover: #141E3D;
  --border: rgba(140, 165, 215, 0.14);
  --border-strong: rgba(140, 165, 215, 0.30);
  --text: #E9EEF8;
  --text-muted: #9BA8C4;
  --text-faint: #6D7C9C;

  --navy: #1F264B;
  --blue: #3172B8;
  --blue-bright: #4A93DC;
  --cyan: #30BDE7;
  --cyan-soft: #7FD8F2;
  --teal: #58C1D3;
  --glow: rgba(48, 189, 231, 0.32);

  --green: #34D399;
  --amber: #FBBF24;
  --red: #F87171;

  --radius: 14px;
  --radius-lg: 22px;
  --font: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --max-w: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

::selection { background: var(--blue); color: #fff; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.22rem; }

.lead {
  font-size: clamp(1.03rem, 1.7vw, 1.26rem);
  color: var(--text-muted);
  line-height: 1.65;
}

.gradient-text {
  background: linear-gradient(110deg, var(--blue-bright) 5%, var(--cyan) 55%, var(--teal) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.79rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(6, 10, 22, 0.78);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.14rem;
  letter-spacing: -0.01em;
}
.nav-logo svg { flex-shrink: 0; }
.nav-logo .thin { font-weight: 400; color: var(--text-muted); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  transition: color .18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.login {
  color: var(--cyan);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links a.login:hover { color: var(--cyan-soft); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0; border-radius: 2px;
}

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--blue) 0%, var(--cyan) 100%);
  color: #04121C;
  box-shadow: 0 8px 28px -10px var(--glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 38px -10px var(--glow); }
.btn-ghost {
  background: rgba(140, 165, 215, .07);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: rgba(140, 165, 215, .14); border-color: rgba(140, 165, 215, .48); }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 32px; font-size: 1.01rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 106px; overflow: hidden; }
.page-hero { position: relative; padding: 152px 0 60px; overflow: hidden; }
.page-hero .lead { max-width: 660px; margin-top: 18px; }

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 72% 8%, rgba(48, 189, 231, .16), transparent 65%),
    radial-gradient(ellipse 48% 40% at 15% 88%, rgba(49, 114, 184, .16), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(140, 165, 215, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 165, 215, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 58px; align-items: center;
}
/* Zonder min-width:0 rekt de min-content van de mock de grid op smalle schermen op */
.hero-inner > *, .split > * { min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(140, 165, 215, .05);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 9px var(--cyan);
}
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 34px; max-width: 545px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat .num {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--blue-bright), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat .label { font-size: 0.82rem; color: var(--text-faint); margin-top: 2px; max-width: 175px; }

/* ---------- Hero-mock: betaalbatch ---------- */
.mock {
  background: linear-gradient(165deg, var(--bg-card), #0A1124);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .9), 0 0 0 1px rgba(48, 189, 231, .06);
}
.mock-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 15px; margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
}
.mock-title { font-weight: 600; display: flex; align-items: center; gap: 9px; }
.mock-title .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
}
.mock-meta { color: var(--text-faint); font-size: 0.76rem; }

.mock-row {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 6px;
  border-bottom: 1px solid rgba(140, 165, 215, .07);
}
.mock-row:last-of-type { border-bottom: none; }
.mock-check {
  width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #04121C;
}
.mock-check.on { background: linear-gradient(120deg, var(--blue), var(--cyan)); border-color: transparent; }
.mock-row .info { flex: 1; min-width: 0; }
.mock-row .info .t {
  font-weight: 600; font-size: 0.84rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mock-row .info .s { color: var(--text-faint); font-size: 0.74rem; }
.mock-row .amt {
  font-weight: 700; font-variant-numeric: tabular-nums;
  font-size: 0.87rem; text-align: right; white-space: nowrap;
}
.cur {
  display: inline-block;
  font-size: 0.66rem; font-weight: 700; letter-spacing: .06em;
  padding: 2px 7px; border-radius: 5px; margin-left: 7px;
  background: rgba(48, 189, 231, .13); color: var(--cyan);
}
.cur.usd { background: rgba(52, 211, 153, .13); color: var(--green); }
.cur.gbp { background: rgba(251, 191, 36, .13); color: var(--amber); }
.cur.eur { background: rgba(74, 147, 220, .14); color: var(--blue-bright); }

.mock-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 15px;
  border-top: 1px solid var(--border);
  font-size: 0.79rem; color: var(--text-faint);
}
.mock-foot .go {
  padding: 8px 15px; border-radius: 8px;
  background: linear-gradient(120deg, var(--blue), var(--cyan));
  color: #04121C; font-weight: 700; font-size: 0.78rem;
}

/* ---------- Secties ---------- */
section { padding: 88px 0; position: relative; }
.section-alt { background: var(--bg-raised); border-block: 1px solid var(--border); overflow: hidden; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head p { margin-top: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .2; pointer-events: none;
}
.orb-blue { background: var(--blue); }
.orb-cyan { background: var(--cyan); }
.orb-teal { background: var(--teal); }

/* ---------- Pijnpunten ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pain {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .2s, transform .2s;
}
.pain:hover { border-color: rgba(248, 113, 113, .35); transform: translateY(-2px); }
.pain .ic {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(248, 113, 113, .12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.pain h3 { font-size: 1.02rem; margin-bottom: 7px; }
.pain p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; }

/* ---------- Grote functieblokken ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split + .split { margin-top: 84px; }
.split.flip .split-visual { order: -1; }
.split h2 { font-size: clamp(1.5rem, 2.9vw, 2.1rem); margin-bottom: 16px; }
.split p { color: var(--text-muted); }

.checklist { list-style: none; margin-top: 22px; }
/* display:block i.p.v. flex: in een flex-li wordt elke <strong> een eigen
   flex-item, waardoor de regel op smalle schermen niet meer afbreekt. */
.checklist li {
  display: block;
  position: relative;
  padding: 9px 0 9px 32px;
  color: var(--text-muted);
  font-size: 0.94rem;
}
.checklist li::before {
  content: "\2713";
  position: absolute; left: 0; top: 11px;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: rgba(48, 189, 231, .13);
  color: var(--cyan);
  font-size: 0.72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.checklist li strong { color: var(--text); font-weight: 600; }

/* Visuele kaartjes naast de functieblokken */
.panel {
  background: linear-gradient(165deg, var(--bg-card), #0A1124);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 34px 80px -46px rgba(0, 0, 0, .9);
}
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; font-weight: 600;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.panel-head .tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--cyan); background: rgba(48, 189, 231, .12);
  padding: 4px 9px; border-radius: 6px;
}
.line {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 10px 0;
  border-bottom: 1px dashed rgba(140, 165, 215, .1);
  font-size: 0.83rem;
}
.line:last-child { border-bottom: none; }
.line .l { color: var(--text-muted); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line .r { font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.line .r.pos { color: var(--green); }
.line .r.neg { color: var(--red); }
.panel-foot {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 0.79rem; color: var(--text-faint);
}
.panel-foot .ok { color: var(--green); font-weight: 600; }

/* ---------- Stappen ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step .num {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; color: #04121C;
  margin-bottom: 16px;
}
.steps .step:nth-child(1) .num { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); }
.steps .step:nth-child(2) .num { background: linear-gradient(135deg, var(--blue-bright), var(--cyan)); }
.steps .step:nth-child(3) .num { background: linear-gradient(135deg, var(--cyan), var(--teal)); }
.steps .step:nth-child(4) .num { background: linear-gradient(135deg, var(--teal), var(--green)); }
.step h3 { font-size: 1.03rem; margin-bottom: 9px; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- Strip met kernpunten ---------- */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.strip .item {
  display: flex; align-items: center; gap: 13px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 17px 19px;
  font-size: 0.9rem; font-weight: 500;
}
.strip .item .ic {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.strip .item:nth-child(1) .ic { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); }
.strip .item:nth-child(2) .ic { background: linear-gradient(135deg, var(--blue-bright), var(--cyan)); }
.strip .item:nth-child(3) .ic { background: linear-gradient(135deg, var(--cyan), var(--teal)); }
.strip .item:nth-child(4) .ic { background: linear-gradient(135deg, var(--teal), var(--green)); }

/* ---------- Kaarten (algemeen) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color .2s, transform .2s, background .2s;
  position: relative; overflow: hidden;
}
.card:hover { border-color: rgba(48, 189, 231, .42); transform: translateY(-3px); background: var(--bg-card-hover); }
.card .icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; margin-bottom: 17px;
  background: rgba(140, 165, 215, .06);
  border: 1px solid var(--border);
}
.cards .card:nth-child(1) .icon { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); border-color: transparent; }
.cards .card:nth-child(2) .icon { background: linear-gradient(135deg, var(--blue-bright), var(--cyan)); border-color: transparent; }
.cards .card:nth-child(3) .icon { background: linear-gradient(135deg, var(--cyan), var(--teal)); border-color: transparent; }
.cards .card:nth-child(4) .icon { background: linear-gradient(135deg, var(--teal), var(--green)); border-color: transparent; }
.cards .card:nth-child(5) .icon { background: linear-gradient(135deg, var(--blue), var(--cyan)); border-color: transparent; }
.cards .card:nth-child(6) .icon { background: linear-gradient(135deg, var(--cyan), var(--blue-bright)); border-color: transparent; }
.card h3 { font-size: 1.05rem; margin-bottom: 9px; }
.card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.58; }
.cards.two { grid-template-columns: repeat(2, 1fr); }

/* ---------- Bankformaten ---------- */
.formats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  padding: 8px 15px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(140, 165, 215, .05);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.chip.on { border-color: rgba(48, 189, 231, .45); color: var(--cyan); background: rgba(48, 189, 231, .08); }

/* ---------- Prijsblok ---------- */
.price-hero {
  background: linear-gradient(165deg, var(--bg-card), #0A1124);
  border: 1px solid rgba(48, 189, 231, .3);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, .9);
  position: relative; overflow: hidden;
}
.price-hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--teal));
}
.price-hero .amount {
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(120deg, var(--blue-bright), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.price-hero .per { color: var(--text-muted); margin-top: 10px; font-size: 1rem; }
.price-hero .note { color: var(--text-faint); font-size: 0.88rem; margin-top: 18px; max-width: 560px; margin-inline: auto; }

.incl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; margin-top: 34px; text-align: left; }
.incl li { display: flex; gap: 11px; align-items: flex-start; color: var(--text-muted); font-size: 0.92rem; list-style: none; }
.incl li .tick { color: var(--cyan); font-weight: 700; flex-shrink: 0; }

/* ---------- Band met cijfers ---------- */
.band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  background: linear-gradient(120deg, rgba(49, 114, 184, .1), rgba(48, 189, 231, .07));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  text-align: center;
}
.band .big {
  font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--blue-bright), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.band .cap { font-size: 0.82rem; color: var(--text-faint); margin-top: 5px; }

/* ---------- Oprichter ---------- */
.founder {
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
}
.founder .avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.3rem; color: #04121C;
}
.founder q { font-size: 1.06rem; line-height: 1.6; display: block; margin-bottom: 16px; }
.founder .who { color: var(--text-faint); font-size: 0.88rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: border-color .2s;
}
.faq details[open] { border-color: rgba(48, 189, 231, .4); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 19px 24px;
  font-weight: 600; font-size: 0.98rem;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 7px;
  background: rgba(140, 165, 215, .1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.faq details[open] summary::after { content: "\2212"; background: rgba(48, 189, 231, .2); color: var(--cyan); }
.faq .faq-body { padding: 0 24px 21px; color: var(--text-muted); font-size: 0.93rem; line-height: 1.62; }
.faq .faq-body a { color: var(--cyan); }

/* ---------- CTA-band ---------- */
.cta-band {
  background: linear-gradient(120deg, rgba(49, 114, 184, .14), rgba(48, 189, 231, .1));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 62px 44px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--text-muted); max-width: 540px; margin: 0 auto 30px; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Formulier ---------- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.86rem; font-weight: 600; color: var(--text-muted); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  background: rgba(6, 10, 22, .7);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.94rem;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: rgba(48, 189, 231, .6);
  box-shadow: 0 0 0 3px rgba(48, 189, 231, .12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { color-scheme: dark; cursor: pointer; }
.form-field select option { background: #0D1526; color: var(--text); }

.side-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.side-card h3 { font-size: 1rem; margin-bottom: 9px; }
.side-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.58; }
.side-card a { color: var(--cyan); text-decoration: none; font-weight: 600; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 58px 0 34px; background: var(--bg-raised); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-faint); font-size: 0.88rem; margin-top: 15px; max-width: 330px; }
.footer-col h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-faint); margin-bottom: 15px; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.91rem; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--text-faint); font-size: 0.83rem;
}

/* ---------- Scroll-animatie ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 46px; }
  .hero { padding: 140px 0 76px; }
  .hero .lead { max-width: none; }
  .split, .split.flip { grid-template-columns: 1fr; gap: 34px; }
  .split.flip .split-visual { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    gap: 0;
    background: rgba(6, 10, 22, .98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 12px 22px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 11px 0; }
  .nav-links .btn { width: 100%; justify-content: center; }
  .contact-layout { display: block !important; }
  .contact-layout > div:first-child { margin-bottom: 26px; }
}

@media (max-width: 760px) {
  section { padding: 64px 0; }
  .page-hero { padding: 126px 0 40px; }
  .pain-grid { grid-template-columns: 1fr; }
  .cards, .cards.two { grid-template-columns: 1fr; }
  .band { grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px 20px; }
  .incl { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 46px 24px; }
  .hero-stats { gap: 26px; }
  .split + .split { margin-top: 56px; }
}

@media (max-width: 560px) {
  .container, .nav-inner { padding: 0 20px; }
  /* Decoratieve gloed weglaten: levert op telefoons alleen layout-overflow op */
  .orb { display: none; }
  .steps { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .price-hero { padding: 34px 22px; }
  .founder { padding: 28px 22px; }
  .mock { padding: 18px; }
  .mock-row { gap: 10px; }
  .mock-row .info .t { font-size: 0.8rem; }
  /* 16px voorkomt dat iOS bij focus inzoomt */
  .form-field input, .form-field textarea, .form-field select { font-size: 16px; }
}

@media (max-width: 440px) {
  .hero-ctas .btn, .cta-band .btns .btn { width: 100%; justify-content: center; }
  .hero-stat .label { max-width: none; }
  .faq summary { padding: 16px 18px; font-size: 0.93rem; }
  .faq .faq-body { padding: 0 18px 18px; }
  .cta-band { padding: 38px 18px; }
  .band { padding: 24px 16px; gap: 20px 12px; }
  .price-hero .note { font-size: 0.84rem; }
}
