/* ══ FONTS (self-hosted) ══ */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-regular-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-regular-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm-sans-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm-sans-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ══ RESET & VARIABLES ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0d1117;
  --ink-2: #1e2633;
  --ink-3: #2e3d52;
  --muted: #5a6e85;
  --subtle: #8fa0b4;
  --border: #dde4ed;
  --surface: #f5f7fa;
  --white: #ffffff;
  --accent: #1657ff;
  --accent-light: #e8effe;
  --accent-dark: #0d3fd9;
  --green: #10b567;
  --green-light: #e6f8ef;
  --amber: #f59e0b;
  --red: #ef4444;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 10px; --radius-lg: 16px; --radius-xl: 24px;
  --site-max: 1360px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased; }

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #1657ff 0%, #4f8cff 55%, #9ec5ff 100%);
  box-shadow: 0 10px 24px rgba(22,87,255,0.22);
  flex-shrink: 0;
}

.nav-logo-mark::before,
.nav-logo-mark::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 7px;
  border: 2px solid rgba(255,255,255,0.92);
}

.nav-logo-mark::after {
  inset: 13px 8px 8px 13px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 6px 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.nav-logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { background: var(--accent) !important; color: #fff !important; padding: 0.5rem 1.25rem; border-radius: 8px; transition: background .2s !important; }
.nav-cta:hover { background: var(--accent-dark) !important; }

/* ══ HERO SECTION ══ */
.hero-section { padding: 0; margin: 0; display: block; }

/* ══ HERO ══ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  max-height: 660px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.hero-content {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px 64px calc(max(40px, (100vw - 1200px) / 2 + 40px));
  z-index: 2;
}
.hero-content::after { display: none; }
.hero-visual {
  position: relative;
  background: transparent;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: visible;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #ecfdf5 0%, #dcfce7 100%);
  color: #166534;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(34,197,94,0.22);
  box-shadow: 0 6px 18px rgba(16,185,129,0.10);
  width: fit-content;
}
.hero-badge::before { content: '\25CF'; font-size: 0.7rem; color: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1; letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 1.25rem;
  max-width: 44ch;
}
.hero h1 em { font-style: normal; color: var(--accent); }

.hero-pain {
  font-size: 1.1rem; color: var(--muted); line-height: 1.7;
  margin-bottom: 1rem; font-weight: 400;
  max-width: 44ch;
}
.hero-pain strong { color: var(--ink); font-weight: 600; }

/* Hero price */
.hero-price-inline {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-inline-from { font-size: 0.85rem; color: var(--muted); }
.price-inline-amount {
  font-family: var(--font-display);
  font-size: 2.2rem; color: var(--ink); letter-spacing: -0.04em; line-height: 1;
}
.price-inline-per { font-size: 0.85rem; color: var(--muted); max-width: 22ch; line-height: 1.4; }

/* Hero person photo */
.hero-person-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
/*.hero-person-img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}
.hero-person-wrap::after { display: none; }*/

/* Floating cards */
.hero-float-card {
  position: absolute; z-index: 6;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  font-family: var(--font-body);
  animation: float 6s ease-in-out infinite;
  min-width: 180px;
  border: 1px solid var(--border);
}
.card-top { top: 12%; left: 5%; animation-delay: 0s; }
.card-bottom { bottom: 15%; right: 5%; animation-delay: 2.5s; }
.hfc-icon { font-size: 1.2rem; flex-shrink: 0; }
.hfc-title { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.hfc-sub { font-size: 0.7rem; color: var(--muted); margin-top: 1px; }
.hfc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; margin-left: auto;
  box-shadow: 0 0 0 3px rgba(16,181,103,0.25);
  animation: pulse 2s infinite;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 0.85rem 1.75rem; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  transition: background .2s, transform .7s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(22,87,255,0.3);
  display: inline-block;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35); }
.btn-ghost { color: var(--ink); font-size: 0.9rem; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.btn-ghost:hover { gap: 8px; }
.btn-ghost::after { content: '\2192'; }

.hero-friction {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.friction-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--muted); }
.friction-item::before { content: '\2713'; color: var(--green); font-weight: 700; font-size: 0.85rem; }

.hero-trust { display: flex; flex-direction: column; gap: 0.5rem; }
.trust-stars { display: flex; align-items: center; gap: 6px; }
.trust-stars-icons { color: var(--amber); font-size: 0.9rem; }
.trust-stars-score { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.trust-stars-count { font-size: 0.8rem; color: var(--muted); }
.trust-avatars-row { display: flex; align-items: center; gap: 10px; }
.trust-avatars { display: flex; }
.trust-avatars img { width: 30px; height: 30px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -7px; object-fit: cover; }
.trust-avatars img:first-child { margin-left: 0; }
.trust-avatars .more { width: 30px; height: 30px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -7px; background: var(--ink-3); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: #fff; }
.trust-text { font-size: 0.82rem; color: var(--muted); }
.trust-text strong { color: var(--ink); }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ══ PROOF STRIP ══ */
.proof-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0; margin-top: 0;
}
.proof-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--ink); letter-spacing: -0.04em;
  line-height: 1;
}
.proof-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

@media (max-width: 700px) {
  .proof-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: none; }
  .proof-item:nth-child(3) { border-top: 1px solid var(--border); }
  .proof-item:last-child { border-top: 1px solid var(--border); }
}

/* ══ SECTIONS ══ */
section { padding: 80px 5vw; }
.section-inner { max-width: 1360px; margin: 0 auto; }
.section-label { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 1rem; }
.section-body { font-size: 1.12rem; color: var(--muted); max-width: 52ch; line-height: 1.75; font-weight: 300; }

/* ══ CALCULATOR ══ */
.calc-section { background: #162230; padding: 80px 5vw; }
.calc-section .section-label { color: #7dd3fc; }
.calc-section .section-title { color: #fff; }
.calc-section .section-body { color: #9fb0c4; max-width: 56ch; }

.calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}

@media (min-width: 1600px) {
  .calc-wrap {
    max-width: 1480px;
  }
}

.calc-steps { display: flex; flex-direction: column; gap: 1.5rem; }

.calc-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .2s;
}
.calc-step-head {
  display: flex; align-items: center; gap: 12px;
  padding: 1rem 1.25rem;
  cursor: pointer;
}
.calc-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s, color .2s;
}
.calc-step.done .calc-step-num { background: var(--green); color: #fff; }
.calc-step-title { color: rgba(255,255,255,0.7); font-size: 1rem; font-weight: 600; flex: 1; }
.calc-step.done .calc-step-title { color: #fff; }
.calc-step-summary { font-size: 0.9rem; color: #9fb0c4; }

.calc-step-body { padding: 0 1.25rem 1.25rem; }

/* Package cards */
.pkg-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.pkg-card {
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 1.25rem;
  background: rgba(255,255,255,0.06); cursor: pointer;
  transition: all .18s; position: relative; overflow: visible;
  text-align: left;
}
.pkg-card:hover { border-color: rgba(22,87,255,0.5); background: rgba(22,87,255,0.08); }
.pkg-card.active { border-color: var(--accent); background: rgba(22,87,255,0.12); box-shadow: inset 0 0 0 1.5px var(--accent); }
.pkg-popular-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: #fbbf24; color: #111827; font-size: 0.72rem; font-weight: 800; padding: 4px 13px; border-radius: 100px; white-space: nowrap; box-shadow: 0 6px 18px rgba(251,191,36,0.28); }
.pkg-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.pkg-tagline { font-size: 0.86rem; color: #9fb0c4; margin-bottom: 0.6rem; line-height: 1.35; }
.pkg-base-price {
  font-family: var(--font-display);
  font-size: 2rem; color: #fff; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.75rem;
}
.pkg-base-price span { font-family: var(--font-body); font-size: 0.85rem; color: #9fb0c4; font-weight: 400; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.pkg-features li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 7px; line-height: 1.45; }
.pkg-features li::before { flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }
.feat-yes { color: #dce8f5; }
.feat-yes::before { content: '\2713'; color: var(--green); font-weight: 700; }
.feat-no { color: #8a9bb0; }
.feat-no::before { content: '\2715'; color: #8a9bb0; }

/* Duration and payment options */
.opt-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.opt-row-2 { grid-template-columns: repeat(2, 1fr); }
.opt-btn {
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 0.875rem 0.5rem;
  background: rgba(255,255,255,0.06); cursor: pointer; text-align: center;
  transition: all .18s; font-family: var(--font-body); position: relative;
  overflow: visible;
}
.opt-btn:hover { border-color: rgba(22,87,255,0.5); background: rgba(22,87,255,0.08); }
.opt-btn.active { border-color: var(--accent); background: rgba(22,87,255,0.12); box-shadow: inset 0 0 0 1.5px var(--accent); }
.opt-label { font-size: 1rem; font-weight: 700; color: #fff; display: block; }
.opt-sub { font-size: 0.86rem; color: #9fb0c4; display: block; margin-top: 3px; }
.opt-badge { position: absolute; top: -9px; right: 6px; background: var(--green); color: #fff; font-size: 0.62rem; font-weight: 700; padding: 2px 7px; border-radius: 100px; }
.opt-badge-blue { background: var(--accent) !important; }
.opt-badge-gold { background: #fbbf24 !important; color: #111827 !important; font-weight: 800; }

.dur-expensive .opt-label { color: #c9d8e8; }
.dur-expensive .opt-sub { color: #9fb0c4; }
.dur-expensive::after {
  content: 'flexibel';
  position: absolute; top: -9px; left: 6px;
  background: rgba(255,255,255,0.12); color: #9fb0c4;
  font-size: 0.58rem; font-weight: 600; padding: 2px 6px;
  border-radius: 100px; letter-spacing: 0.03em;
}

/* Addons */
.addons-list { display: flex; flex-direction: column; gap: 0.5rem; }
.addon-row {
  display: flex; align-items: center; gap: 12px;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); cursor: pointer;
  transition: all .18s; background: rgba(255,255,255,0.05);
}
.addon-row:hover { border-color: rgba(22,87,255,0.5); background: rgba(22,87,255,0.08); }
.addon-row.active { border-color: var(--accent); background: rgba(22,87,255,0.12); }
.addon-check { width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid rgba(255,255,255,0.2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .18s; font-size: 0.72rem; color: transparent; }
.addon-row.active .addon-check { background: var(--accent); border-color: var(--accent); color: #fff; }
.addon-info { flex: 1; }
.addon-name { font-size: 1rem; font-weight: 600; color: #fff; }
.addon-desc { font-size: 0.86rem; color: #9fb0c4; margin-top: 1px; }
.addon-price-tag { font-size: 0.88rem; font-weight: 700; color: #7dd3fc; white-space: nowrap; }
.addon-section-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #9fb0c4; padding: 0.25rem 0 0.4rem; }
.addon-eenmalig .addon-price-tag { color: #f9a84d; }
.addon-eenmalig.active { border-color: #f9a84d; background: rgba(249,168,77,0.08); }
.addon-eenmalig.active .addon-check { background: #f9a84d; border-color: #f9a84d; }

/* ══ STARTBEDRAG SLIDER ══ */
.slider-wrap { display: flex; flex-direction: column; gap: 0.75rem; }
.slider-track { position: relative; padding: 10px 0; }
.slider-track input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.15);
  outline: none; cursor: pointer; position: relative; z-index: 1;
}
.slider-track input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(22,87,255,0.5);
  cursor: pointer; transition: transform .15s;
}
.slider-track input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.slider-track input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(22,87,255,0.5); cursor: pointer;
}
.slider-labels {
  display: flex; justify-content: space-between;
  font-size: 0.68rem; color: #9fb0c4; margin-top: 2px;
}
.slider-output {
  display: flex; justify-content: space-between; align-items: flex-start;
  background: rgba(255,255,255,0.085); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 0.9rem 1rem;
  margin-top: 0.25rem;
}
.slider-val-label { font-size: 0.72rem; color: #9fb0c4; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; margin-bottom: 3px; }
.slider-val-amount { font-family: var(--font-display); font-size: 1.4rem; color: #fff; letter-spacing: -0.02em; }
.slider-val-discount { font-family: var(--font-display); font-size: 1.4rem; color: #34d399; letter-spacing: -0.02em; }
.slider-output-right { text-align: right; }

/* Price panel */
.price-panel {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(22,87,255,0.38);
  border-radius: var(--radius-xl); padding: 2rem;
  position: sticky; top: 80px;
}
.price-panel-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: #9fb0c4; font-weight: 600; margin-bottom: 0.5rem; }
.price-big {
  font-family: var(--font-display);
  font-size: 4.8rem; color: #fff; line-height: 1;
  letter-spacing: -0.04em; margin-bottom: 0.25rem;
  transition: all .25s;
}
.price-big small { font-family: var(--font-body); font-size: 1rem; color: #9fb0c4; font-weight: 500; margin-left: 6px; letter-spacing: 0; }
.price-before { font-size: 0.85rem; color: #5a6e85; text-decoration: line-through; min-height: 1.2em; }
.price-saving-tag { display: inline-block; background: rgba(16,181,103,0.2); color: #34d399; font-size: 0.78rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-top: 4px; min-height: 1.6em; }

.price-breakdown { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.4rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; }
.breakdown-row { display: flex; justify-content: space-between; font-size: 0.88rem; }
.breakdown-label { color: #9fb0c4; }
.breakdown-val { color: #c9d8e8; font-weight: 500; }
.breakdown-total { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 0.5rem; margin-top: 0.25rem; }
.breakdown-total .breakdown-label { color: #fff; font-weight: 600; font-size: 0.85rem; }
.breakdown-total .breakdown-val { color: #fff; font-weight: 700; font-size: 0.9rem; }

.price-cta {
  width: 100%; background: var(--accent); color: #fff;
  padding: 1.15rem; border: none; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(22,87,255,0.4); margin-top: 1rem;
  letter-spacing: -0.01em;
}
.price-cta:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22,87,255,0.5); }

.price-reassure { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.reassure-item { font-size: 0.82rem; color: #9fb0c4; display: flex; align-items: center; gap: 5px; }
.reassure-item::before { content: '\2713'; color: var(--green); font-size: 0.7rem; }

.calc-step-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: #9fb0c4;
  margin-bottom: 0.9rem;
}

/* ══ HOW IT WORKS ══ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 0; overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,17,23,0.1); border-color: var(--accent); }
.step-photo { width: 100%; height: 160px; object-fit: cover; display: block; }
.step-body { padding: 1.5rem; }
.step-num { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-light); color: var(--accent); font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.step-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--ink); }
.step-text { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.photo-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 3rem; }
.photo-band-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; }
.photo-band-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.photo-band-item:hover img { transform: scale(1.04); }
.photo-band-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(13,17,23,0.88) 0%, rgba(13,17,23,0.5) 50%, transparent 100%); padding: 1.5rem 0.875rem 0.875rem; }
.photo-band-label { color: #fff; font-size: 0.85rem; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.photo-band-sub { color: rgba(255,255,255,0.82); font-size: 0.72rem; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }

/* ══ FEATURES ══ */
.features-section { background: var(--surface); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0; }
.feature-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; transition: border-color .2s; }
.feature-item:hover { border-color: var(--accent); }
.feature-icon { font-size: 1.3rem; margin-bottom: 0.5rem; }
.feature-name { color: var(--ink); font-size: 0.88rem; font-weight: 600; margin-bottom: 0.2rem; }
.feature-desc { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

/* ══ NIET KRIJGT ══ */
.not-section { background: var(--surface); }
.not-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
.not-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: border-color .2s; }
.not-card:hover { border-color: var(--accent); }
.not-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.not-title { color: var(--ink); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.not-text { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* ══ TESTIMONIALS ══ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; transition: transform .2s, box-shadow .2s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,17,23,0.08); }
.testi-stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 0.9rem; }
.testi-text { font-size: 0.92rem; color: var(--ink); line-height: 1.7; margin-bottom: 1.25rem; font-style: normal; }
.testi-text::before { content: '\201C'; font-family: var(--font-display); font-size: 1.4rem; color: var(--accent); line-height: 0; position: relative; top: 8px; margin-right: 2px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar-photo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.testi-name { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.testi-role { font-size: 0.75rem; color: var(--muted); }

/* ══ FAQ ══ */
.faq-section { background: var(--surface); }
.faq-header { margin-bottom: 3rem; }
.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  align-items: start;
}
.faq-group { margin-bottom: 2.5rem; }
.faq-group-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-light);
  display: inline-block;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 1rem 0; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: color .2s; line-height: 1.4; }
.faq-q:hover { color: var(--accent); }
.faq-arrow { font-size: 1rem; flex-shrink: 0; transition: transform .25s; color: var(--accent); }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; font-size: 0.88rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1rem; }

@media (max-width: 760px) {
  .faq-columns { grid-template-columns: 1fr; gap: 0; }
}

/* ══ CTA ══ */
.cta-section { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 60%, #162d55 100%); text-align: center; position: relative; overflow: hidden; padding: 100px 5vw; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0); background-size: 28px 28px; }
.cta-bg-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.12; z-index: 0; }
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-section .section-label { color: #7dd3fc; }
.cta-section .section-title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-section .section-body { color: #9fb0c4; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--ink); padding: 0.9rem 2rem; border-radius: var(--radius); font-size: 0.95rem; font-weight: 700; text-decoration: none; transition: background .2s, transform .15s; display: inline-block; }
.btn-white:hover { background: var(--surface); transform: translateY(-2px); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.3); color: #fff; padding: 0.9rem 2rem; border-radius: var(--radius); font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: border-color .2s, background .2s; display: inline-block; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ══ FOOTER ══ */
footer { background: var(--ink); padding: 3rem 5vw 2rem; color: #9fb0c4; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-tagline { font-size: 0.85rem; color: #9fb0c4; margin-top: 0.75rem; line-height: 1.6; max-width: 26ch; }
.footer-col-title { color: #fff; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: #9fb0c4; text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { max-width: 1100px; margin: 1.5rem auto 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: #9fb0c4; text-decoration: none; font-size: 0.8rem; transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

/* ══ MODAL ══ */
.modal-overlay { position: fixed; inset: 0; background: rgba(13,17,23,0.65); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; width: 100%; max-width: 520px; box-shadow: 0 32px 80px rgba(13,17,23,0.3); animation: slideUp .3s ease; position: relative; }
@keyframes slideUp { from{transform:translateY(20px);opacity:0} to{transform:translateY(0);opacity:1} }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--surface); border: none; cursor: pointer; width: 32px; height: 32px; border-radius: 50%; font-size: 1rem; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: background .2s; }
.modal-close:hover { background: var(--border); }
.modal h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.modal-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.75rem; }
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; color: var(--ink); background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(22,87,255,0.12); }
.form-row textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; background: var(--accent); color: #fff; padding: 0.9rem; border: none; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background .2s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--accent-dark); }
.form-success { text-align: center; padding: 2rem 0; display: none; }
.form-success.show { display: block; }
.form-success .check { font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-success h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.4rem; }
.form-success p { font-size: 0.88rem; color: var(--muted); }

/* ══ STICKY MOBILE PRICE FOOTER ══ */
.sticky-price-footer {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 0.875rem 1.25rem;
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 -8px 32px rgba(13,17,23,0.4);
  pointer-events: none;
}
@media (min-width: 961px) {
  .sticky-price-footer { display: none !important; }
}
.sticky-price-footer.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  max-width: 600px; margin: 0 auto;
}
.sticky-footer-left { display: flex; flex-direction: column; gap: 1px; }
.sticky-footer-label { font-size: 0.75rem; color: #9fb1c5; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.sticky-footer-price {
  font-family: var(--font-display);
  font-size: 1.75rem; color: #fff; line-height: 1; letter-spacing: 0;
}
.sticky-footer-price small { font-family: var(--font-body); font-size: 0.8rem; color: #9fb0c4; font-weight: 500; margin-left: 4px; letter-spacing: 0; }
.sticky-footer-saving { font-size: 0.8rem; color: #34d399; font-weight: 700; margin-top: 1px; min-height: 1em; }
.sticky-footer-cta {
  flex-shrink: 0;
  background: var(--accent); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(22,87,255,0.4);
  white-space: nowrap;
  transition: background .2s;
}
.sticky-footer-cta:hover { background: var(--accent-dark); }

/* ══ CTA SHAKE ══ */
@keyframes cta-shake {
  0%, 92%, 100%  { transform: translateX(0); }
  93%  { transform: translateX(-4px) rotate(-1deg); }
  94%  { transform: translateX(4px) rotate(1deg); }
  95%  { transform: translateX(-3px) rotate(-0.5deg); }
  96%  { transform: translateX(3px) rotate(0.5deg); }
  97%  { transform: translateX(-1px); }
  98%  { transform: translateX(0); }
}
.price-cta, .sticky-footer-cta { animation: cta-shake 9s ease-in-out infinite; }
.price-cta:hover, .sticky-footer-cta:hover { animation: none; }

/* ══ ANIMATIONS ══ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ══ HERO OVERRIDE V8 ══ */
.hero {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 112px 40px 0;
  min-height: 760px;
  max-height: none;
  grid-template-columns: minmax(440px, 560px) minmax(620px, 1fr);
  align-items: end;
  gap: 44px;
  overflow: visible;
}
.hero-content {
  background: transparent;
  padding: 0 0 30px 0;
  max-width: 560px;
  width: 100%;
  position: relative;
  z-index: 3;
}
.hero-badge { margin-bottom: 1.35rem; }
.hero h1 {
  font-size: clamp(3.2rem, 4.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 1.15rem;
  max-width: 23ch;
}
.hero h1 em { display: inline-block; }
.hero-pain { max-width: 46ch; font-size: 1rem; line-height: 1.72; margin-bottom: 0.95rem; }
.price-inline-from { font-size: 0.82rem; color: var(--muted); white-space: nowrap; }
.price-inline-amount { font-size: 2rem; font-weight: 600; letter-spacing: 0.05em; }
.price-inline-per { max-width: none; font-size: 0.9rem; line-height: 1.45; }
.hero-actions { margin-bottom: 1.1rem; }
.hero-friction { gap: 1rem 1.2rem; margin-bottom: 1.2rem; }
.friction-item { font-size: 0.8rem; }
.hero-trust { gap: 0.65rem; }

.hero-visual {
  position: relative;
  min-height: 760px;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 24px -18px 74px 36px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.72) 18%, transparent 42%),
    linear-gradient(135deg, #fef3f2 0%, #fdf2f8 24%, #eff6ff 55%, #eefbf3 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.92),
    0 22px 52px rgba(15,23,42,0.08);
  z-index: 0;
}

.hero-person-img {
  width: auto;
  height: min(94%, 820px);
  max-height: 820px;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 28px 50px rgba(17,24,39,0.10));
  transform: translateX(250px);
}

@media (max-width: 1180px) {
  .hero-person-img { transform: translateX(230px); height: min(80%, 600px); }
}

@media (min-width: 1500px) {
  .hero-person-img { transform: translateX(110px); }
}
.hero-person-wrap {
  width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding-right: 1px; z-index: 2;
}

.hero-float-card { min-width: 0; padding: 0.8rem 1rem; border-radius: 16px; box-shadow: 0 14px 34px rgba(17,24,39,0.10); }
.card-top { top: 112px; left: 18px; }
.card-bottom { bottom: 188px; left: 40px; right: auto; }
.hfc-title { font-size: 0.84rem; }
.hfc-sub { font-size: 0.72rem; }

.proof-strip-inner,
.section-inner,
.calc-wrap,
.footer-grid,
.footer-bottom { max-width: var(--site-max); }

/* ══ RESPONSIVE ══ */
@media (min-width: 1500px) {
  .hero {
    max-width: 1360px;
    grid-template-columns: minmax(470px, 580px) minmax(700px, 1fr);
    gap: 56px;
  }
  .proof-strip-inner, .section-inner, .calc-wrap, .footer-grid, .footer-bottom { max-width: 1360px; }
  .hero h1 { max-width: 20ch; font-size: clamp(3rem, 5vw, 4rem); }
  /*.hero-person-img { height: min(94%, 860px); transform: translateX(54px); }*/
  .card-top { left: 42px; }
  .card-bottom { left: 64px; }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(400px, 1fr) minmax(480px, 1fr);
    gap: 28px; padding: 98px 24px 0;
  }
  .hero h1 { font-size: clamp(3rem, 5vw, 3.8rem); max-width: 23ch; }
  /*.hero-person-img { transform: translateX(200px); height: min(80%, 600px); }*/
  .hero-price-inline { grid-template-columns: auto auto; }
  .price-inline-per { grid-column: 1 / -1; }
  .hero-visual { min-height: 690px; }
  .hero-visual::before { inset: 28px 0 74px 10px; }
  .card-top { top: 96px; left: 8px; }
  .card-bottom { bottom: 170px; left: 18px; }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr; min-height: auto;
    padding: 94px 20px 28px; gap: 14px;
  }
  .hero-content { padding: 0; max-width: 100%; }
  .hero h1 { max-width: 32ch; font-size: clamp(2.6rem, 8.4vw, 3.5rem); }
  .hero-visual { display: none; }
  .proof-strip-inner, .section-inner, .calc-wrap, .footer-grid, .footer-bottom { max-width: 100%; }
  .calc-layout { grid-template-columns: 1fr; }
  .price-panel { display: none; }
  .steps-grid, .testi-grid { grid-template-columns: 1fr; }
  .features-grid, .not-grid { grid-template-columns: 1fr; }
  .pkg-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .photo-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .opt-row { grid-template-columns: repeat(2, 1fr); }
  .addons-list > * { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-friction { flex-direction: column; gap: 0.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}


/* ══ EXTRA CONVERSIE & TRUST TWEAKS ══ */
.calc-recommendation {
  margin-top: 0.9rem;
  color: #c9d8e8;
  font-size: 0.98rem;
}
.calc-recommendation strong { color: #fff; }

.price-panel {
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  transform: scale(1.02);
  transform-origin: top center;
}

.process-section {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: 0 10px 30px rgba(13,17,23,0.04);
}
.process-card-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.process-card h3 {
  font-size: 1.1rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
  color: var(--ink);
}
.process-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

footer .nav-logo span { color: #7fb6ff !important; }
footer, footer .footer-tagline, footer .footer-bottom, footer a, footer p, footer li { color: #c9d8e8; }

@media (max-width: 960px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .price-panel { transform: none; }
}


.pkg-section-title {
  display: block;
  margin: 0.7rem 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.pkg-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin: 0.75rem 0 0.55rem;
}

.pkg-features li small {
  display: block;
  color: #9fb0c4;
  font-size: 0.76rem;
  line-height: 1.45;
  margin-top: 2px;
}

.feat-muted {
  color: #9fb0c4;
}

.feat-muted::before {
  content: '\2022';
  color: #9fb0c4;
}

.pkg-section-title {
  display: block;
  margin: 0.7rem 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.pkg-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin: 0.75rem 0 0.55rem;
}

.pkg-features li small {
  display: block;
  color: #9fb0c4;
  font-size: 0.76rem;
  line-height: 1.45;
  margin-top: 2px;
}

.feat-muted {
  color: #9fb0c4;
}

.feat-muted::before {
  content: '\2022';
  color: #9fb0c4;
}