:root {
  --bg: #0a0e17;
  --bg-elev: #0e1420;
  --card: #141b28;
  --card-2: #111825;
  --border: #1f2937;
  --border-soft: #1a2231;
  --text: #f3f5f9;
  --text-2: #9aa5b8;
  --text-3: #6b7688;
  --indigo: #5b52e6;
  --indigo-hover: #6b62f0;
  --indigo-soft: rgba(91, 82, 230, 0.14);
  --green: #34d399;
  --green-soft: rgba(52, 211, 153, 0.1);
  --amber: #f5b544;
  --teal: #2dd4bf;
  --radius: 16px;
  --radius-sm: 10px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
/* The hidden attribute must win over the display rules on buttons/screens. */
[hidden] {
  display: none !important;
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 23, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(150deg, #6b62f0, #4b42d6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(91, 82, 230, 0.35);
}
.logo-mark svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}
.logo-text {
  font-size: 19px;
  letter-spacing: -0.01em;
}
.logo-text b {
  font-weight: 800;
}
.logo-text span {
  font-weight: 300;
  color: var(--text-2);
}
.bar-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 10px;
  background: var(--indigo);
  color: #fff;
  transition: background 0.18s ease;
}
.bar-cta:hover {
  background: var(--indigo-hover);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 520px;
  background: radial-gradient(
    ellipse at center,
    rgba(91, 82, 230, 0.22),
    transparent 68%
  );
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 18px;
  margin-bottom: 26px;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  margin-top: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}
h1 {
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 15ch;
  margin-bottom: 22px;
}
h1 .accent {
  background: linear-gradient(120deg, #8b83ff, #5b52e6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: 19px;
  color: var(--text-2);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-primary {
  font-size: 15.5px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 12px;
  background: var(--indigo);
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.btn-primary:hover {
  background: var(--indigo-hover);
  transform: translateY(-1px);
}
.btn-ghost {
  font-size: 15.5px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 12px;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  transition: border-color 0.18s ease;
}
.btn-ghost:hover {
  border-color: #2e3a4d;
}

/* ---------- Stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 66px;
}
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.stat-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo-soft);
  color: var(--indigo);
  margin-bottom: 16px;
}
.stat-ico svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.stat-t {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.stat-d {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-2);
}

/* ---------- Section ---------- */
section.block {
  padding: 80px 0;
}
.sec-head {
  margin-bottom: 48px;
  max-width: 60ch;
}
.sec-head .kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 14px;
}
.sec-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.sec-head p {
  font-size: 17.5px;
  color: var(--text-2);
}

/* ---------- Feature cards ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.feat:hover {
  border-color: rgba(91, 82, 230, 0.4);
  transform: translateY(-3px);
}
.feat-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--indigo-soft);
  border: 1px solid rgba(91, 82, 230, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat-ico svg {
  width: 22px;
  height: 22px;
  stroke: #8b83ff;
}
.feat h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.feat p {
  font-size: 15px;
  color: var(--text-2);
}

/* ---------- Spec panel ---------- */
.spec-panel {
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 12px;
}
.spec-inner {
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
}
.spec-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-soft);
}
.spec-top .traffic {
  display: flex;
  gap: 7px;
}
.spec-top .traffic i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}
.spec-url {
  font-size: 13px;
  color: var(--text-3);
  font-family: ui-monospace, monospace;
  margin-left: 6px;
}
.spec-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.spec-row {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-soft);
}
.spec-row:nth-child(odd) {
  border-right: 1px solid var(--border-soft);
}
.spec-row.full {
  grid-column: 1 / -1;
  border-right: none;
}
.spec-row .k {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.spec-row .v {
  font-size: 17px;
  font-weight: 700;
}
.spec-row .v small {
  font-weight: 400;
  color: var(--text-2);
  font-size: 13px;
}
.badge-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(52, 211, 153, 0.28);
  padding: 3px 11px;
  border-radius: 999px;
}
.badge-online .d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ---------- Use cases ---------- */
.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.use {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.use .u-ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--card-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.use .u-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
}
.use h4 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
}
.use p {
  font-size: 14.5px;
  color: var(--text-2);
}

/* ---------- Lead form ---------- */
.lead {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 52px clamp(24px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
.lead::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(91, 82, 230, 0.18),
    transparent 66%
  );
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 52px;
  align-items: start;
  position: relative;
}
.lead-copy h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.lead-copy p {
  font-size: 16.5px;
  color: var(--text-2);
  margin-bottom: 28px;
}
.lead-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.lead-point .chk {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-point .chk svg {
  width: 13px;
  height: 13px;
  stroke: var(--green);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
input,
textarea,
select {
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 13px 15px;
  width: 100%;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}
input::placeholder,
textarea::placeholder {
  color: var(--text-3);
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--indigo-soft);
}
textarea {
  resize: vertical;
  min-height: 88px;
}
.submit {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  background: var(--indigo);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 15px;
  border-radius: 12px;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.submit:hover {
  background: var(--indigo-hover);
  transform: translateY(-1px);
}
.form-note {
  font-size: 12.5px;
  color: var(--text-3);
  text-align: center;
  margin-top: 2px;
}
.success {
  display: none;
  text-align: center;
  padding: 44px 20px;
}
.success.show {
  display: block;
}
.success .ok-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: var(--green-soft);
  border: 1px solid rgba(52, 211, 153, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success .ok-ico svg {
  width: 30px;
  height: 30px;
  stroke: var(--green);
}
.success h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}
.success p {
  font-size: 16px;
  color: var(--text-2);
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border-soft);
  padding: 38px 0;
  margin-top: 20px;
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.foot .logo-text {
  font-size: 16px;
}
.foot-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-2);
}
.foot-links a:hover {
  color: var(--text);
}
.foot-copy {
  font-size: 13px;
  color: var(--text-3);
  width: 100%;
  padding-top: 14px;
}

@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .use-grid {
    grid-template-columns: 1fr;
  }
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .spec-rows {
    grid-template-columns: 1fr;
  }
  .spec-row:nth-child(odd) {
    border-right: none;
  }
}
@media (max-width: 560px) {
  .stats {
    grid-template-columns: 1fr;
  }
  .row-2 {
    grid-template-columns: 1fr;
  }
  .bar-cta {
    display: none;
  }
}
/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.6s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: none;
}
.reveal-stagger.in > *:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal-stagger.in > *:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal-stagger.in > *:nth-child(4) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.18s ease;
}
.nav-link:hover {
  color: var(--text);
}

/* ---------- Hero two-column ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: start;
}
.hero-copy {
  min-width: 0;
}

/* ---------- Simulator ---------- */
.simulator {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.sim-head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}
.sim-head-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.sim-head-sub {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-2);
  margin-top: 5px;
}
.sim-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.sim-steplabel {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.sim-steplabel b {
  color: var(--indigo);
  font-weight: 700;
}
.sim-dots {
  display: flex;
  gap: 6px;
}
.sim-dots i {
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.25s ease;
}
.sim-dots i.is-active {
  background: var(--indigo);
}

/* A min-height keeps the card from snapping too hard between short and tall
   steps, without forcing every step to the tallest one's height. */
.sim-body {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sim-screen {
  display: none;
}
.sim-screen.is-active {
  display: block;
  animation: simIn 0.35s ease;
}
/* Breathing room between stacked field rows in a step. Scoped to DIRECT
   children so it never offsets the two fields paired inside a .row-2. */
.sim-screen > .row-2 + .row-2 {
  margin-top: 18px;
}
.sim-note-privacy {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--text-3);
}
.sim-note-privacy a {
  color: var(--indigo);
  font-weight: 600;
}
@keyframes simIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.sim-title {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.sim-sub {
  font-size: 14.5px;
  color: var(--text-2);
  margin-bottom: 24px;
}

.sim-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 10px 0 22px;
}
.sim-step-btn {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 26px;
  line-height: 1;
  background: var(--bg-elev);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.16s ease,
    background 0.16s ease;
}
.sim-step-btn:hover {
  border-color: var(--indigo);
  background: var(--indigo-soft);
}
.sim-count {
  text-align: center;
  min-width: 110px;
}
.sim-count-val {
  display: block;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.sim-count small {
  font-size: 12.5px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sim-quick {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.sim-quick-btn {
  flex: 1;
  padding: 11px 0;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    color 0.16s ease,
    background 0.16s ease;
}
.sim-quick-btn:hover {
  border-color: #2e3a4d;
  color: var(--text);
}
.sim-quick-btn.is-active {
  background: var(--indigo-soft);
  border-color: var(--indigo);
  color: #fff;
}

.sim-dates.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.sim-check,
.consent-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--text);
  cursor: pointer;
}
.sim-check input,
.consent-check input {
  width: 18px;
  height: 18px;
  flex: none;
  accent-color: var(--indigo);
  cursor: pointer;
}
.sim-consent-wrap a,
.consent-check a {
  color: var(--indigo);
  font-weight: 600;
}
.consent-err {
  font-size: 13px;
  color: #f5655b;
  margin-top: 8px;
}

.sim-err {
  font-size: 13px;
  color: #f5655b;
  margin-top: 12px;
}

.sim-price {
  position: relative;
  text-align: center;
  padding: 26px 16px;
  border-radius: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
  margin-bottom: 18px;
  overflow: hidden;
}
.sim-price-val {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
/* Locked teaser: never contains the real number — just dots, muted and
   unselectable, so the price can't be read or copied before unlocking. */
.sim-price-val--locked {
  color: var(--text-3);
  letter-spacing: 0.14em;
  user-select: none;
}
.sim-price-lock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.sim-price-lock svg {
  width: 15px;
  height: 15px;
  stroke: var(--indigo);
}
/* Revealed (unblurred) price on step 4. */
.sim-price--open {
  border-color: rgba(52, 211, 153, 0.3);
  background: var(--green-soft);
}
.sim-price--open .sim-price-val {
  filter: none;
  user-select: auto;
}
.sim-price-note {
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-3);
}

.sim-summary {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.sim-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 13px 16px;
  background: var(--card);
  font-size: 14.5px;
}
.sim-sum-row span {
  color: var(--text-3);
  white-space: nowrap;
}
.sim-sum-row b {
  font-weight: 700;
  text-align: right;
}

.sim-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.sim-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  padding: 8px 4px;
  transition: color 0.16s ease;
}
.sim-back:hover {
  color: var(--text);
}
.sim-next {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  background: var(--indigo);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 13px 22px;
  border-radius: 12px;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.sim-next:hover {
  background: var(--indigo-hover);
  transform: translateY(-1px);
}
.sim-submit {
  margin-left: auto;
  width: auto;
  margin-top: 0;
}

.sim-success {
  display: none;
  text-align: center;
  padding: 44px 20px;
}
.sim-success.show {
  display: block;
  animation: simIn 0.35s ease;
}
.sim-success .ok-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: var(--green-soft);
  border: 1px solid rgba(52, 211, 153, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sim-success .ok-ico svg {
  width: 30px;
  height: 30px;
  stroke: var(--green);
}
.sim-success h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}
.sim-success p {
  font-size: 15.5px;
  color: var(--text-2);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nav {
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .nav-hide-sm {
    display: none;
  }
}

/* ---------- Simulator: revealed price (na verzending) ---------- */
.sim-reveal {
  margin-top: 26px;
  padding: 22px 16px;
  border-radius: 16px;
  background: var(--green-soft);
  border: 1px solid rgba(52, 211, 153, 0.3);
}
.sim-reveal-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.sim-reveal-val {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ---------- Render placeholders (vervang de .render-glyph door <img class="render-img" src="assets/renders/…"> ) ---------- */
.render {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(91, 82, 230, 0.1), transparent 60%),
    linear-gradient(160deg, #161d2b, #0e1420);
  overflow: hidden;
}
.render--portrait {
  aspect-ratio: 3 / 4;
}
.render--wide {
  aspect-ratio: 16 / 10;
}
.render-glyph {
  width: 30%;
  max-width: 110px;
  color: var(--text-3);
  opacity: 0.55;
}
.render-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-3);
  background: rgba(10, 14, 23, 0.55);
  border: 1px solid var(--border-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.render-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Split: visual naast content ---------- */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.split--rev .split-visual {
  order: 2;
}

/* ---------- Compacte feature-rijen ---------- */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feat-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feat-row .feat-ico {
  margin-bottom: 0;
  flex-shrink: 0;
}
.feat-row h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.feat-row p {
  font-size: 14.5px;
  color: var(--text-2);
}

/* ---------- Spec-pills ---------- */
.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.spec-pills .pill {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
}

/* ---------- Use-case render-tegels ---------- */
.use-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.use-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo-soft);
  color: var(--indigo);
}
.use-ico svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}
.use-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split--rev .split-visual {
    order: 0;
  }
}

/* ---------- Prose (privacy/legal pages) ---------- */
.prose {
  max-width: 760px;
}
.prose h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 34px 0 10px;
}
.prose p,
.prose li {
  font-size: 15.5px;
  color: var(--text-2);
  margin-bottom: 12px;
}
.prose ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.prose a {
  color: var(--indigo);
  font-weight: 600;
}
.prose .muted {
  font-size: 13.5px;
  color: var(--text-3);
}

/* ---------- Mobile polish ---------- */
@media (max-width: 640px) {
  .hero {
    padding: 48px 0 36px;
  }
  section.block {
    padding: 52px 0;
  }
  .sec-head {
    margin-bottom: 30px;
  }
  .wrap {
    padding: 0 18px;
  }
  .simulator {
    padding: 22px 20px;
  }
  .lead {
    padding: 34px 20px;
  }
  .stats {
    margin-top: 44px;
  }
  footer {
    padding: 30px 0;
  }
}
/* Very narrow phones: keep the stepper from overflowing the card. */
@media (max-width: 380px) {
  .sim-stepper {
    gap: 12px;
  }
  .sim-step-btn {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
  .sim-count {
    min-width: 78px;
  }
  .sim-count-val {
    font-size: 40px;
  }
  .sim-quick {
    gap: 8px;
  }
}

/* ---------- Hamburger / mobile nav ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border-soft);
  background: rgba(10, 14, 23, 0.98);
  backdrop-filter: blur(14px);
}
.nav-menu a {
  padding: 15px 20px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.nav-menu.open a {
  opacity: 1;
  transform: none;
}
.nav-menu.open a:nth-child(1) {
  transition-delay: 0.05s;
}
.nav-menu.open a:nth-child(2) {
  transition-delay: 0.1s;
}
.nav-menu.open a:nth-child(3) {
  transition-delay: 0.15s;
}
.nav-menu a:last-child {
  border-bottom: none;
  color: var(--indigo);
  font-weight: 600;
}

@media (max-width: 640px) {
  .nav .nav-link,
  .nav .bar-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  /* Rendered but collapsed so it can slide open smoothly. */
  .nav-menu {
    display: flex;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition:
      max-height 0.34s ease,
      opacity 0.24s ease;
  }
  .nav-menu.open {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
  }
  /* Bottom simulator wrapper: more room for the form. */
  .lead {
    padding: 28px 14px 20px;
  }
  /* Footer links 2 x 2 so nothing wraps awkwardly. */
  .foot-links {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 12px 30px;
  }
}

/* ---------- Cookie-consent banner (Storything, styled for this site) ----------
   Markup is injected by js/cookie-consent.js and wired by cookie_v1.js. The st-*
   and w-* classes come from the standard Webflow banner; the rules below restyle
   them to match this site's dark theme and indigo accent. */
.cookiesnl {
  position: relative;
  z-index: 9999;
}

/* Bottom bar */
.st-cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 99998;
  display: none; /* cookie_v1.js fades this in to flex when consent is needed */
  padding: 18px 24px;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  line-height: 1.5;
}
.st-banner-container {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}
.st-banner-text {
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.55;
}
.st-banner-buttons-wrapper {
  display: flex;
  flex: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Inline link inside the banner text + the "Voorkeuren" link */
.st-banner-text-link {
  color: var(--indigo);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.16s ease,
    color 0.16s ease;
}
.st-banner-text-link:hover {
  border-bottom-color: currentColor;
}
.st-banner-buttons-wrapper .st-open-prefs {
  color: var(--text-2);
  font-weight: 500;
  padding: 10px 6px;
}

/* Reject = ghost button; Accept/confirm = solid indigo. Declared after
   .st-banner-text-link so these win on elements that carry both classes. */
.st-btn-reject-all,
.st-btn-accept-all,
.st-btn-accept-some {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
}
.st-btn-reject-all {
  background: var(--card-2);
  border-color: var(--border);
  color: var(--text);
}
.st-btn-reject-all:hover {
  border-color: #2e3a4d;
}
.st-btn-accept-all,
.st-btn-accept-some {
  background: var(--indigo);
  color: #fff;
}
.st-btn-accept-all:hover,
.st-btn-accept-some:hover {
  background: var(--indigo-hover);
}

/* Preferences modal */
.st-cookie-options {
  position: fixed;
  inset: 0;
  z-index: 99997;
  display: none; /* cookie_v1.js fades this in to flex */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.st-prefs-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(6, 9, 20, 0.72);
  backdrop-filter: blur(4px);
}
.st-prefs-form {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 82vh;
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.st-prefs-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: var(--card-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition:
    color 0.16s ease,
    border-color 0.16s ease;
}
.st-prefs-close:hover {
  color: var(--text);
  border-color: #2e3a4d;
}
.st-prefs-close-icon {
  display: flex;
  width: 16px;
  height: 16px;
}
.st-prefs-close-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor; /* overrides the hard-coded dark fill in the markup */
}
.st-prefs-content {
  height: 100%;
  max-height: 82vh;
  padding: 32px;
  overflow: auto;
}
.st-prefs-title {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.st-prefs-text {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.55;
}
.st-prefs-space-small {
  margin-bottom: 12px;
}
.st-prefs-space-medium {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 16px 0 28px;
}
.st-prefs-option {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.st-prefs-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.st-prefs-label {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}
.st-prefs-buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

/* Toggle switch — the visual is driven both by cookie_v1.js's
   .w--redirected-checked class (button flows) and by the native :checked state
   via :has() (direct clicks), so the switch tracks live either way. */
.st-cookie-checkbox {
  position: relative;
  display: block;
  flex: none;
  width: 46px;
  height: 24px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.st-cookie-check {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--border);
  transition: background 0.2s ease;
}
.st-cookie-checklabel {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  font-size: 0;
  line-height: 0;
  transition: transform 0.22s ease;
}
.st-cookie-check.w--redirected-checked,
.st-cookie-checkbox:has(input:checked) .st-cookie-check {
  background: var(--indigo);
}
.st-cookie-check.w--redirected-checked ~ .st-cookie-checklabel,
.st-cookie-checkbox:has(input:checked) .st-cookie-checklabel {
  transform: translateX(22px);
}

.st-none {
  display: none !important;
}

@media (max-width: 767px) {
  .st-banner-container {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .st-banner-buttons-wrapper {
    margin-left: 0;
  }
  .st-prefs-content {
    padding: 24px 20px;
  }
}
