@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/jetbrains-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  --navy: #18236d;
  --navy-deep: #101748;
  --navy-soft: #263486;
  --cyan: #2bacd8;
  --cyan-dark: #187c9f;
  --cyan-pale: #e4f8fb;
  --ink: #171a2d;
  --muted: #686f82;
  --line: #e2e6ef;
  --soft: #f5f7fb;
  --white: #fff;
  --display: "Manrope", sans-serif;
  --body: "Inter", sans-serif;
  --wrap: 1360px;
  --shadow: 0 32px 80px rgba(17, 23, 78, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  margin-bottom: 20px;
  color: var(--navy);
  font-family: var(--display);
  letter-spacing: -.055em;
  line-height: 1.04;
}
h1 { font-size: clamp(3.6rem, 5.15vw, 5.85rem); }
h2 { font-size: clamp(2.45rem, 4.2vw, 4.65rem); }
h3 { font-size: 1.7rem; }
.wrap { width: min(var(--wrap), calc(100% - 72px)); margin: auto; }
.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 200;
  padding: 11px 16px;
  background: #fff;
  color: var(--navy);
}
.skip:focus { top: 20px; }

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--navy);
  background: rgba(251, 253, 255, .86);
  box-shadow: 0 8px 30px rgba(17, 23, 78, .035);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 27, 99, .1);
}
.logo-link {
  width: 145px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 23, 78, .06);
}
.logo-link img {
  width: 135px;
  height: 44px;
  object-fit: cover;
  object-position: center;
}
.nav { display: flex; gap: 36px; }
.nav a {
  position: relative;
  color: #4a506a;
  font-size: .9rem;
  font-weight: 650;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--cyan);
  transition: right .2s ease;
}
.nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.login-link { color: var(--navy); font-size: .9rem; font-weight: 750; }
.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 4px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}
.menu-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-only { display: none; }
.language-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 22px rgba(16,23,72,.05);
}
.language-switch a {
  min-width: 34px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #757b8e;
  font-size: .67rem;
  font-weight: 850;
  text-align: center;
}
.language-switch a.active {
  background: var(--navy);
  color: #fff;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--display);
  font-size: .92rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.nav a:focus-visible,
.login-link:focus-visible,
.language-switch a:focus-visible,
.menu-toggle:focus-visible,
.screen-expand:focus-visible,
.dialog-close:focus-visible,
.billing-toggle button:focus-visible,
.faq summary:focus-visible {
  outline: 3px solid rgba(43,172,216,.45);
  outline-offset: 3px;
}
.button-small { min-height: 46px; padding-inline: 19px; border-radius: 11px; }
.button-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 34px rgba(23, 27, 99, .2);
}
.button-primary:hover { box-shadow: 0 18px 42px rgba(23, 27, 99, .28); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.8); color: var(--navy); }
.button-sage { background: var(--cyan); color: var(--navy-deep); }
.button-navy { background: var(--navy); color: #fff; }
.button-light { background: #fff; color: var(--navy); }
.button-outline { border-color: rgba(255,255,255,.3); color: #fff; }
.play-dot {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan-pale);
  color: var(--cyan-dark);
  font-size: .64rem;
}

.hero {
  position: relative;
  min-height: 870px;
  overflow: hidden;
  padding: 148px 0 94px;
  background:
    radial-gradient(circle at 83% 20%, rgba(34, 174, 200, .18), transparent 26%),
    radial-gradient(circle at 52% 96%, rgba(42, 48, 132, .08), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f4f7fb 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: 110px;
  border: 1px solid rgba(43,172,216,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(43,172,216,.035), 0 0 0 140px rgba(43,172,216,.025);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 80px;
}
.softio-pill {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 30px;
  padding: 5px 12px 5px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 24px rgba(16,23,72,.05);
}
.softio-pill span { color: var(--muted); font-size: .66rem; font-weight: 650; }
.softio-pill img {
  width: 76px;
  height: 23px;
  object-fit: cover;
  object-position: center;
  margin-left: -5px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--cyan-dark);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow > span { width: 24px; height: 2px; background: currentColor; }
.eyebrow-light { color: #6bd1e2; }
.hero h1 { max-width: 760px; margin-bottom: 30px; color: var(--navy-deep); }
.hero h1 em {
  display: inline;
  color: var(--cyan-dark);
  font-style: normal;
  background: linear-gradient(95deg, var(--cyan-dark), var(--navy-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #5d6479;
  font-size: 1.17rem;
  line-height: 1.75;
}
.actions { display: flex; gap: 12px; margin-bottom: 45px; }
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.hero-points li { padding: 0 20px; border-right: 1px solid var(--line); }
.hero-points li:first-child { padding-left: 0; }
.hero-points li:last-child { border: 0; }
.hero-points strong, .hero-points span { display: block; }
.hero-points strong { color: var(--navy); font-family: var(--display); font-size: .96rem; }
.hero-points span { color: #858b9c; font-size: .72rem; line-height: 1.45; }

.hero-product { position: relative; padding: 34px 0; }
.hero-glow {
  position: absolute;
  inset: 0 -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,172,216,.23), transparent 65%);
  filter: blur(10px);
}
.real-shot {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(24,35,109,.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 42px 100px rgba(16,23,72,.22);
}
.hero-shot { aspect-ratio: 16/9; transform: none; }
.hero-shot img, .product-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}
.screenshot-label {
  position: absolute;
  top: 8px;
  right: 16px;
  z-index: 6;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--navy-deep);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(43,172,216,.22);
}
.screenshot-label.dark { top: 18px; right: 18px; background: var(--navy); color: #fff; }
.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(24,35,109,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 48px rgba(16,23,72,.16);
  backdrop-filter: blur(10px);
}
.float-card-top { top: -7px; left: -30px; }
.float-card-bottom { right: -26px; bottom: 2px; }
.float-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--cyan-pale);
  color: var(--cyan-dark);
  font-size: 1rem;
  font-weight: 900;
}
.float-icon.accent { background: var(--navy); color: #fff; }
.float-card strong, .float-card small { display: block; }
.float-card strong { color: var(--navy); font-size: .75rem; }
.float-card small { color: var(--muted); font-size: .62rem; }

.trust-strip { position: relative; z-index: 5; border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 28px 0; }
.trust-grid p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}
.trust-grid p:first-child { padding-left: 0; }
.trust-grid p:last-child { border: 0; }
.trust-grid i {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--cyan-pale);
  color: var(--cyan-dark);
  font-style: normal;
  font-size: .62rem;
  font-weight: 850;
}
.trust-grid strong { display: block; color: var(--navy); font-family: var(--display); font-size: .82rem; }

.section { padding: 126px 0; }
.intro { background: #fff; }
.intro-heading {
  max-width: 980px;
  margin-bottom: 58px;
}
.intro-heading h2 { margin: 0; }
.intro-heading h2 em { color: var(--cyan-dark); font-style: normal; }
.bento-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.bento-card {
  position: relative;
  min-height: 215px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.bento-card h3 { margin-bottom: 10px; }
.bento-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.bento-main {
  grid-row: 1 / 3;
  min-height: 450px;
  padding: 40px;
  background:
    radial-gradient(circle at 88% 12%, rgba(43,172,216,.22), transparent 30%),
    linear-gradient(145deg, #f7fbfc, #eef3f8);
}
.bento-main::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -100px;
  bottom: -110px;
  border: 34px solid rgba(43,172,216,.15);
  border-radius: 50%;
}
.bento-tag {
  display: inline-block;
  margin-bottom: 55px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  color: var(--cyan-dark);
  font-size: .66rem;
  font-weight: 800;
}
.bento-main > strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -.06em;
  line-height: 1;
}
.bento-main h3 { max-width: 480px; margin-top: 12px; font-size: 1.75rem; }
.bento-main p { max-width: 480px; }
.bento-search {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 38px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 15px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: #9297a7;
  font-size: .78rem;
  box-shadow: 0 15px 35px rgba(16,23,72,.08);
}
.bento-search b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--navy); color: #fff; }
.bento-cyan { background: var(--cyan); border-color: transparent; }
.bento-cyan h3, .bento-cyan p, .bento-cyan .bento-number { color: var(--navy-deep); }
.bento-dark { background: var(--navy); border-color: transparent; }
.bento-dark h3, .bento-dark .bento-number { color: #fff; }
.bento-dark p { color: rgba(255,255,255,.65); }
.bento-light { grid-column: 2 / 4; background: #fbfcff; }
.bento-number { display: block; margin-bottom: 54px; color: var(--cyan-dark); font-size: .7rem; font-weight: 850; }

.section-soft {
  background:
    linear-gradient(rgba(24,35,109,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,35,109,.025) 1px, transparent 1px),
    var(--soft);
  background-size: 80px 80px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 54px;
}
.section-heading > div { max-width: 840px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 390px; margin-bottom: 8px; color: var(--muted); }
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  margin-bottom: 26px;
  padding: 62px;
  border: 1px solid rgba(24,35,109,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 50px rgba(16,23,72,.05);
}
.feature-row.reverse { grid-template-columns: 1fr; }
.feature-row.reverse .feature-copy,
.feature-row.reverse .screen-slot { order: initial; }
.feature-copy { max-width: 860px; }
.feature-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 12px;
  background: var(--cyan-pale);
  color: var(--cyan-dark);
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 850;
}
.feature-copy h3 { font-size: clamp(1.8rem, 2.6vw, 2.8rem); }
.feature-copy > p { color: var(--muted); }
.feature-copy ul { margin: 25px 0 0; padding: 0; list-style: none; }
.feature-copy li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .82rem; }
.feature-copy li::before { content: "↗"; margin-right: 11px; color: var(--cyan-dark); font-weight: 900; }
.screen-slot {
  position: relative;
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid rgba(24,35,109,.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 25px 60px rgba(16,23,72,.12);
}
.feature-row .screen-slot { width: 100%; }
.screen-slot.raw-screen { aspect-ratio: 1.98 / 1; }
.raw-product-shot {
  height: auto;
  transform: translateY(-10.37%);
}
.raw-screen::after {
  content: "Demo · Beheerder";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 66.5%;
  width: 8.8%;
  height: 7.45%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #1e1d5d;
  font-size: clamp(.34rem, .55vw, .62rem);
  font-weight: 650;
  white-space: nowrap;
}
.raw-screen .screenshot-label {
  top: calc(7.45% + 10px);
}
.screen-expand {
  position: absolute;
  z-index: 7;
  right: 16px;
  bottom: 16px;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(12,16,63,.9);
  box-shadow: 0 10px 26px rgba(12,16,63,.2);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: .7rem;
  font-weight: 800;
}
.screen-expand:hover { background: var(--cyan-dark); }

.process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(43,172,216,.22), transparent 27%),
    var(--navy-deep);
  color: #fff;
}
.process::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -140px;
  bottom: -190px;
  border: 1px solid rgba(43,172,216,.24);
  border-radius: 50%;
}
.section-heading.light h2 { color: #fff; }
.section-heading.light > p { color: rgba(255,255,255,.58); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  list-style: none;
  backdrop-filter: blur(12px);
}
.steps li { min-height: 250px; padding: 32px; border-right: 1px solid rgba(255,255,255,.12); }
.steps li:last-child { border: 0; }
.steps span { color: var(--cyan); font-size: .66rem; font-weight: 850; }
.steps h3 { margin: 70px 0 10px; color: #fff; }
.steps p { margin: 0; color: rgba(255,255,255,.58); font-size: .84rem; }
.process-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 25px;
  color: rgba(255,255,255,.58);
}
.process-note span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}
.process-note p {
  max-width: 530px;
  margin: 0;
  font-size: .78rem;
}

.pricing { background: #fff; }
.pricing-head { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.pricing-head .eyebrow { justify-content: center; }
.pricing-head > p { color: var(--muted); }
.pricing-kicker {
  margin-bottom: 18px;
  color: var(--cyan-dark);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 850;
  letter-spacing: -.03em;
}
.billing-toggle {
  display: inline-flex;
  gap: 4px;
  margin-top: 14px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}
.billing-toggle button {
  padding: 9px 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--display);
  font-size: .73rem;
  font-weight: 800;
}
.billing-toggle button.active { background: var(--navy); color: #fff; }
.billing-toggle button strong { color: var(--cyan-dark); }
.billing-toggle button.active strong { color: #6bd1e2; }
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1060px; margin: auto; }
.plan-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(16,23,72,.07);
}
.plan-card.featured {
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0, rgba(43,172,216,.3), transparent 26%),
    var(--navy-deep);
  color: #fff;
}
.plan-card.featured h3, .plan-card.featured .price, .plan-card.featured .plan-for { color: #fff; }
.plan-card.featured .plan-top > p:last-child, .plan-card.featured .annual-total { color: rgba(255,255,255,.62); }
.plan-card.featured li { border-color: rgba(255,255,255,.13); }
.popular {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--navy-deep);
  font-size: .65rem;
  font-weight: 850;
  text-transform: uppercase;
}
.plan-for { color: var(--cyan-dark); font-size: .67rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.plan-top { min-height: 250px; }
.plan-top h3 { font-size: 2.1rem; }
.price { display: flex; align-items: baseline; gap: 4px; margin: 30px 0 10px; color: var(--navy); font-family: var(--display); font-size: 3.6rem; font-weight: 850; line-height: 1; }
.price > span { font-size: 1rem; }
.price b { font: inherit; }
.price small { color: var(--muted); font-family: var(--body); font-size: .72rem; font-weight: 500; }
.featured .price small { color: rgba(255,255,255,.58); }
.annual-total { margin-bottom: 16px; color: var(--cyan-dark); font-size: .72rem; font-weight: 750; }
.plan-top > p:last-child { color: var(--muted); font-size: .88rem; }
.plan-card .button { width: 100%; }
.plan-card.featured .button { background: var(--cyan); color: var(--navy-deep); }
.plan-card ul { margin: 28px 0 0; padding: 0; list-style: none; }
.plan-card li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .82rem; }
.plan-card li b { margin-right: 9px; color: var(--cyan-dark); }
.featured li b { color: var(--cyan); }
.compare {
  max-width: 1060px;
  margin: 26px auto 0;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--soft);
}
.compare h3 { font-size: 1.25rem; }
.compare-scroll { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.compare-table th, .compare-table td { padding: 13px 10px; border-bottom: 1px solid var(--line); text-align: center; }
.compare-table th:first-child { width: 50%; text-align: left; }
.compare-table thead th { color: var(--muted); font-size: .65rem; text-transform: uppercase; }
.compare-table tbody th { color: var(--ink); font-weight: 500; }
.compare-table td { color: var(--navy); font-weight: 800; }
.compare-hint { display: none; margin: 14px 0 0; color: var(--muted); font-size: .72rem; }

.order-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(43,172,216,.18), transparent 27%),
    var(--navy-deep);
  color: #fff;
}
.order-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 90px; }
.order-grid h2 { color: #fff; }
.order-grid > div > p:last-of-type { color: rgba(255,255,255,.6); font-size: 1.04rem; }
.order-benefits { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0 0; padding: 0; list-style: none; }
.order-benefits li { padding: 9px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.06); color: #bfeef5; font-size: .72rem; font-weight: 750; }
.order-form {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background: rgba(255,255,255,.98);
  color: var(--ink);
  box-shadow: 0 30px 75px rgba(0,0,0,.22);
}
.order-form fieldset { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 0 22px; padding: 0; border: 0; }
.order-form legend { margin-bottom: 8px; color: var(--navy); font-family: var(--display); font-size: .78rem; font-weight: 850; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: block; padding: 14px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
.choice strong, .choice small { display: block; }
.choice strong { color: var(--navy); font-family: var(--display); font-size: .8rem; }
.choice small { color: var(--muted); }
.choice input:checked + span { border-color: var(--cyan); background: var(--cyan-pale); box-shadow: 0 0 0 2px rgba(43,172,216,.12); }
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-fields label, .demo-form label { display: flex; flex-direction: column; gap: 6px; color: var(--navy); font-size: .69rem; font-weight: 750; }
.form-fields .wide { grid-column: 1 / -1; }
.form-fields input, .demo-form input { height: 49px; padding: 0 13px; border: 1px solid var(--line); border-radius: 10px; background: #fff; outline: none; }
.form-fields input:focus, .demo-form input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(43,172,216,.1); }
.order-form .consent { display: flex; align-items: flex-start; gap: 8px; margin: 18px 0; color: var(--muted); font-size: .72rem; }
.consent a { color: var(--navy); font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.order-form .button { width: 100%; }
.form-note { display: block; margin-top: 10px; text-align: center; color: var(--muted); }
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.order-summary {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  border: 1px solid rgba(43,172,216,.28);
  border-radius: 14px;
  background: var(--cyan-pale);
}
.order-summary > span {
  grid-column: 1 / -1;
  color: var(--cyan-dark);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.order-summary > strong { color: var(--navy); font-family: var(--display); font-size: 1.05rem; }
.order-summary p { margin: 0; text-align: right; }
.order-summary p b, .order-summary p small { display: block; }
.order-summary p b { color: var(--navy); }
.order-summary p small { color: var(--muted); font-size: .66rem; }
.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--cyan-dark);
  font-size: .76rem;
  font-weight: 750;
  text-align: center;
}
.form-status.error { color: #a93838; }

.security-quiet { padding: 72px 0; background: var(--cyan-pale); }
.security-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.security-quiet h2 { margin: 0; font-size: clamp(1.9rem, 3vw, 3.1rem); }
.security-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.security-chips span { padding: 10px 13px; border: 1px solid rgba(24,35,109,.11); border-radius: 999px; background: rgba(255,255,255,.7); color: #48636b; font-size: .72rem; font-weight: 750; }

.demo { background: #fff; }
.demo-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
  padding: 70px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 0, rgba(43,172,216,.28), transparent 25%),
    var(--soft);
}
.demo-grid h2 { max-width: 660px; }
.demo-grid > div > p:last-child { color: var(--muted); }
.demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(16,23,72,.08);
}
.demo-form .consent { grid-column: 1 / -1; display: flex; flex-direction: row; align-items: flex-start; color: var(--muted); font-weight: 500; }
.demo-form .consent input { width: 17px; height: 17px; margin-top: 3px; }
.demo-form button, .demo-form > small, .demo-form .form-status { grid-column: 1 / -1; }
.demo-form > small { color: var(--muted); text-align: center; }

.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { padding: 23px 0; cursor: pointer; color: var(--navy); font-family: var(--display); font-weight: 800; }
.faq details p { padding-right: 40px; color: var(--muted); }

.footer { padding: 55px 0; background: #080b32; color: rgba(255,255,255,.55); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img {
  width: 132px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  background: #fff;
}
.footer-brand small { color: rgba(255,255,255,.62); }
.footer p { margin: 0; }
.footer-inner > div:last-child { display: flex; gap: 25px; }
.footer a { color: rgba(255,255,255,.74); font-size: .82rem; }
.screenshot-dialog {
  width: min(94vw, 1500px);
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 40px 120px rgba(5,8,42,.45);
}
.screenshot-dialog::backdrop {
  background: rgba(7,10,42,.78);
  backdrop-filter: blur(7px);
}
.dialog-bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 22px;
  color: #fff;
  background: var(--navy-deep);
}
.dialog-bar strong { font-family: var(--display); }
.dialog-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
  cursor: pointer;
  font-size: 1.5rem;
}
.screenshot-dialog > img {
  width: 100%;
  max-height: calc(92vh - 58px);
  object-fit: contain;
  background: #f4f6fa;
}

@media (max-width: 1100px) {
  .header-inner { position: relative; }
  .menu-toggle { display: grid; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 70px rgba(12,16,63,.18);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; border-radius: 10px; }
  .nav a:hover { background: var(--soft); }
  .nav a::after { display: none; }
  .nav .mobile-only { display: none; }
  .hero { min-height: auto; }
  .hero-grid, .intro-heading, .security-grid, .faq-grid, .order-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-product { margin-top: 20px; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-main { grid-column: 1 / 3; grid-row: auto; }
  .bento-light { grid-column: 1 / 3; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-copy, .feature-row.reverse .screen-slot { order: initial; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-grid p:nth-child(2) { border-right: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li:nth-child(2) { border-right: 0; }
  .steps li { border-bottom: 1px solid rgba(255,255,255,.12); }
  .demo-grid { grid-template-columns: 1fr; gap: 45px; padding: 48px; }
}

@media (max-width: 700px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(3.1rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2.25rem, 10vw, 3rem); }
  .wrap { width: min(100% - 38px, var(--wrap)); }
  .header-inner { height: 78px; }
  .header-actions { margin-left: auto; gap: 8px; }
  .header-actions .login-link, .header-actions .button { display: none; }
  .nav .mobile-only { display: block; }
  .nav .mobile-cta { margin-top: 6px; color: #fff; background: var(--navy); text-align: center; }
  .logo-link { width: 133px; height: 42px; }
  .hero { padding: 120px 0 78px; }
  .hero-grid { gap: 42px; }
  .softio-pill { margin-bottom: 24px; }
  .actions { flex-direction: column; }
  .hero-points { grid-template-columns: 1fr; gap: 12px; }
  .hero-points li { padding: 0; border: 0; }
  .hero-product { padding: 20px 0 35px; }
  .hero-shot { aspect-ratio: 16/10; transform: none; }
  .float-card-top { top: -10px; left: -8px; }
  .float-card-bottom { right: -8px; bottom: 2px; }
  .float-card { padding: 10px 11px; }
  .float-icon { width: 31px; height: 31px; }
  .screenshot-label { display: none; }
  .trust-grid { grid-template-columns: 1fr; gap: 0; }
  .trust-grid p { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 80px 0; }
  .intro-heading { gap: 32px; margin-bottom: 38px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-main, .bento-light { grid-column: 1; }
  .bento-main { min-height: 440px; padding: 28px; }
  .bento-search { left: 28px; right: 28px; }
  .bento-card { border-radius: 18px; }
  .feature-row { padding: 27px 22px; border-radius: 20px; }
  .screen-slot { aspect-ratio: 16/10; }
  .product-shot { object-position: top center; }
  .screen-expand { right: 10px; bottom: 10px; min-height: 36px; padding-inline: 12px; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 185px; border-right: 0; }
  .steps h3 { margin-top: 38px; }
  .plans { grid-template-columns: 1fr; }
  .plan-card { padding: 32px 23px; }
  .compare { padding: 25px 18px; }
  .compare-table { min-width: 560px; }
  .compare-hint { display: block; }
  .billing-toggle { display: flex; }
  .billing-toggle button { flex: 1; }
  .price { font-size: 3.1rem; }
  .order-form { padding: 24px 18px; }
  .order-summary { grid-template-columns: 1fr; }
  .order-summary p { text-align: left; }
  .order-form fieldset, .form-fields, .demo-form { grid-template-columns: 1fr; }
  .form-fields .wide, .demo-form label, .demo-form button, .demo-form > small { grid-column: 1; }
  .demo-grid { padding: 32px 20px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner > div:last-child { flex-wrap: wrap; }
  .screenshot-dialog { width: calc(100vw - 18px); max-height: 88vh; overflow: auto; border-radius: 14px; }
  .dialog-bar { position: sticky; top: 0; z-index: 2; min-height: 52px; }
  .screenshot-dialog > img { width: 950px; max-width: none; max-height: none; touch-action: pinch-zoom; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .nav a::after { transition: none; }
}

body.admin-bar .header { top: 32px; }
.legal-page { min-height: 70vh; padding-top: 165px; }
.legal-content { max-width: 880px; }
.legal-content h1 { margin-bottom: 28px; font-size: clamp(2.6rem, 6vw, 4.4rem); }
.legal-content h2 { margin: 42px 0 14px; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.8; }

@media (max-width: 782px) {
  body.admin-bar .header { top: 46px; }
}

/* Editorial conversion redesign */
:root {
  --wrap: 1240px;
  --shadow: 0 28px 70px rgba(17, 23, 78, .12);
}

.header-inner { height: 82px; }
.logo-link { width: 140px; height: 44px; }
.logo-link img { width: 132px; height: 42px; }
.nav { gap: 30px; }
.header-actions { gap: 16px; }

.hero {
  min-height: 0;
  padding: 126px 0 64px;
}
.hero-grid {
  grid-template-columns: .92fr 1.08fr;
  gap: 56px;
}
.softio-pill { margin-bottom: 22px; }
.hero .eyebrow { margin-bottom: 16px; }
.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 4.7vw, 4.85rem);
}
.hero-lead {
  max-width: 610px;
  margin-bottom: 28px;
  font-size: 1.08rem;
  line-height: 1.65;
}
.actions { margin-bottom: 28px; }
.play-dot-dark {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.hero-points { padding-top: 18px; }
.hero-points li { padding-inline: 15px; }
.hero-product { padding: 22px 0; }
.hero-shot { border-radius: 16px; }
.float-card-top { top: -12px; left: -22px; }
.float-card-bottom { right: -18px; bottom: -6px; }

.trust-grid { padding: 22px 0; }
.trust-grid p { padding-inline: 22px; }

.section { padding: 100px 0; }
.intro-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 48px;
}
.intro-heading h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.25rem);
}
.intro-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.bento-grid {
  grid-template-columns: 1.08fr .92fr .92fr;
  gap: 14px;
}
.bento-card {
  min-height: 185px;
  padding: 27px;
}
.bento-main {
  min-height: 390px;
  padding: 34px;
}
.bento-tag { margin-bottom: 38px; }
.bento-main > strong { font-size: clamp(3.2rem, 5vw, 4.7rem); }
.bento-main h3 { font-size: 1.62rem; }
.bento-search {
  left: 34px;
  right: 34px;
  bottom: 30px;
}
.bento-number { margin-bottom: 36px; }
.bento-card h3 { font-size: 1.45rem; }

.section-heading {
  align-items: end;
  margin-bottom: 42px;
}
.section-heading h2 {
  font-size: clamp(2.55rem, 3.9vw, 4.15rem);
}
.section-heading > p {
  max-width: 410px;
  margin: 0 0 5px;
  line-height: 1.75;
}
.feature-row,
.feature-row.reverse {
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 52px;
  margin-bottom: 22px;
  padding: 44px;
}
.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .screen-slot { order: 1; }
.feature-copy { max-width: none; }
.feature-number {
  width: 38px;
  height: 38px;
  margin-bottom: 17px;
}
.feature-kicker {
  margin: -48px 0 18px 52px;
  color: var(--cyan-dark) !important;
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.feature-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 2.35vw, 2.55rem);
}
.feature-copy > p { line-height: 1.72; }
.feature-copy ul { margin-top: 18px; }
.feature-copy li {
  padding: 8px 0;
  line-height: 1.5;
}
.feature-outcome {
  margin: 20px 0 0;
  padding: 15px 17px;
  border-left: 3px solid var(--cyan);
  border-radius: 0 10px 10px 0;
  background: var(--cyan-pale);
  color: #405764 !important;
  font-size: .78rem;
}
.feature-outcome strong { color: var(--navy); }
.screen-slot { border-radius: 15px; }

.process { padding-block: 92px; }
.process .section-heading { margin-bottom: 36px; }
.steps-three { grid-template-columns: repeat(3, 1fr); }
.steps-three li { min-height: 220px; }
.steps-three h3 { margin-top: 56px; }
.process-note { justify-content: flex-start; }

.pricing { padding-block: 100px; }
.pricing-head {
  max-width: 930px;
  margin-bottom: 48px;
}
.pricing-head h2 {
  font-size: clamp(2.5rem, 3.8vw, 4rem);
}
.plans { max-width: 1100px; }
.plan-card { padding: 36px; }
.plan-top { min-height: 245px; }
.plan-for { max-width: 390px; line-height: 1.5; }
.compare { max-width: 1100px; }

.order-section { padding-block: 100px; }
.order-grid {
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
}
.order-grid h2 { font-size: clamp(2.6rem, 4vw, 4.1rem); }
.security-quiet { padding: 58px 0; }
.security-grid { gap: 64px; }

.demo { padding-block: 92px; }
.demo-grid {
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  padding: 58px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0, rgba(43,172,216,.24), transparent 24%),
    linear-gradient(135deg, #f8fbfd, #f2f5fa);
}
.demo-grid h2 { font-size: clamp(2.55rem, 3.7vw, 4rem); }
.faq { padding-top: 88px; }
.faq-grid { gap: 80px; }
.faq-grid h2 { font-size: clamp(2.45rem, 3.7vw, 3.85rem); }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .intro-heading { grid-template-columns: 1fr; gap: 28px; }
  .intro-heading > p { max-width: 760px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-main { grid-column: 1 / 3; grid-row: auto; }
  .bento-light { grid-column: 1 / 3; }
  .feature-row,
  .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-copy,
  .feature-row.reverse .screen-slot { order: initial; }
  .steps-three { grid-template-columns: repeat(3, 1fr); }
  .order-grid { grid-template-columns: 1fr; }
  .demo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  h1 { font-size: clamp(2.8rem, 12vw, 3.55rem); }
  .header-inner { height: 76px; }
  .hero { padding: 108px 0 58px; }
  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.75rem, 12.5vw, 3.6rem);
    line-height: .99;
  }
  .hero-lead { font-size: 1rem; line-height: 1.7; }
  .hero-product { margin-top: 5px; }
  .float-card-top { left: -5px; }
  .float-card-bottom { right: -5px; }
  .section { padding: 72px 0; }
  .intro-heading { margin-bottom: 34px; }
  .intro-heading h2,
  .section-heading h2,
  .pricing-head h2,
  .order-grid h2,
  .demo-grid h2,
  .faq-grid h2 {
    font-size: clamp(2.15rem, 10vw, 2.9rem);
  }
  .intro-heading > p { font-size: .95rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-main,
  .bento-light { grid-column: 1; }
  .bento-main { min-height: 420px; padding: 26px; }
  .bento-card { min-height: 175px; padding: 25px; }
  .bento-search { left: 26px; right: 26px; }
  .feature-row,
  .feature-row.reverse {
    gap: 28px;
    padding: 25px 20px;
  }
  .feature-kicker { margin-left: 50px; }
  .feature-copy h3 { font-size: 2rem; }
  .feature-outcome { font-size: .76rem; }
  .steps-three { grid-template-columns: 1fr; }
  .steps-three li { min-height: 175px; }
  .steps-three h3 { margin-top: 34px; }
  .pricing,
  .order-section,
  .demo { padding-block: 72px; }
  .plan-top { min-height: auto; }
  .demo-grid { padding: 28px 18px; }
  .faq-grid { gap: 36px; }
}

/* Pricing system 1.1.1 */
.pricing-head .vat-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(43,172,216,.22);
  border-radius: 999px;
  color: var(--cyan-dark);
  background: var(--cyan-pale);
  font-size: .74rem;
  font-weight: 800;
}
.pricing .plans {
  align-items: stretch;
  gap: 24px;
  max-width: 1180px;
}
.pricing .plan-card {
  display: flex;
  flex-direction: column;
  padding: 38px;
}
.pricing .plan-top {
  min-height: 172px;
}
.pricing .plan-top h3 {
  margin: 8px 0 16px;
}
.pricing .plan-top > p:last-child {
  max-width: 500px;
  margin: 0;
  line-height: 1.65;
}
.plan-rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 8px 0 18px;
}
.plan-rates > div {
  min-height: 148px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}
.plan-rates > div > span {
  display: block;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.plan-rates p {
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-height: 48px;
  margin: 13px 0 8px;
  color: var(--navy);
  font-family: var(--display);
}
.plan-rates p sup {
  font-size: .95rem;
  font-weight: 800;
}
.plan-rates p strong {
  font-size: 2.05rem;
  letter-spacing: -.05em;
  line-height: 1;
}
.plan-rates p small {
  color: var(--muted);
  font-family: var(--body);
  font-size: .67rem;
}
.plan-rates em {
  display: block;
  color: var(--muted);
  font-size: .67rem;
  font-style: normal;
  line-height: 1.45;
}
.plan-rates .annual-rate {
  border-color: rgba(43,172,216,.35);
  background: var(--cyan-pale);
}
.plan-rates .annual-rate em {
  color: var(--cyan-dark);
  font-weight: 750;
}
.featured .plan-rates > div {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.07);
}
.featured .plan-rates > div > span,
.featured .plan-rates p small,
.featured .plan-rates em {
  color: rgba(255,255,255,.62);
}
.featured .plan-rates p { color: #fff; }
.featured .plan-rates .annual-rate {
  border-color: rgba(98,203,221,.45);
  background: rgba(43,172,216,.15);
}
.featured .plan-rates .annual-rate em { color: #9ae4ef; }
.included-title {
  margin: 30px 0 4px;
  color: var(--navy);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.featured .included-title { color: #fff; }
.pricing .plan-card ul {
  margin-top: 10px;
}
.pricing .plan-card li {
  line-height: 1.45;
}
.subsection-heading {
  max-width: 800px;
  margin-bottom: 34px;
}
.subsection-heading h3 {
  margin: 10px 0 14px;
  font-size: clamp(2.2rem, 3.6vw, 3.65rem);
}
.subsection-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}
.subsection-heading.compact {
  margin-bottom: 25px;
}
.subsection-heading.compact h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.onboarding-block,
.pricing-overview {
  max-width: 1180px;
  margin: 92px auto 0;
}
.onboarding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.onboarding-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f8fafc);
  box-shadow: 0 20px 50px rgba(16,23,72,.06);
}
.onboarding-card.onboarding-pro {
  border-color: rgba(43,172,216,.25);
  background: linear-gradient(145deg, #f9feff, #eef9fb);
}
.onboarding-card-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 20px;
  margin-bottom: 20px;
}
.onboarding-card-head > div {
  grid-row: 1 / 3;
}
.onboarding-card-head span {
  color: var(--cyan-dark);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.onboarding-card-head h4 {
  margin: 6px 0 0;
  font-size: 1.35rem;
}
.onboarding-card-head > strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
}
.onboarding-card-head > small {
  color: var(--muted);
  font-size: .66rem;
  text-align: right;
}
.onboarding-card > p {
  color: var(--muted);
  line-height: 1.65;
}
.onboarding-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.onboarding-card li {
  position: relative;
  padding: 10px 0 10px 25px;
  border-top: 1px solid var(--line);
  color: #30364e;
  font-size: .79rem;
  line-height: 1.45;
}
.onboarding-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan-dark);
  font-weight: 900;
}
.launch-offer {
  position: relative;
  max-width: 1180px;
  margin: 92px auto 0;
  padding: 44px;
  overflow: hidden;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(43,172,216,.35), transparent 26%),
    var(--navy-deep);
  box-shadow: 0 30px 70px rgba(16,23,72,.18);
}
.launch-badge {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy-deep);
  background: var(--cyan);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.launch-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: end;
}
.launch-grid > div:first-child > p:first-child {
  margin: 0 0 8px;
  color: #92dce8;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.launch-grid h3 {
  max-width: 680px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 4rem);
}
.launch-grid > div:first-child > p:last-child {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.65);
}
.launch-price {
  padding: 25px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}
.launch-price span,
.launch-price small {
  display: block;
  color: rgba(255,255,255,.62);
}
.launch-price span {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}
.launch-price strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: 2.6rem;
}
.launch-price small { font-size: .72rem; }
.launch-price .button {
  width: 100%;
  margin-top: 18px;
  background: var(--cyan);
  color: var(--navy-deep);
}
.launch-includes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  list-style: none;
  background: rgba(255,255,255,.12);
}
.launch-includes li {
  padding: 16px;
  color: rgba(255,255,255,.78);
  background: var(--navy-deep);
  font-size: .72rem;
  line-height: 1.45;
}
.launch-includes li::before {
  content: "✓";
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-weight: 900;
}
.launch-terms {
  margin: 22px 0 0;
  color: rgba(255,255,255,.45);
  font-size: .68rem;
  line-height: 1.65;
}
.pricing-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pricing-tables > * {
  min-width: 0;
}
.pricing-tables .compare {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 27px;
  background: #f8fafc;
}
.pricing-tables .compare-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}
.pricing-tables .compare h4 {
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.pricing-tables .compare-table th:first-child {
  width: 34%;
}
.pricing-tables .compare-table th,
.pricing-tables .compare-table td {
  padding-inline: 7px;
}
.pricing-tables .promo-row th,
.pricing-tables .promo-row td {
  color: var(--cyan-dark);
  background: rgba(43,172,216,.06);
}
.pricing-fineprint {
  margin: 22px 0 0;
  padding: 22px 25px;
  border-left: 3px solid var(--cyan);
  color: var(--muted);
  background: var(--soft);
  font-size: .75rem;
  line-height: 1.7;
}
.pricing-fineprint strong { color: var(--navy); }
.order-summary p small[data-summary-onboarding] {
  margin-top: 4px;
  color: var(--cyan-dark);
  font-weight: 750;
}

@media (max-width: 1100px) {
  .launch-grid { grid-template-columns: 1fr; gap: 32px; }
  .launch-price { max-width: 430px; }
  .launch-includes { grid-template-columns: repeat(3, 1fr); }
  .pricing-tables { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .pricing .plans,
  .onboarding-grid {
    grid-template-columns: 1fr;
  }
}

/* Conversie- en leesbaarheidsupdate. */
:root { --muted: #596174; }
body { font-size: 17px; }

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.15rem, 4.35vw, 4.75rem);
  line-height: 1.01;
}
.hero-lead {
  max-width: 640px;
  font-size: 1.06rem;
  line-height: 1.72;
}
.hero-points span { font-size: .76rem; }
.trust-grid p { font-size: .82rem; line-height: 1.48; }

.intro-heading h2 { font-size: clamp(2.55rem, 3.8vw, 4rem); }
.intro-heading > p { font-size: 1.05rem; }

.feature-row,
.feature-row.reverse {
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 54px;
}
.feature-row.reverse .feature-copy,
.feature-row.reverse .screen-slot { order: initial; }
.feature-copy {
  max-width: 980px;
}
.feature-copy > p {
  max-width: 850px;
  font-size: 1rem;
}
.feature-copy ul { max-width: 900px; }
.feature-copy li { font-size: .9rem; }
.feature-outcome {
  max-width: 900px;
  font-size: .86rem;
}
.screen-slot,
.screen-slot.raw-screen {
  width: 100%;
  aspect-ratio: 1672 / 941;
  background: #fff;
}
.product-shot,
.raw-product-shot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transform: none;
}
.raw-screen::after { display: none; }
.raw-screen .screenshot-label { top: 16px; }

.steps-four { grid-template-columns: repeat(4, 1fr); }
.steps-four li {
  min-height: 245px;
  padding: 28px;
}
.steps-four h3 {
  margin-top: 42px;
  font-size: 1.25rem;
}
.steps-four p {
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
  line-height: 1.65;
}

.pricing-head > p { font-size: 1rem; line-height: 1.72; }
.pricing .plan-card li { font-size: .86rem; }
.onboarding-options article > p,
.onboarding-options summary { font-size: .78rem; }

.order-form label,
.demo-form label { font-size: .8rem; }
.order-form input,
.demo-form input { font-size: .94rem; }
.form-note,
.demo-form > small { font-size: .74rem; }

@media (max-width: 980px) {
  .feature-row,
  .feature-row.reverse { padding: 38px; }
  .steps-four { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .hero h1 { font-size: clamp(2.72rem, 12vw, 3.85rem); }
  .hero-lead { font-size: 1rem; }
  .feature-row,
  .feature-row.reverse {
    gap: 28px;
    padding: 26px 20px;
  }
  .screen-slot,
  .screen-slot.raw-screen { border-radius: 12px; }
  .steps-four { grid-template-columns: 1fr; }
}

/* Rustigere verkooplay-out: gebaseerd op de eerdere lichte VEMIO-richting. */
.hero h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 4.5vw, 5.05rem);
}
.hero-lead {
  max-width: 630px;
  font-size: 1.04rem;
  line-height: 1.76;
}

@media (max-width: 680px) {
  .hero h1 { font-size: clamp(2.8rem, 12.5vw, 4rem); }
  .hero-lead { font-size: .97rem; }
}

@media (max-width: 700px) {
  .pricing .plan-card { padding: 28px 21px; }
  .pricing .plan-top { min-height: 0; }
  .plan-rates { grid-template-columns: 1fr; }
  .plan-rates > div { min-height: 0; }
  .onboarding-block,
  .pricing-overview,
  .launch-offer { margin-top: 68px; }
  .onboarding-card { padding: 26px 21px; }
  .onboarding-card-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .onboarding-card-head > div { grid-row: auto; }
  .onboarding-card-head > strong { margin-top: 12px; }
  .onboarding-card-head > small { text-align: left; }
  .launch-offer { padding: 30px 21px; border-radius: 20px; }
  .launch-grid h3 { font-size: 2.4rem; }
  .launch-price { padding: 20px; }
  .launch-includes { grid-template-columns: 1fr; }
  .pricing-tables .compare { padding: 22px 16px; }
  .pricing-tables .compare-table { min-width: 620px; }
  .pricing-fineprint { padding: 19px; }
}

/* Focused pricing layout 1.1.2 */
.pricing-focused .pricing-head {
  max-width: 880px;
  margin-bottom: 44px;
}
.pricing-focused .pricing-head h2 {
  font-size: clamp(2.5rem, 3.8vw, 3.9rem);
}
.pricing-tax {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: .69rem;
}
.pricing-focused .plans {
  max-width: 1080px;
  gap: 20px;
}
.pricing-focused .plan-card {
  padding: 36px;
}
.pricing-focused .plan-top {
  min-height: 285px;
}
.pricing-focused .plan-top h3 {
  margin-bottom: 0;
}
.pricing-focused .price {
  margin: 25px 0 9px;
}
.pricing-focused .annual-total {
  min-height: 20px;
  margin-bottom: 19px;
}
.pricing-focused .plan-card ul {
  margin-top: 24px;
}
.pricing-focused .plan-card li {
  padding-block: 11px;
}
.unique-value {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1080px;
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
  gap: 1px;
}
.unique-value p {
  min-height: 160px;
  margin: 0;
  padding: 24px;
  background: #f8fafc;
}
.unique-value span,
.unique-value strong,
.unique-value small {
  display: block;
}
.unique-value span {
  margin-bottom: 27px;
  color: var(--cyan-dark);
  font-size: .65rem;
  font-weight: 900;
}
.unique-value strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: .9rem;
}
.unique-value small {
  margin-top: 7px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.5;
}
.onboarding-compact {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 50px;
  max-width: 1080px;
  margin: 72px auto 0;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.onboarding-intro h3 {
  margin: 13px 0;
  font-size: clamp(2rem, 3vw, 3rem);
}
.onboarding-intro > p:last-child {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.7;
}
.onboarding-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.onboarding-options article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.onboarding-options article > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.onboarding-options article > div > span {
  color: var(--cyan-dark);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.onboarding-options article > div > strong {
  flex: 0 0 auto;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.15rem;
}
.onboarding-options article > div > strong small {
  display: block;
  color: var(--muted);
  font-family: var(--body);
  font-size: .58rem;
  font-weight: 500;
  text-align: right;
}
.onboarding-options article > p {
  min-height: 68px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.6;
}
.onboarding-options details {
  margin-top: 15px;
  border-top: 1px solid var(--line);
}
.onboarding-options summary {
  padding: 15px 0 0;
  color: var(--navy);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 800;
}
.onboarding-options ul {
  margin: 13px 0 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.65;
}
.compact-offer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  max-width: 1080px;
  margin-top: 46px;
  padding: 30px 34px;
  border-radius: 20px;
}
.compact-offer > div > span {
  color: var(--cyan);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.compact-offer h3 {
  margin: 7px 0 8px;
  color: #fff;
  font-size: clamp(1.65rem, 2.6vw, 2.5rem);
}
.compact-offer p {
  margin: 0;
  color: rgba(255,255,255,.68);
}
.compact-offer small {
  display: block;
  margin-top: 11px;
  color: rgba(255,255,255,.42);
  font-size: .63rem;
}
.compact-offer > .button {
  min-width: 230px;
  background: var(--cyan);
  color: var(--navy-deep);
}

@media (max-width: 900px) {
  .unique-value { grid-template-columns: 1fr 1fr; }
  .onboarding-compact { grid-template-columns: 1fr; gap: 28px; }
  .compact-offer { grid-template-columns: 1fr; gap: 24px; }
  .compact-offer > .button { width: 100%; }
}

@media (max-width: 700px) {
  .pricing-focused .plan-top { min-height: 0; }
  .hero-points { display: none; }
  .unique-value { grid-template-columns: 1fr; }
  .unique-value p {
    min-height: 0;
    padding: 20px;
  }
  .unique-value span { margin-bottom: 12px; }
  .onboarding-compact {
    margin-top: 54px;
    padding-top: 48px;
  }
  .onboarding-options { grid-template-columns: 1fr; }
  .onboarding-options article > p { min-height: 0; }
  .compact-offer {
    margin-top: 32px;
    padding: 26px 21px;
  }
}

/* Sterkere sectielabels en beter leesbare Softio-vermelding. */
.eyebrow {
  gap: 15px;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .13em;
}
.eyebrow > span {
  width: 42px;
  height: 3px;
  flex: 0 0 42px;
  border-radius: 999px;
}
.softio-pill {
  gap: 6px;
}
.softio-pill span {
  color: #3f4659;
  font-size: .7rem;
  font-weight: 750;
  white-space: nowrap;
}
.softio-pill img {
  margin-left: 0;
}

@media (max-width: 700px) {
  .eyebrow {
    gap: 12px;
    font-size: .76rem;
    letter-spacing: .12em;
  }
  .eyebrow > span {
    width: 34px;
    flex-basis: 34px;
  }
}

/* Leesbare kaartopbouw en grotere functionele subtitels. */
.bento-main {
  display: flex;
  flex-direction: column;
}
.bento-search {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  margin-top: 28px;
}
.bento-tag,
.feature-kicker,
.plan-for,
.onboarding-options article > div > span,
.compact-offer > div > span {
  font-size: .78rem;
  line-height: 1.45;
}
.bento-tag {
  align-self: flex-start;
}
.bento-number,
.popular,
.screenshot-label {
  font-size: .72rem;
}
.onboarding-options article > div > strong small {
  font-size: .68rem;
}
.onboarding-options summary {
  font-size: .8rem;
}

@media (max-width: 700px) {
  .bento-search {
    left: auto;
    right: auto;
    margin-top: 24px;
  }
  .bento-tag,
  .feature-kicker,
  .plan-for,
  .onboarding-options article > div > span,
  .compact-offer > div > span {
    font-size: .74rem;
  }
}

/* Tijdelijke lanceringsbanner boven de hoofdnavigatie. */
:root { --promo-height: 42px; }

.promo-banner {
  min-height: var(--promo-height);
  display: block;
  color: #fff;
  background:
    linear-gradient(90deg, var(--navy-deep) 0%, var(--navy) 57%, #167f9c 135%);
}
.promo-inner {
  width: min(var(--wrap), calc(100% - 72px));
  min-height: var(--promo-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: auto;
  font-size: .78rem;
  line-height: 1.35;
}
.promo-inner strong {
  flex: 0 0 auto;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #8ee2ef;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.promo-inner > span { color: rgba(255,255,255,.82); }
.promo-inner b { color: #fff; font-weight: 800; }
.promo-inner em {
  flex: 0 0 auto;
  color: #fff;
  font-style: normal;
  font-weight: 800;
}
.promo-inner em span {
  display: inline-block;
  margin-left: 3px;
  color: #74d4e4;
  transition: transform .2s ease;
}
.promo-banner:hover .promo-inner em span { transform: translateX(3px); }
.hero { padding-top: calc(126px + var(--promo-height)); }
.legal-page { padding-top: calc(165px + var(--promo-height)); }

@media (max-width: 700px) {
  :root { --promo-height: 54px; }
  .promo-inner {
    width: min(100% - 28px, var(--wrap));
    justify-content: space-between;
    gap: 9px;
    font-size: .69rem;
  }
  .promo-inner strong { display: none; }
  .promo-inner > span { max-width: 260px; }
  .promo-inner em { font-size: .68rem; white-space: nowrap; }
  .hero { padding-top: calc(114px + var(--promo-height)); }
}

/* Duidelijke contactgegevens vlak voor de footer. */
.contact-strip {
  scroll-margin-top: calc(82px + var(--promo-height));
  padding: 64px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 18%, rgba(43,172,216,.12), transparent 26%),
    #f5f8fb;
}
.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 72px;
}
.contact-intro .eyebrow { margin-bottom: 14px; }
.contact-intro h2 {
  max-width: 470px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
}
.contact-intro > p:last-child {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-style: normal;
}
.contact-options > a,
.contact-options > div {
  min-width: 0;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 42px rgba(16,23,72,.05);
}
.contact-options > a {
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-options > a:hover {
  border-color: rgba(43,172,216,.42);
  box-shadow: 0 20px 48px rgba(16,23,72,.09);
  transform: translateY(-3px);
}
.contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--cyan-pale);
  font-size: .8rem;
  font-weight: 850;
}
.contact-options small {
  margin-bottom: 6px;
  color: var(--cyan-dark);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-options strong {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-family: var(--display);
  font-size: .91rem;
  line-height: 1.35;
}
.contact-options > div > span:last-child {
  margin-top: 4px;
  color: var(--muted);
  font-size: .76rem;
}

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 700px) {
  .contact-strip { padding: 52px 0; }
  .contact-options { grid-template-columns: 1fr; }
  .contact-options > a,
  .contact-options > div {
    min-height: 0;
    padding: 20px;
  }
  .contact-icon { margin-bottom: 15px; }
}

/* Ruimere footeropbouw voor contact- en juridische links. */
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px 36px;
}
.footer-brand small { white-space: nowrap; }
.footer-inner > p {
  max-width: 570px;
  justify-self: end;
  text-align: right;
}
.footer-inner > div:last-child {
  grid-column: 1 / -1;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > p {
    justify-self: start;
    text-align: left;
  }
  .footer-inner > div:last-child {
    grid-column: 1;
    justify-content: flex-start;
  }
}

/* VEMIO aanbod 3.0 — drie heldere formules en een compacte vergelijking. */
.pricing-focused .plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1240px;
  gap: 16px;
}
.pricing-focused .plan-card { padding: 31px 27px; }
.pricing-focused .plan-top { min-height: 315px; }
.pricing-focused .plan-top h3 { font-size: 1.9rem; }
.pricing-focused .plan-for {
  max-width: 70%;
  min-height: 34px;
}
.pricing-focused .price { font-size: 3.1rem; }
.pricing-focused .plan-top > p:last-child {
  font-size: .82rem;
  line-height: 1.62;
}
.pricing-focused .plan-card li { font-size: .78rem; }
.pricing-focused .popular {
  top: 18px;
  right: 18px;
  max-width: 175px;
  border-radius: 12px;
  text-align: center;
  line-height: 1.35;
}
.pricing-compare {
  max-width: 1240px;
  margin-top: 72px;
  padding: 38px 40px;
  background: #f8fafc;
}
.pricing-compare .subsection-heading { margin-bottom: 24px; }
.pricing-compare .subsection-heading h3 { margin-bottom: 0; }
.pricing-compare .compare-table th:first-child { width: 40%; }
.pricing-compare .compare-table th,
.pricing-compare .compare-table td { padding: 15px 11px; }
.comparison-note {
  max-width: 920px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.65;
}
.order-form fieldset:first-of-type {
  grid-template-columns: repeat(3, 1fr);
}
.order-form fieldset:first-of-type .choice small { min-height: 34px; }

@media (max-width: 1100px) {
  .pricing-focused .plans { grid-template-columns: 1fr 1fr; }
  .pricing-focused .plan-card:last-child { grid-column: 1 / -1; }
  .pricing-focused .plan-card:last-child .plan-top { min-height: 250px; }
}

@media (max-width: 760px) {
  .pricing-focused .plans { grid-template-columns: 1fr; }
  .pricing-focused .plan-card:last-child { grid-column: auto; }
  .pricing-focused .plan-top,
  .pricing-focused .plan-card:last-child .plan-top { min-height: 0; }
  .pricing-focused .plan-for {
    max-width: 100%;
    min-height: 0;
  }
  .pricing-focused .popular {
    position: static;
    display: inline-flex;
    max-width: none;
    margin-bottom: 18px;
  }
  .pricing-compare {
    margin-top: 50px;
    padding: 26px 18px;
  }
  .pricing-compare .compare-table { min-width: 720px; }
  .order-form fieldset:first-of-type { grid-template-columns: 1fr; }
  .order-form fieldset:first-of-type .choice small { min-height: 0; }
}

/* VEMIO Design System 3.1 — merktypografie, ritme en consistente stapnummers. */
:root {
  --navy: #18236d;
  --navy-deep: #101748;
  --navy-soft: #263486;
  --cyan: #2bacd8;
  --cyan-dark: #187c9f;
  --cyan-pale: #e8f8fc;
  --ink: #101748;
  --muted: #68728a;
  --line: #dfe5f0;
  --soft: #f6f8fc;
  --display: "Plus Jakarta Sans", sans-serif;
  --body: "Plus Jakarta Sans", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --shadow: 0 24px 64px rgba(16, 23, 72, .12);
}

body {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -.042em;
}

h1 { font-weight: 800; }
h2,
h3,
h4 { font-weight: 700; }

.hero-lead,
.section-heading > p,
.intro-heading > p,
.feature-copy > p,
.contact-intro > p:last-child {
  color: var(--muted);
}

.eyebrow,
.pricing-kicker,
.feature-kicker,
.plan-for,
.bento-tag,
.contact-options small {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .105em;
}

.eyebrow > span {
  height: 2px;
  background: var(--cyan);
}

.button,
.language-switch,
.menu-toggle,
.logo-link,
.screen-slot,
.contact-options > a,
.contact-options > div {
  border-radius: 14px;
}

.bento-card,
.steps,
.plan-card,
.pricing-compare,
.order-form,
.demo-form {
  border-radius: 20px;
}

.feature-row,
.plan-card,
.contact-options > a,
.contact-options > div {
  box-shadow: 0 16px 44px rgba(16, 23, 72, .065);
}

.feature-row,
.plan-card,
.contact-options > a {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.feature-row:hover,
.plan-card:hover,
.contact-options > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(16, 23, 72, .10);
}

/* Eén nummerstijl voor voordelen, workflow, proces en positionering. */
.trust-grid i,
.bento-number,
.feature-number,
.steps li > span,
.unique-value p > span {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cyan-dark);
  font-family: var(--mono);
  font-size: clamp(1.55rem, 2.15vw, 2.2rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -.09em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.trust-grid i::after,
.bento-number::after,
.feature-number::after,
.steps li > span::after,
.unique-value p > span::after {
  content: "";
  width: 24px;
  height: 2px;
  flex: 0 0 24px;
  border-radius: 999px;
  background: currentColor;
  opacity: .34;
}

.trust-grid {
  padding: 28px 0;
}

.trust-grid p {
  align-items: flex-start;
  gap: 18px;
  padding-inline: 24px;
  font-size: .82rem;
  line-height: 1.55;
}

.trust-grid i {
  min-width: 70px;
  padding-top: 2px;
  font-size: 1.55rem;
}

.trust-grid i::after {
  width: 16px;
  flex-basis: 16px;
}

.trust-grid strong {
  margin-bottom: 3px;
  font-size: .88rem;
  line-height: 1.35;
}

.bento-card {
  padding: 30px;
}

.bento-number {
  margin-bottom: 34px;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
}

.bento-cyan .bento-number {
  color: var(--navy-deep);
}

.bento-dark .bento-number {
  color: var(--cyan);
}

.bento-card h3 {
  font-size: 1.5rem;
  line-height: 1.15;
}

.feature-number {
  margin-bottom: 12px;
  color: var(--cyan-dark);
  font-size: clamp(1.8rem, 2.55vw, 2.55rem);
}

.feature-kicker {
  margin: 0 0 22px;
  color: var(--cyan-dark) !important;
  font-size: .78rem;
  line-height: 1.5;
}

.feature-copy h3 {
  margin-bottom: 18px;
  line-height: 1.13;
}

.feature-copy li {
  position: relative;
  padding: 9px 0 9px 27px;
}

.feature-copy li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 2px;
  width: 9px;
  height: 5px;
  margin: 0;
  border-bottom: 2px solid var(--cyan-dark);
  border-left: 2px solid var(--cyan-dark);
  transform: rotate(-45deg);
}

.steps li {
  min-height: 270px;
  padding: 34px 32px;
}

.steps li > span {
  color: var(--cyan);
  font-size: clamp(2rem, 2.8vw, 2.65rem);
}

.steps h3,
.steps-three h3 {
  margin: 56px 0 12px;
  font-size: 1.38rem;
  line-height: 1.2;
}

.steps p {
  color: rgba(255,255,255,.68);
  font-size: .86rem;
  line-height: 1.65;
}

.process-note {
  gap: 18px;
}

.process-rule {
  width: 42px;
  height: 2px;
  flex: 0 0 42px;
  border-radius: 999px;
  background: var(--cyan);
}

.unique-value p {
  min-height: 184px;
  padding: 28px;
}

.unique-value p > span {
  margin-bottom: 30px;
  font-size: 1.75rem;
}

.unique-value strong {
  font-size: .96rem;
  line-height: 1.35;
}

.unique-value small {
  margin-top: 9px;
  font-size: .74rem;
  line-height: 1.6;
}

/* Getallen en bedragen blijven overal rustig en exact uitgelijnd. */
.price,
.annual-total,
.launch-price strong,
[data-summary-price],
[data-summary-total],
.compare-table td {
  font-variant-numeric: tabular-nums;
}

.price b,
.launch-price strong {
  font-family: var(--mono);
  letter-spacing: -.08em;
}

.price {
  gap: 7px;
}

.price > span {
  font-family: var(--mono);
  font-weight: 600;
}

/* Lijniconen volgens de huisstijlgids. */
.contact-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--cyan-pale);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-glyph {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.search-glyph::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.search-glyph::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  left: 20px;
  top: 22px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: left center;
}

@media (max-width: 980px) {
  .trust-grid i {
    min-width: 68px;
  }

  .feature-number {
    margin-bottom: 10px;
  }

  .steps li > span {
    font-size: 2.25rem;
  }
}

@media (max-width: 700px) {
  .section {
    padding-block: 80px;
  }

  .trust-grid p {
    align-items: center;
    gap: 14px;
    padding-block: 18px;
  }

  .trust-grid i {
    min-width: 64px;
    font-size: 1.4rem;
  }

  .bento-number {
    margin-bottom: 26px;
    font-size: 2.15rem;
  }

  .feature-number {
    font-size: 1.85rem;
  }

  .feature-kicker {
    margin: 0 0 18px;
    font-size: .75rem;
  }

  .steps li {
    min-height: 210px;
    padding: 28px 24px;
  }

  .steps h3,
  .steps-three h3 {
    margin-top: 34px;
  }

  .unique-value p {
    padding: 24px;
  }

  .unique-value p > span {
    margin-bottom: 18px;
    font-size: 1.6rem;
  }
}

/* VEMIO 3.2 — conversie, facturatiekeuze en compacter mobiel ritme. */
main section[id] {
  scroll-margin-top: calc(86px + var(--promo-height));
}

.pricing-head .billing-toggle {
  margin: 24px auto 14px;
}

.pricing-tax {
  display: block;
  margin-top: 4px;
}

.billing-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.billing-options .choice span {
  min-height: 78px;
}

.billing-options .choice small {
  min-height: 0;
  margin-top: 4px;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .hero {
    padding-top: 74px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.05rem);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: .98rem;
    line-height: 1.68;
  }

  .hero-proof {
    margin-top: 34px;
  }

  .billing-toggle {
    width: 100%;
    border-radius: 18px;
  }

  .billing-toggle button {
    min-width: 0;
    padding-inline: 10px;
  }

  .billing-toggle button strong {
    display: block;
    margin-top: 2px;
    font-size: .64rem;
  }

  .billing-options {
    grid-template-columns: 1fr;
  }

  .billing-options .choice span {
    min-height: 0;
  }
}

/* Tekstuele workflowfases zonder nummering. */
.feature-stage {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 10px 15px;
  border: 1px solid rgba(23, 108, 130, .14);
  border-radius: 999px;
  color: var(--cyan-dark);
  background: var(--cyan-pale);
  font-size: .76rem;
  font-weight: 850;
  line-height: 1.3;
}
.feature-stage::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-dark);
  box-shadow: 0 0 0 5px rgba(23, 108, 130, .09);
}
@media (max-width: 520px) {
  .feature-stage {
    align-items: flex-start;
    border-radius: 16px;
  }
  .feature-stage::before {
    margin-top: .16rem;
  }
}

/* VEMIO 3.3 — compactere marketingflow, bewijsblokken en mobiele conversie. */
#demo-form {
  scroll-margin-top: calc(92px + var(--promo-height));
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}

.hero-assurance span {
  position: relative;
  padding-left: 18px;
}

.hero-assurance span::before {
  content: "";
  position: absolute;
  top: .52em;
  left: 0;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--cyan-dark);
  border-left: 2px solid var(--cyan-dark);
  transform: rotate(-45deg);
}

.problem-section {
  padding-bottom: 92px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.pain-grid article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 96px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 23, 72, .045);
}

.pain-grid article > span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: var(--navy);
  background: var(--cyan-pale);
  font-weight: 850;
}

.pain-grid p {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.5;
}

.solution-bridge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin: 28px auto 0;
  padding: 30px 34px;
  border: 1px solid rgba(43, 172, 216, .22);
  border-radius: 20px;
  background: linear-gradient(135deg, #f0fbfd, #f7f9fd);
}

.solution-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.solution-bridge .eyebrow {
  margin-bottom: 8px;
}

.solution-bridge h3 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
}

.solution-bridge p:last-child {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.proof-section {
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 22px;
}

.practice-story,
.proof-placeholder {
  min-height: 430px;
  padding: 40px;
  border-radius: 22px;
}

.practice-story {
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
}

.proof-label,
.form-heading > span {
  color: var(--cyan);
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.practice-story h3 {
  max-width: 620px;
  margin: 42px 0 18px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.practice-story > p {
  color: rgba(255,255,255,.68);
}

.practice-story ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.practice-story li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
}

.practice-story li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--cyan);
  font-weight: 900;
}

.proof-placeholder {
  border: 1px solid var(--line);
  background: #f8fafc;
}

.placeholder-visual {
  display: grid;
  min-height: 230px;
  place-content: center;
  padding: 24px;
  border: 1px dashed rgba(24,35,109,.24);
  border-radius: 17px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(43,172,216,.08), rgba(24,35,109,.05));
  text-align: center;
}

.placeholder-visual span,
.placeholder-visual small {
  display: block;
}

.placeholder-visual span {
  font-family: var(--display);
  font-weight: 750;
}

.placeholder-visual small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .7rem;
}

.proof-placeholder blockquote {
  margin: 25px 0 10px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.proof-placeholder > p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}

.value-section {
  padding-block: 100px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  overflow: hidden;
}

.value-grid article {
  min-height: 220px;
  padding: 32px;
  border-right: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
}

.value-grid article:last-child {
  border-right: 0;
}

.value-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--navy-deep);
  background: var(--cyan);
  font-size: 1.05rem;
  font-weight: 900;
}

.value-grid h3 {
  margin: 42px 0 10px;
  color: #fff;
  font-size: 1.35rem;
}

.value-grid p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .86rem;
}

.demo-copy {
  min-width: 0;
}

.demo-video-placeholder {
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  padding: 30px;
  border: 1px dashed rgba(24,35,109,.25);
  border-radius: 20px;
  color: var(--navy);
  background: linear-gradient(145deg, rgba(43,172,216,.12), rgba(24,35,109,.07));
  cursor: pointer;
  text-align: left;
}

.demo-video-placeholder:hover {
  border-color: var(--cyan-dark);
  background: linear-gradient(145deg, rgba(43,172,216,.17), rgba(24,35,109,.09));
}

.demo-play {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
}

.demo-video-placeholder strong,
.demo-video-placeholder small {
  display: block;
}

.demo-video-placeholder strong {
  font-family: var(--display);
  font-size: 1rem;
}

.demo-video-placeholder small {
  max-width: 330px;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.form-heading {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.form-heading h3 {
  margin: 7px 0 8px;
  font-size: 1.55rem;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.6;
}

.mobile-sticky-cta {
  display: none;
}

.demo-video-placeholder:focus-visible,
.mobile-sticky-cta:focus-visible {
  outline: 3px solid rgba(43,172,216,.48);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .practice-story,
  .proof-placeholder {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .section {
    padding-block: 68px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 12px;
  }

  .trust-grid p {
    min-height: 94px;
    align-items: center;
    padding: 15px 14px;
    border-bottom: 1px solid var(--line);
    font-size: .73rem;
  }

  .trust-grid p:nth-child(2n) {
    border-right: 0;
  }

  .trust-grid p:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .trust-grid i {
    display: none;
  }

  .hero-assurance {
    gap: 9px 16px;
    margin-top: 24px;
  }

  .problem-section {
    padding-bottom: 72px;
  }

  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 30px;
  }

  .pain-grid article {
    min-height: 112px;
    display: block;
    padding: 17px 15px;
  }

  .pain-grid article > span {
    width: 27px;
    height: 27px;
    margin-bottom: 12px;
    font-size: .74rem;
  }

  .pain-grid p {
    font-size: .74rem;
  }

  .solution-bridge {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .solution-mark {
    width: 46px;
    height: 46px;
  }

  .practice-story,
  .proof-placeholder {
    padding: 24px 22px;
  }

  .practice-story h3 {
    margin-top: 30px;
    font-size: 2rem;
  }

  .placeholder-visual {
    min-height: 150px;
  }

  .value-section {
    padding-block: 72px;
  }

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

  .value-grid article {
    min-height: 0;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .value-grid article:last-child {
    border-bottom: 0;
  }

  .value-grid h3 {
    margin-top: 24px;
  }

  .pricing-compare {
    display: none;
  }

  .demo-video-placeholder {
    min-height: 160px;
    padding: 22px;
  }

  .demo-form,
  .order-form {
    padding: 24px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 28;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: var(--navy);
    box-shadow: 0 14px 36px rgba(16,23,72,.28);
    font-family: var(--display);
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(2.3rem, 10.7vw, 2.85rem);
  }

  .actions .button {
    padding-inline: 17px;
  }

  .demo-video-placeholder {
    align-items: flex-start;
  }
}

/* VEMIO 3.4 — lancering en demo uitsluitend na aanvraag */
.proof-grid-single {
  grid-template-columns: 1fr;
}

.proof-grid-single .practice-story {
  min-height: 0;
  padding: 48px;
}

.proof-grid-single .practice-story h3 {
  max-width: 900px;
  margin-top: 28px;
}

.proof-grid-single .practice-story > p {
  max-width: 820px;
}

.proof-grid-single .practice-story ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid-single .practice-story li {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: rgba(255,255,255,.04);
}

.launch-signup {
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(43,172,216,.2), transparent 32%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.launch-signup-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.launch-signup .eyebrow,
.launch-signup h2 {
  color: #fff;
}

.launch-signup-copy h2 {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 4vw, 4.35rem);
}

.launch-signup-copy > p:last-of-type {
  max-width: 660px;
  color: rgba(255,255,255,.72);
}

.launch-signup-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.launch-signup-copy li {
  padding: 9px 0;
  color: rgba(255,255,255,.84);
}

.launch-signup-copy li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--cyan);
  font-weight: 900;
}

.launch-signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 22px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 24px 70px rgba(8,13,55,.26);
}

.launch-signup-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 750;
}

.launch-signup-form label > small {
  display: inline;
  color: var(--muted);
  font-weight: 500;
}

.launch-signup-form input:not([type="checkbox"]) {
  width: 100%;
  height: 49px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  outline: none;
}

.launch-signup-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(43,172,216,.1);
}

.launch-signup-form .form-heading,
.launch-signup-form .consent,
.launch-signup-form button,
.launch-signup-form .form-note,
.launch-signup-form .form-status {
  grid-column: 1 / -1;
}

.launch-signup-form .consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}

.launch-signup-form .consent input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
}

.launch-signup-form .form-note {
  color: var(--muted);
  text-align: center;
}

.demo-request-steps {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: demo-step;
}

.demo-request-steps li {
  position: relative;
  min-height: 72px;
  padding: 14px 16px 14px 64px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.76);
  counter-increment: demo-step;
}

.demo-request-steps li::before {
  content: counter(demo-step);
  position: absolute;
  top: 14px;
  left: 15px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  font-weight: 850;
}

.demo-request-steps strong,
.demo-request-steps span {
  display: block;
}

.demo-request-steps strong {
  color: var(--navy);
  font-size: .85rem;
}

.demo-request-steps span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.5;
}

#lancering,
#demo-form {
  scroll-margin-top: 150px;
}

@media (max-width: 980px) {
  .launch-signup-grid {
    grid-template-columns: 1fr;
  }

  .launch-signup-copy h2 {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .proof-grid-single .practice-story {
    padding: 28px 22px;
  }

  .proof-grid-single .practice-story ul {
    grid-template-columns: 1fr;
  }

  .launch-signup-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .launch-signup-form label,
  .launch-signup-form .form-heading,
  .launch-signup-form .consent,
  .launch-signup-form button,
  .launch-signup-form .form-note,
  .launch-signup-form .form-status {
    grid-column: 1;
  }
}

@media (max-width: 430px) {
  .launch-signup-copy h2 {
    font-size: 2.3rem;
  }
}

/* VEMIO 3.5 — tweetalige cornerstone-landingspagina's. */
.seo-landing {
  --seo-card-radius: 22px;
  background: #fff;
}

.seo-breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-top: calc(124px + var(--promo-height));
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.seo-breadcrumb a { color: var(--cyan-dark); }
.seo-breadcrumb a:hover { text-decoration: underline; }

.seo-hero { padding: 42px 0 80px; }

.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}

.seo-hero-copy h1 {
  max-width: 810px;
  font-size: clamp(3.15rem, 5vw, 5.6rem);
}

.seo-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.seo-hero-copy .actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.seo-hero-copy .actions .button { margin: 0; }

.seo-hero-visual {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(24,35,109,.13);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(43,172,216,.16), rgba(24,35,109,.08));
  box-shadow: var(--shadow);
}

.seo-hero-visual::before {
  content: "VEMIO";
  position: absolute;
  top: 28px;
  left: 30px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 9px;
  color: #fff;
  background: rgba(16,23,72,.88);
  font-family: var(--display);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.seo-hero-visual img {
  width: 100%;
  border-radius: 16px;
}

.seo-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.seo-highlight-grid p {
  min-width: 0;
  margin: 0;
  padding: 22px 25px;
  border-right: 1px solid var(--line);
}

.seo-highlight-grid p:last-child { border-right: 0; }
.seo-highlight-grid strong,
.seo-highlight-grid span { display: block; }
.seo-highlight-grid strong { color: var(--navy); font-family: var(--display); font-size: .9rem; }
.seo-highlight-grid span { margin-top: 4px; color: var(--muted); font-size: .75rem; }

.seo-problem { background: var(--soft); }

.seo-section-intro {
  max-width: 930px;
  margin-bottom: 42px;
}

.seo-section-intro h2 { font-size: clamp(2.45rem, 4vw, 4.4rem); }
.seo-section-intro > p:last-child { max-width: 820px; color: var(--muted); }

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-card-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--seo-card-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(16,23,72,.05);
}

.seo-card-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 12px;
  color: var(--navy);
  background: var(--cyan-pale);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 850;
}

.seo-card-grid h3 { margin-bottom: 10px; font-size: 1.35rem; }
.seo-card-grid p { margin: 0; color: var(--muted); font-size: .86rem; }

.seo-solution {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 32px 36px;
  border-radius: var(--seo-card-radius);
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
}

.seo-solution > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  color: var(--navy-deep);
  background: var(--cyan);
  font-weight: 900;
}

.seo-solution h2 { margin-bottom: 8px; color: #fff; font-size: clamp(1.75rem, 2.8vw, 2.8rem); }
.seo-solution p { max-width: 980px; margin: 0; color: rgba(255,255,255,.72); }

.seo-process {
  color: #fff;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
}

.seo-section-intro-light h2 { color: #fff; }

.seo-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--seo-card-radius);
  overflow: hidden;
}

.seo-steps li {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.035);
}

.seo-steps li:last-child { border-right: 0; }
.seo-steps li > span { color: var(--cyan); font-family: var(--display); font-size: .72rem; font-weight: 850; }
.seo-steps h3 { margin: 88px 0 14px; color: #fff; font-size: 1.4rem; }
.seo-steps p { margin: 0; color: rgba(255,255,255,.68); font-size: .84rem; }

.seo-features-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}

.seo-features-grid h2 { font-size: clamp(2.5rem, 4vw, 4.4rem); }
.seo-features-grid > div > p:last-child { color: var(--muted); }
.seo-features-grid ul { margin: 0; padding: 0; list-style: none; }

.seo-features-grid li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
}

.seo-features-grid li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: var(--navy);
  background: var(--cyan-pale);
  font-size: .72rem;
}

.seo-value { padding-top: 0; }

.seo-value-card {
  padding: clamp(38px, 6vw, 78px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(43,172,216,.28), transparent 30%),
    var(--navy-deep);
}

.seo-value-card h2 { max-width: 920px; color: #fff; }
.seo-value-card > p:last-child { max-width: 920px; margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 1rem; }

.seo-related { background: var(--soft); }
.seo-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }

.seo-related-grid a {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--seo-card-radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(16,23,72,.045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.seo-related-grid a:hover { border-color: rgba(43,172,216,.45); box-shadow: 0 22px 54px rgba(16,23,72,.09); transform: translateY(-4px); }
.seo-related-grid a > span { color: var(--cyan-dark); font-size: .7rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.seo-related-grid strong { max-width: 620px; margin-top: 34px; color: var(--navy); font-family: var(--display); font-size: clamp(1.35rem, 2.2vw, 2.05rem); line-height: 1.15; }
.seo-related-grid em { margin-top: auto; color: var(--navy); font-size: .78rem; font-style: normal; font-weight: 800; }

.seo-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 8vw, 130px); }
.seo-faq-grid h2 { font-size: clamp(2.5rem, 4vw, 4.2rem); }
.seo-faq details { border-bottom: 1px solid var(--line); }
.seo-faq summary { padding: 22px 44px 22px 0; color: var(--navy); font-family: var(--display); font-size: 1rem; font-weight: 750; cursor: pointer; }
.seo-faq details p { padding: 0 40px 22px 0; color: var(--muted); }

.seo-final-cta { padding-top: 0; }
.seo-final-card { display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; padding: clamp(38px, 6vw, 70px); border-radius: 28px; background: var(--navy); }
.seo-final-card h2 { max-width: 900px; color: #fff; }
.seo-final-card p:last-child { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.7); }
.seo-final-card .button { margin: 0; white-space: nowrap; }

.feature-deep-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 850;
}

.feature-deep-link span { color: var(--cyan-dark); transition: transform .2s ease; }
.feature-deep-link:hover span { transform: translateX(4px); }
.feature-deep-link:focus-visible { outline: 3px solid rgba(43,172,216,.38); outline-offset: 4px; }

@media (max-width: 1100px) {
  .seo-hero-grid,
  .seo-features-grid { grid-template-columns: 1fr; }
  .seo-hero-visual { max-width: 920px; }
  .seo-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-steps li:nth-child(2) { border-right: 0; }
  .seo-steps li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
}

@media (max-width: 760px) {
  .seo-breadcrumb {
    width: min(100% - 36px, var(--wrap));
    padding-top: calc(106px + var(--promo-height));
    overflow: hidden;
    white-space: nowrap;
  }

  .seo-breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; }
  .seo-hero { padding: 28px 0 60px; }
  .seo-hero-grid { width: min(100% - 36px, var(--wrap)); gap: 35px; }
  .seo-hero-copy h1 { font-size: clamp(2.45rem, 11vw, 3.35rem); }
  .seo-hero-copy .actions { align-items: stretch; flex-direction: column; }
  .seo-hero-copy .actions .button { width: 100%; }
  .seo-hero-visual { padding: 8px; border-radius: 18px; }
  .seo-hero-visual img { border-radius: 12px; }
  .seo-hero-visual::before { top: 17px; left: 18px; }
  .seo-highlight-grid { width: min(100% - 36px, var(--wrap)); grid-template-columns: 1fr; margin-top: 36px; }
  .seo-highlight-grid p { border-right: 0; border-bottom: 1px solid var(--line); }
  .seo-highlight-grid p:last-child { border-bottom: 0; }
  .seo-card-grid,
  .seo-related-grid,
  .seo-faq-grid { grid-template-columns: 1fr; }
  .seo-card-grid article { min-height: 0; padding: 24px 22px; }
  .seo-card-grid article > span { margin-bottom: 28px; }
  .seo-solution { grid-template-columns: 1fr; padding: 26px 23px; }
  .seo-steps { grid-template-columns: 1fr; }
  .seo-steps li { min-height: 0; padding: 24px 22px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .seo-steps li:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .seo-steps li:last-child { border-bottom: 0; }
  .seo-steps h3 { margin-top: 36px; }
  .seo-features-grid { gap: 34px; }
  .seo-related-grid a { min-height: 220px; padding: 24px 22px; }
  .seo-faq-grid { gap: 8px; }
  .seo-final-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .seo-final-card .button { width: 100%; white-space: normal; }
}
