/* ─────────────────────────────────────────
   AbboMaatje v2 — Landing Page
   Fonts: Fraunces (display) + DM Sans (body)
   Palette: warm cream × orange × amber

   Scoped onder .v2lp wrapper zodat de rest
   van de app-styling ongemoeid blijft.
───────────────────────────────────────── */

/* ── Tokens (scoped) ── */
.v2lp {
  --cream:       #FDFCF9;
  --cream-2:     #F5F1E9;
  --cream-3:     #EDE8DE;
  --orange:      #7C3AED;
  --orange-h:    #6D28D9;
  --orange-soft: #EFE7FF;
  --orange-mid:  #8B5CF6;
  --amber:       #A78BFA;
  --ink:         #1C1410;
  --ink-2:       #5C4C3D;
  --ink-3:       #9C8C7E;
  --ink-4:       #C8BBAE;
  --white:       #FFFFFF;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  24px;
  --r-xl:  36px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  /* Base */
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  display: block;
}

.v2lp *, .v2lp *::before, .v2lp *::after { box-sizing: border-box; }
.v2lp a { color: inherit; text-decoration: none; }
.v2lp img { display: block; max-width: 100%; }

/* ── Typography scale ── */
.f-display {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
}

/* ─────────────────────────────────────────
   THEME TOGGLE (floating, scoped to landing)
───────────────────────────────────────── */
.v2-theme-toggle {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 20;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--cream-3);
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.v2-theme-toggle:hover {
  color: var(--orange);
  border-color: var(--ink-4);
  transform: translateY(-1px);
}
.v2-theme-toggle .theme-icon-sun { display: none; }
.v2-theme-toggle .theme-icon-moon { display: block; }
.v2lp[data-theme="dark"] .v2-theme-toggle .theme-icon-sun { display: block; }
.v2lp[data-theme="dark"] .v2-theme-toggle .theme-icon-moon { display: none; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: calc(100svh - 68px);
  padding: 110px 40px 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Warm grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Warm glow behind headline */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 70vh;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 101, 10, 0.07) 0%,
    rgba(245, 158, 11, 0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
  text-align: center;
}

.hero-visual {
  position: absolute;
  inset: 68px 0 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-board {
  position: absolute;
  right: max(5vw, 28px);
  top: 58%;
  transform: translateY(-50%);
  width: min(23vw, 300px);
  aspect-ratio: 1 / 0.92;
  opacity: 0.78;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.hero-glow-a {
  width: min(32vw, 420px);
  height: min(32vw, 420px);
  right: 4vw;
  top: 16%;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, rgba(124,58,237,0) 72%);
}

.hero-glow-b {
  width: min(22vw, 280px);
  height: min(22vw, 280px);
  right: 22vw;
  top: 48%;
  background: radial-gradient(circle, rgba(167,139,250,.18) 0%, rgba(167,139,250,0) 72%);
}

.hero-doc {
  position: absolute;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow:
    0 22px 44px rgba(34, 16, 69, 0.11),
    0 8px 18px rgba(34, 16, 69, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-doc-main {
  inset: 8% 12% 18% 8%;
  padding: 0;
  overflow: hidden;
  transform: rotate(-6deg);
}

.hero-doc-side {
  right: 2%;
  top: 32%;
  width: 40%;
  padding: 16px 16px 14px;
  transform: rotate(8deg);
}

.hero-doc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
  padding: 15px 16px 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-h) 100%);
}

.hero-doc-pill,
.hero-doc-status,
.hero-side-badge,
.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.hero-doc-pill {
  padding: 7px 12px;
  background: rgba(255,255,255,.16);
  color: #fff;
}

.hero-doc-status {
  padding: 7px 10px;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
}

.hero-doc-title,
.hero-side-title {
  font-family: 'Fraunces', serif;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-doc-title {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.12;
  margin-bottom: 14px;
  padding: 18px 18px 0;
}

.hero-doc-lines {
  display: grid;
  gap: 9px;
  margin-bottom: 14px;
  padding: 0 18px;
}

.hero-doc-lines span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,.2) 0%, rgba(124,58,237,.06) 100%);
}

.hero-doc-lines span:nth-child(1) { width: 86%; }
.hero-doc-lines span:nth-child(2) { width: 100%; }
.hero-doc-lines span:nth-child(3) { width: 68%; }

.hero-checklist {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: .86rem;
  font-weight: 600;
}

.hero-check-item span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(124,58,237,.18);
}

.hero-check-item span::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(40deg);
}

.hero-side-badge {
  padding: 6px 11px;
  background: rgba(124,58,237,.1);
  color: var(--orange);
  margin-bottom: 14px;
}

.hero-side-title {
  font-size: 1.05rem;
  line-height: 1.14;
  margin-bottom: 8px;
}

.hero-side-meta {
  color: var(--ink-3);
  font-size: .8rem;
  line-height: 1.55;
}

.hero-chip {
  position: absolute;
  padding: 8px 14px;
  color: #fff;
  background: linear-gradient(135deg, rgba(124,58,237,.92), rgba(167,139,250,.92));
  box-shadow: 0 14px 28px rgba(46, 16, 101, 0.18);
}

.hero-chip-a { left: 0; top: 6%; transform: rotate(-8deg); }
.hero-chip-b { right: 4%; top: 4%; transform: rotate(8deg); }
.hero-chip-c { left: 6%; bottom: 6%; transform: rotate(6deg); }
.hero-chip-d { right: 18%; bottom: 0; transform: rotate(-10deg); }

/* Headline */
.hero-h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
  animation: fadeDown 0.7s var(--ease-out) 0.1s both;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
  display: inline-block;
  position: relative;
}
.hero-h1 em::after {
  content: '';
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: -0.08em;
  height: 0.10em;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: drawUnderline 0.9s var(--ease-out) 0.9s forwards;
  opacity: 0.85;
}
@keyframes drawUnderline {
  to { transform: scaleX(1); }
}

/* Subtext */
.v2-hero-sub {
  font-size: clamp(1rem, 2vw, 1.175rem);
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeDown 0.7s var(--ease-out) 0.2s both;
}

/* Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeDown 0.7s var(--ease-out) 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(232, 101, 10, 0.28), 0 1px 3px rgba(232, 101, 10, 0.2);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--orange-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 101, 10, 0.36), 0 2px 6px rgba(232, 101, 10, 0.24);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  background: transparent;
  color: var(--ink-2);
  border: 1.5px solid var(--cream-3);
  border-radius: var(--r-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-ghost:hover {
  border-color: var(--ink-4);
  color: var(--ink);
  background: var(--white);
}

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 0.8125rem;
  color: var(--ink-3);
  font-weight: 400;
  animation: fadeDown 0.7s var(--ease-out) 0.4s both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-item svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--orange);
}
.trust-dot {
  width: 3px; height: 3px;
  background: var(--ink-4);
  border-radius: 50%;
}

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar {
  padding: 0 40px 80px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.04);
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 1px;
  background: var(--cream-3);
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-optical-sizing: auto;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-num sup {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--orange);
  vertical-align: super;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--ink-3);
  font-weight: 400;
}

/* ─────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────── */
.section {
  padding: 100px 40px;
}
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.section-hd {
  margin-bottom: 64px;
}
.section-hd.centered { text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--orange);
}

.section-body {
  font-size: 1.0625rem;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 540px;
}
.section-hd.centered .section-body {
  margin: 0 auto;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro-copy .section-body {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-photo {
  position: relative;
  width: 100%;
}

.photo-frame {
  position: relative;
  min-height: 268px;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(167,139,250,.24) 0%, transparent 34%),
    linear-gradient(180deg, rgba(248,245,255,.98) 0%, rgba(255,255,255,.98) 100%);
  border: 1px solid rgba(124,58,237,.12);
  box-shadow: 0 24px 44px rgba(34,16,69,.1);
}

.section-photo-care .photo-frame {
  background:
    radial-gradient(circle at 78% 16%, rgba(251,113,133,.18) 0%, transparent 28%),
    linear-gradient(180deg, rgba(255,248,251,.98) 0%, rgba(255,255,255,.98) 100%);
}

.photo-skyline {
  position: absolute;
  inset: auto 24px 28px;
  height: 92px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(124,58,237,.08), rgba(124,58,237,.02));
}

.photo-heart-wrap {
  position: absolute;
  inset: 44px 0 auto;
  display: flex;
  justify-content: center;
}

.photo-heart {
  position: relative;
  width: 62px;
  height: 62px;
  background: linear-gradient(180deg, #FB7185 0%, #F43F5E 100%);
  transform: rotate(45deg);
  border-radius: 18px 18px 8px 8px;
  box-shadow: 0 18px 32px rgba(244,63,94,.22);
}

.photo-heart::before,
.photo-heart::after {
  content: '';
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: inherit;
}

.photo-heart::before {
  left: -30px;
  top: 0;
}

.photo-heart::after {
  left: 0;
  top: -30px;
}

.photo-hand {
  position: absolute;
  bottom: 56px;
  width: 112px;
  height: 42px;
  background: linear-gradient(180deg, #F5D0C5 0%, #E7B8AA 100%);
  border-radius: 26px 26px 16px 16px;
  box-shadow: 0 12px 24px rgba(120,113,108,.12);
}

.photo-hand-left {
  left: 46px;
  transform: rotate(12deg);
}

.photo-hand-right {
  right: 46px;
  transform: rotate(-12deg);
}

.photo-card {
  position: absolute;
  width: 92px;
  height: 66px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(124,58,237,.12);
  box-shadow: 0 12px 24px rgba(34,16,69,.08);
}

.photo-card::before,
.photo-card::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,.18), rgba(124,58,237,.06));
}

.photo-card::before {
  top: 20px;
}

.photo-card::after {
  top: 34px;
  right: 28px;
}

.photo-card-a {
  left: 22px;
  top: 26px;
  transform: rotate(-9deg);
}

.photo-card-b {
  right: 24px;
  bottom: 26px;
  transform: rotate(10deg);
}

/* ─────────────────────────────────────────
   WAAROM
───────────────────────────────────────── */
.why-section {
  padding-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 56px auto 0;
}

.why-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 40px 36px 36px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.3s ease;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  opacity: 0.6;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: transform 0.6s var(--ease-out), opacity 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 44px rgba(232, 101, 10, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.05);
  border-color: rgba(232, 101, 10, 0.28);
}
.why-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.why-visual {
  position: relative;
  height: 148px;
  margin: 4px 0 24px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(124,58,237,.16) 0%, transparent 42%),
    linear-gradient(180deg, rgba(248,245,255,.92) 0%, rgba(255,255,255,.92) 100%);
  border: 1px solid rgba(124,58,237,.1);
}

.why-window {
  position: absolute;
  inset: 18px 24px 22px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(124,58,237,.12);
  box-shadow: 0 14px 30px rgba(34,16,69,.08);
}

.why-window-top {
  display: flex;
  gap: 7px;
  padding: 12px 14px 10px;
}

.why-window-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(124,58,237,.3);
}

.why-window-body {
  padding: 8px 14px 14px;
}

.why-window-line {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,.18), rgba(124,58,237,.06));
  margin-bottom: 10px;
}

.why-window-line.lg { width: 82%; }
.why-window-line.sm { width: 58%; margin-bottom: 0; }

.why-mini-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 10px 24px rgba(124,58,237,.18);
}

.why-mini-card-a { right: 18px; top: 22px; transform: rotate(8deg); }
.why-mini-card-b { left: 18px; bottom: 16px; transform: rotate(-7deg); }

.why-visual-care {
  background:
    radial-gradient(circle at 50% 32%, rgba(244,114,182,.18) 0%, transparent 24%),
    linear-gradient(180deg, rgba(255,247,250,.94) 0%, rgba(255,255,255,.94) 100%);
}

.care-heart {
  position: absolute;
  left: 50%;
  top: 34px;
  width: 46px;
  height: 46px;
  background: linear-gradient(180deg, #FB7185 0%, #F43F5E 100%);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 12px 12px 6px 6px;
  box-shadow: 0 12px 24px rgba(244,63,94,.2);
}

.care-heart::before,
.care-heart::after {
  content: '';
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: inherit;
}

.care-heart::before { left: -22px; top: 0; }
.care-heart::after { top: -22px; left: 0; }

.care-hand {
  position: absolute;
  bottom: 24px;
  width: 74px;
  height: 26px;
  background: linear-gradient(180deg, #F5D0C5 0%, #E7B8AA 100%);
  border-radius: 20px 20px 12px 12px;
  box-shadow: 0 10px 18px rgba(120,113,108,.12);
}

.care-hand-left {
  left: calc(50% - 82px);
  transform: rotate(12deg);
}

.care-hand-right {
  right: calc(50% - 82px);
  transform: rotate(-12deg);
}

.care-ring {
  position: absolute;
  inset: 22px;
  border-radius: 22px;
  border: 1px dashed rgba(244,114,182,.28);
}

.why-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.5s var(--ease-out), background 0.4s ease, color 0.3s ease;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  transform: rotate(-6deg) scale(1.06);
}

.why-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.why-desc {
  font-size: 0.9875rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.why-desc em {
  font-style: italic;
  color: var(--orange);
  font-weight: 500;
}

/* ─────────────────────────────────────────
   STEPS
───────────────────────────────────────── */
.steps-section {
  background: var(--cream-2);
  border-top: 1px solid var(--cream-3);
  border-bottom: 1px solid var(--cream-3);
  position: relative;
  overflow: hidden;
}

/* Driftende warme gloed-orbs in de achtergrond */
.steps-section::before,
.steps-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}
.steps-section::before {
  width: 440px; height: 440px;
  background: rgba(232, 101, 10, 0.10);
  top: -120px; left: -160px;
  animation: drift1 20s ease-in-out infinite;
}
.steps-section::after {
  width: 360px; height: 360px;
  background: rgba(245, 158, 11, 0.09);
  bottom: -140px; right: -140px;
  animation: drift2 24s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(50px, 40px) scale(1.05); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, -50px) scale(1.08); }
}
.steps-section .section-inner { position: relative; z-index: 1; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 56px;
  background: none;
  border-radius: 0;
  overflow: visible;
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 10px 8px;
}

.steps-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  width: min(86%, 760px);
  height: calc(100% - 24px);
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 760 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M156 106C230 40 346 34 414 108C471 171 463 260 378 294C284 332 286 414 388 444C468 468 566 446 620 396' fill='none' stroke='%23CBB9EE' stroke-width='4' stroke-linecap='round' stroke-dasharray='4 14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}

.steps-grid::after {
  content: '';
  position: absolute;
  inset: 20px 14% auto;
  height: calc(100% - 40px);
  background:
    radial-gradient(circle at 20% 18%, rgba(251,113,133,.16) 0%, transparent 18%),
    radial-gradient(circle at 78% 26%, rgba(124,58,237,.12) 0%, transparent 20%),
    radial-gradient(circle at 46% 74%, rgba(167,139,250,.18) 0%, transparent 22%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

.step-card {
  background: var(--orange-soft);
  padding: 34px 30px 30px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(232, 101, 10, 0.15);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 30px rgba(34,16,69,.06);
  overflow: visible;
  isolation: isolate;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.3s ease;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: auto 22px 18px auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.14) 0%, rgba(124,58,237,0) 72%);
  z-index: -1;
  pointer-events: none;
}
.step-card::after {
  content: '';
  position: absolute;
  left: 18px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,101,10,.10) 0%, rgba(232,101,10,0) 74%);
  z-index: -1;
  pointer-events: none;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 40px rgba(124,58,237,.12),
    0 8px 18px rgba(34,16,69,.05);
  border-color: rgba(232, 101, 10, 0.24);
}

/* Stapkaart reveal — extra uitgesproken */
.step-card.reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.96);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}
.step-card.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.step-card.reveal-delay-1 { transition-delay: 0.10s; }
.step-card.reveal-delay-2 { transition-delay: 0.22s; }
.step-card.reveal-delay-3 { transition-delay: 0.34s; }
.step-card.reveal-delay-4 { transition-delay: 0.46s; }

.step-card:nth-child(1) {
  margin-top: 8px;
}

.step-card:nth-child(2) {
  margin-top: 74px;
}

.step-card:nth-child(3) {
  margin-top: -8px;
}

.step-card:nth-child(4) {
  margin-top: 54px;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(167,139,250,.16));
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(124,58,237,.08);
}

.step-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(167,139,250,.24));
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  box-shadow:
    inset 0 0 0 1px rgba(124,58,237,.08),
    0 10px 22px rgba(124,58,237,.12);
  transition:
    background 0.45s var(--ease-out),
    color 0.35s ease,
    transform 0.5s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}
.step-icon svg {
  width: 22px; height: 22px;
  transition: transform 0.55s var(--ease-out);
}
.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  box-shadow: 0 14px 28px rgba(124,58,237,.22);
  transform: translateY(-2px) rotate(-4deg);
}
.step-card:hover .step-icon svg {
  transform: scale(1.06);
}

.step-kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.step-body-wrap {
  display: grid;
  gap: 12px;
  padding: 18px 18px 16px;
  border-radius: 28px;
  background: rgba(255,255,255,.58);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
}

.step-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--ink);
  line-height: 1.25;
}

.step-desc {
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.72;
  flex: 1;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--orange);
  background: rgba(124,58,237,.1);
  border-radius: 999px;
  padding: 10px 14px;
  margin-top: auto;
  box-shadow: inset 0 0 0 1px rgba(124,58,237,.08);
}
.step-tag.done {
  color: #0F766E;
  background: rgba(20, 184, 166, 0.12);
}

.steps-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8125rem;
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.steps-note strong { color: var(--ink-2); font-weight: 600; }

/* ─────────────────────────────────────────
   PDF PREVIEW
───────────────────────────────────────── */
.preview-section {
  padding: 100px 40px;
}
.preview-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* PDF mock */
.pdf-mock {
  background: var(--white);
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 8px 32px rgba(0,0,0,0.08),
    0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform 0.4s var(--ease-out);
}
.pdf-mock:hover { transform: rotate(0deg); }

.pdf-header {
  background: linear-gradient(135deg, var(--orange) 0%, #D4560A 100%);
  padding: 24px 24px 20px;
  color: #fff;
}
.pdf-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.pdf-brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.875rem;
  opacity: 0.9;
}
.pdf-date {
  font-size: 0.75rem;
  opacity: 0.7;
}
.pdf-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pdf-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pdf-meta-city {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  opacity: 0.85;
}
.pdf-meta-city svg { width: 12px; height: 12px; }
.pdf-pill {
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
}

.pdf-body { padding: 20px 24px; }

.pdf-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 16px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--cream-3);
}
.pdf-cat:first-child { margin-top: 0; }
.pdf-cat svg { width: 12px; height: 12px; color: var(--orange); }

.pdf-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-2);
}
.pdf-row:last-child { border-bottom: none; }
.pdf-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
}
.pdf-row-info { flex: 1; min-width: 0; }
.pdf-row-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}
.pdf-row-detail {
  font-size: 0.7rem;
  color: var(--ink-3);
  margin-top: 1px;
}
.pdf-row-cancel {
  text-align: right;
  flex-shrink: 0;
}
.pdf-row-phone {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink);
}
.pdf-row-url {
  font-size: 0.65rem;
  color: var(--orange);
  margin-top: 1px;
}
.pdf-footer {
  padding: 12px 24px;
  background: var(--cream-2);
  font-size: 0.65rem;
  color: var(--ink-3);
  text-align: center;
  letter-spacing: 0.03em;
}

/* Feature list side */
.preview-content { }
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 36px; height: 36px;
  background: var(--orange-soft);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon svg { width: 16px; height: 16px; color: var(--orange); }
.feature-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.feature-text span {
  font-size: 0.875rem;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   PRIVACY CALLOUT
───────────────────────────────────────── */
.privacy-section {
  padding: 0 40px 100px;
}
.privacy-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.privacy-card {
  background: var(--orange-soft);
  border: 1px solid rgba(232, 101, 10, 0.15);
  border-radius: var(--r-xl);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, .75fr) auto;
  gap: 40px;
  align-items: center;
}
.privacy-text h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.privacy-text p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 520px;
}
.privacy-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

.privacy-visual {
  display: flex;
  justify-content: center;
}

.privacy-device {
  position: relative;
  width: 220px;
  aspect-ratio: 1 / 1.06;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,245,255,.96) 100%);
  border: 1px solid rgba(124,58,237,.14);
  box-shadow: 0 20px 38px rgba(34,16,69,.1);
}

.privacy-device-top {
  height: 18px;
  margin: 16px auto 0;
  width: 74px;
  border-radius: 999px;
  background: rgba(124,58,237,.12);
}

.privacy-shield {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 92px;
  height: 106px;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, var(--orange) 0%, #5B21B6 100%);
  clip-path: polygon(50% 0%, 84% 12%, 84% 55%, 50% 100%, 16% 55%, 16% 12%);
  box-shadow: 0 18px 28px rgba(124,58,237,.26);
}

.privacy-shield-lock {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 22px;
  transform: translate(-50%, -26%);
  background: #fff;
  border-radius: 8px;
}

.privacy-shield-lock::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -15px;
  width: 22px;
  height: 18px;
  transform: translateX(-50%);
  border: 4px solid #fff;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}

.privacy-pulse {
  position: absolute;
  inset: 28px;
  border-radius: 24px;
  border: 1px dashed rgba(124,58,237,.24);
}
.privacy-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}
.privacy-check {
  width: 24px; height: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.privacy-check svg { width: 12px; height: 12px; color: #fff; }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-section {
  padding-top: 0;
  background: var(--cream-2);
  border-top: 1px solid var(--cream-3);
  border-bottom: 1px solid var(--cream-3);
  position: relative;
  overflow: hidden;
}

.faq-section::before,
.faq-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}

.faq-section::before {
  width: 440px;
  height: 440px;
  background: rgba(232, 101, 10, 0.10);
  top: -120px;
  left: -160px;
  animation: drift1 20s ease-in-out infinite;
}

.faq-section::after {
  width: 360px;
  height: 360px;
  background: rgba(245, 158, 11, 0.09);
  bottom: -140px;
  right: -140px;
  animation: drift2 24s ease-in-out infinite;
}

.faq-section .section-inner {
  position: relative;
  z-index: 1;
}

.faq-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  padding: 34px 32px;
  border-radius: 38px 42px 36px 40px / 32px 36px 42px 38px;
  background:
    radial-gradient(circle at 18% 24%, rgba(124,58,237,.14) 0%, transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(167,139,250,.16) 0%, transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(253,249,255,.94) 100%);
  border: 1px solid rgba(124,58,237,.12);
  box-shadow:
    0 18px 34px rgba(34,16,69,.08),
    0 3px 10px rgba(34,16,69,.04);
}
.faq-head::before {
  content: '';
  position: absolute;
  inset: auto 24px 18px auto;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,.16) 0%, rgba(167,139,250,0) 72%);
  pointer-events: none;
}
.faq-head::after {
  content: '';
  position: absolute;
  left: 20px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,113,133,.12) 0%, rgba(251,113,133,0) 74%);
  pointer-events: none;
}
.faq-head > * {
  position: relative;
  z-index: 1;
}

.faq-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s var(--ease-out), color 0.15s ease;
}
.faq-all-link:hover {
  color: var(--orange-h);
  gap: 10px;
}
.faq-all-link svg { flex-shrink: 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.faq-item:hover {
  border-color: var(--ink-4);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.faq-item[open] {
  border-color: rgba(232, 101, 10, 0.35);
  box-shadow: 0 4px 20px rgba(232, 101, 10, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange); }

.faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), background 0.2s ease;
}
.faq-chevron svg { width: 16px; height: 16px; }
.faq-item[open] .faq-chevron {
  transform: rotate(-180deg);
  background: var(--orange);
  color: #fff;
}

.faq-body {
  padding: 0 24px 22px;
  animation: faqFade 0.4s var(--ease-out);
}
.faq-body p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 720px;
}
.faq-body a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.faq-body a:hover { color: var(--orange-h); }
.faq-body strong { color: var(--ink); font-weight: 600; }

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────── */
.cta-section {
  padding: 0 40px 120px;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner--visual {
  max-width: 1020px;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  text-align: left;
}

.cta-visual {
  display: flex;
  justify-content: center;
}

.cta-visual-board {
  position: relative;
  width: min(100%, 330px);
  min-height: 260px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(167,139,250,.24) 0%, transparent 32%),
    linear-gradient(180deg, rgba(248,245,255,.98) 0%, rgba(255,255,255,.98) 100%);
  border: 1px solid rgba(124,58,237,.12);
  box-shadow: 0 24px 44px rgba(34,16,69,.1);
}

.cta-envelope {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 212px;
  height: 134px;
  transform: translateX(-50%);
  border-radius: 22px;
  background: linear-gradient(180deg, #F4ECFF 0%, #E9DDFF 100%);
  border: 1px solid rgba(124,58,237,.12);
  overflow: hidden;
}

.cta-envelope::before,
.cta-envelope::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 160px;
  height: 160px;
  border-radius: 20px;
  border: 2px solid rgba(124,58,237,.12);
  transform: rotate(45deg);
}

.cta-envelope::before {
  bottom: 60px;
  background: rgba(255,255,255,.35);
}

.cta-envelope::after {
  bottom: -96px;
  background: rgba(255,255,255,.55);
}

.cta-letter {
  position: absolute;
  left: 50%;
  top: 34px;
  width: 182px;
  height: 138px;
  transform: translateX(-50%);
  border-radius: 22px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(124,58,237,.12);
  box-shadow: 0 18px 32px rgba(34,16,69,.08);
  padding: 26px 20px;
}

.cta-letter-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,.18), rgba(124,58,237,.06));
  margin-bottom: 14px;
}

.cta-letter-line.lg { width: 82%; }
.cta-letter-line.sm {
  width: 58%;
  margin-bottom: 0;
}

.cta-check {
  position: absolute;
  right: 42px;
  top: 40px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 18px 28px rgba(124,58,237,.2);
}

.cta-check::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 14px;
  width: 12px;
  height: 22px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(40deg);
}

.cta-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgba(124,58,237,.94), rgba(167,139,250,.94));
  box-shadow: 0 16px 30px rgba(46,16,101,.18);
}

.cta-copy p {
  max-width: 560px;
}

.cta-inner--visual .cta-actions {
  justify-content: flex-start;
}
.cta-inner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.cta-inner h2 em {
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
}
.cta-inner p {
  font-size: 1.0625rem;
  color: var(--ink-2);
  margin-bottom: 36px;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-note {
  font-size: 0.8125rem;
  color: var(--ink-3);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--cream-3);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--cream-2);
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--ink-3);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.8125rem;
  color: var(--ink-3);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--orange); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────
   DARK MODE
───────────────────────────────────────── */
.v2lp[data-theme="dark"] {
  color-scheme: dark;
  --cream:       #120E17;
  --cream-2:     #191320;
  --cream-3:     #2A2036;
  --orange-soft: rgba(124, 58, 237, 0.14);
  --ink:         #FAF6FF;
  --ink-2:       #DDD3EC;
  --ink-3:       #B6A8CB;
  --ink-4:       #897C9E;
  --white:       #1B1523;
  background: var(--cream);
  color: var(--ink);
}

.v2lp[data-theme="dark"] .hero-doc,
.v2lp[data-theme="dark"] .cta-letter,
.v2lp[data-theme="dark"] .photo-card {
  background: rgba(28,22,38,.94);
  border-color: rgba(196,181,253,.18);
}

.v2lp[data-theme="dark"] .hero-doc-title,
.v2lp[data-theme="dark"] .hero-side-title,
.v2lp[data-theme="dark"] .step-title,
.v2lp[data-theme="dark"] .feature-text strong,
.v2lp[data-theme="dark"] .privacy-item,
.v2lp[data-theme="dark"] .cta-inner h2 {
  color: var(--ink);
}

.v2lp[data-theme="dark"] .hero-side-meta,
.v2lp[data-theme="dark"] .hero-check-item,
.v2lp[data-theme="dark"] .stat-label,
.v2lp[data-theme="dark"] .step-desc,
.v2lp[data-theme="dark"] .feature-text span,
.v2lp[data-theme="dark"] .privacy-text p,
.v2lp[data-theme="dark"] .faq-body p,
.v2lp[data-theme="dark"] .cta-inner p,
.v2lp[data-theme="dark"] .cta-note,
.v2lp[data-theme="dark"] .section-body,
.v2lp[data-theme="dark"] .hero-trust {
  color: var(--ink-2);
}

.v2lp[data-theme="dark"] .btn-ghost {
  color: var(--ink-2);
  border-color: rgba(196,181,253,.18);
  background: rgba(255,255,255,.02);
}

.v2lp[data-theme="dark"] .btn-ghost:hover {
  background: rgba(124,58,237,.12);
  border-color: rgba(196,181,253,.28);
  color: var(--ink);
}

/* Hero warm glow — boost for dark mode */
.v2lp[data-theme="dark"] .hero::after {
  background: radial-gradient(
    ellipse at center,
    rgba(124, 58, 237, 0.16) 0%,
    rgba(167, 139, 250, 0.08) 40%,
    transparent 70%
  );
}

/* Stats bar — softer card on dark */
.v2lp[data-theme="dark"] .stats-inner {
  background: var(--white);
  border-color: var(--cream-3);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.28), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.v2lp[data-theme="dark"] .stat-item + .stat-item::before {
  background: rgba(196,181,253,.14);
}

/* Step cards — darker surface */
.v2lp[data-theme="dark"] .step-num {
  background: linear-gradient(135deg, rgba(196,181,253,.22), rgba(167,139,250,.18));
  color: #F5F3FF;
  box-shadow: inset 0 0 0 1px rgba(221,214,254,.18);
}
.v2lp[data-theme="dark"] .step-card:hover .step-num {
  color: #FFFFFF;
}

.v2lp[data-theme="dark"] .why-card,
.v2lp[data-theme="dark"] .step-card,
.v2lp[data-theme="dark"] .faq-item {
  background: var(--white);
  border-color: var(--cream-3);
}

.v2lp[data-theme="dark"] .step-card::before,
.v2lp[data-theme="dark"] .step-card::after {
  border-color: transparent;
}

.v2lp[data-theme="dark"] .step-card:hover {
  background: #241A30;
}

.v2lp[data-theme="dark"] .step-kicker {
  color: var(--ink-3);
}

.v2lp[data-theme="dark"] .step-body-wrap {
  background: rgba(255,255,255,.03);
  box-shadow: inset 0 0 0 1px rgba(196,181,253,.08);
}

.v2lp[data-theme="dark"] .steps-grid::before {
  opacity: .55;
}

/* PDF mockup — keep it a white paper document even in dark mode */
.v2lp[data-theme="dark"] .pdf-mock {
  background: #FFFFFF;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.4);
}
.v2lp[data-theme="dark"] .pdf-row-name,
.v2lp[data-theme="dark"] .pdf-row-phone { color: #1C1917; }
.v2lp[data-theme="dark"] .pdf-row-detail,
.v2lp[data-theme="dark"] .pdf-cat { color: #78716C; }
.v2lp[data-theme="dark"] .pdf-cat { border-bottom-color: #E8E0D5; }
.v2lp[data-theme="dark"] .pdf-row { border-bottom-color: #F5F1E9; }
.v2lp[data-theme="dark"] .pdf-footer {
  background: #F5F1E9;
  color: #78716C;
}

/* Privacy card — warmer glow on dark */
.v2lp[data-theme="dark"] .privacy-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(167, 139, 250, 0.06));
  border-color: rgba(124, 58, 237, 0.24);
}

.v2lp[data-theme="dark"] .why-visual,
.v2lp[data-theme="dark"] .photo-frame,
.v2lp[data-theme="dark"] .cta-visual-board,
.v2lp[data-theme="dark"] .cta-envelope,
.v2lp[data-theme="dark"] .privacy-device,
.v2lp[data-theme="dark"] .why-window {
  background: rgba(23,19,32,.9);
  border-color: rgba(124,58,237,.2);
}

.v2lp[data-theme="dark"] .why-window-line {
  background: linear-gradient(90deg, rgba(196,181,253,.22), rgba(196,181,253,.08));
}

.v2lp[data-theme="dark"] .privacy-pulse {
  border-color: rgba(196,181,253,.24);
}

.v2lp[data-theme="dark"] .photo-skyline,
.v2lp[data-theme="dark"] .cta-letter-line,
.v2lp[data-theme="dark"] .photo-card::before,
.v2lp[data-theme="dark"] .photo-card::after {
  background: linear-gradient(90deg, rgba(196,181,253,.22), rgba(196,181,253,.08));
}

.v2lp[data-theme="dark"] .trust-dot {
  background: rgba(196,181,253,.4);
}

/* FAQ items — slight lift on dark */
.v2lp[data-theme="dark"] .faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.v2lp[data-theme="dark"] .faq-item[open] {
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.14);
}
.v2lp[data-theme="dark"] .faq-section {
  background: #181320;
  border-top-color: rgba(255,255,255,.06);
  border-bottom-color: rgba(255,255,255,.06);
}
.v2lp[data-theme="dark"] .faq-section::before {
  background: rgba(124,58,237,.18);
}
.v2lp[data-theme="dark"] .faq-section::after {
  background: rgba(167,139,250,.14);
}
.v2lp[data-theme="dark"] .step-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(167, 139, 250, 0.06));
  border-color: rgba(124, 58, 237, 0.24);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}
.v2lp[data-theme="dark"] .step-card::before {
  background: radial-gradient(circle, rgba(167,139,250,.22) 0%, rgba(167,139,250,0) 74%);
}
.v2lp[data-theme="dark"] .step-card::after {
  background: radial-gradient(circle, rgba(244,114,182,.14) 0%, rgba(244,114,182,0) 76%);
}
.v2lp[data-theme="dark"] .faq-head {
  background:
    radial-gradient(circle at 18% 24%, rgba(124,58,237,.24) 0%, transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(167,139,250,.18) 0%, transparent 22%),
    linear-gradient(180deg, rgba(26,20,36,.95) 0%, rgba(20,16,28,.95) 100%);
  border-color: rgba(255,255,255,.08);
  box-shadow:
    0 18px 40px rgba(0,0,0,.24),
    0 3px 12px rgba(0,0,0,.16);
}
.v2lp[data-theme="dark"] .faq-head::before {
  background: radial-gradient(circle, rgba(167,139,250,.22) 0%, rgba(167,139,250,0) 74%);
}
.v2lp[data-theme="dark"] .faq-head::after {
  background: radial-gradient(circle, rgba(244,114,182,.14) 0%, rgba(244,114,182,0) 76%);
}

/* Footer */
.v2lp[data-theme="dark"] .footer {
  background: #0F0C09;
  border-top-color: var(--cream-3);
}

/* ─────────────────────────────────────────
   STANDALONE PAGES (FAQ, Contact)
───────────────────────────────────────── */
.v2lp .page-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 100px;
}
.v2lp .page-wrap--narrow { max-width: 620px; }

.v2lp .page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-3);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 36px;
  padding: 6px 0;
  transition: color 0.15s ease, gap 0.2s var(--ease-out);
}
.v2lp .page-back:hover {
  color: var(--orange);
  gap: 10px;
}
.v2lp .page-back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.v2lp .page-hero {
  margin-bottom: 48px;
  animation: fadeDown 0.6s var(--ease-out) both;
}
.v2lp .page-hero .badge {
  margin-bottom: 14px;
}
.v2lp .page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.v2lp .page-hero h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
}
.v2lp .page-hero p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 620px;
}
.v2lp .page-hero p a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.v2lp .page-hero p a:hover { color: var(--orange-h); }

/* Groep titel voor FAQ-categorieën */
.v2lp .faq-group { margin-bottom: 40px; }
.v2lp .faq-group-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  padding-left: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.v2lp .faq-group-title::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 0 10px rgba(232, 101, 10, 0.5);
  flex-shrink: 0;
}

/* Contact CTA onderaan FAQ */
.v2lp .faq-contact-cta {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  text-align: center;
  margin-top: 56px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.v2lp .faq-contact-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 101, 10, 0.10);
}
.v2lp .faq-contact-cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.v2lp .faq-contact-cta p {
  font-size: 0.9375rem;
  color: var(--ink-2);
  margin-bottom: 22px;
  line-height: 1.6;
}

/* ── Contact formulier ─────────────────── */
.v2lp .contact-card {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 44px 44px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  animation: fadeDown 0.6s var(--ease-out) 0.1s both;
}

.v2lp .form-group {
  margin-bottom: 22px;
}

.v2lp .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.v2lp .opt-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ink-3);
  background: var(--cream-2);
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: lowercase;
  letter-spacing: 0;
}

.v2lp .form-input {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--cream-3);
  border-radius: var(--r-md);
  padding: 12px 16px;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.2s ease;
}
.v2lp .form-input:hover {
  border-color: var(--ink-4);
}
.v2lp .form-input:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 101, 10, 0.10);
}
.v2lp .form-input::placeholder {
  color: var(--ink-4);
}
.v2lp textarea.form-input {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}
.v2lp select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239C8C7E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.v2lp .field-error .form-input {
  border-color: #E57373;
  background: #FFF5F5;
}
.v2lp .form-error {
  color: #C53030;
  font-size: 0.8125rem;
  margin-top: 6px;
  font-weight: 500;
}

.v2lp .alert-error {
  background: #FFF5F5;
  border: 1.5px solid #FCA5A5;
  border-radius: var(--r-md);
  padding: 14px 18px;
  color: #C53030;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 22px;
}

.v2lp .alert-success {
  background: var(--white);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.v2lp .alert-success .suc-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}
.v2lp .alert-success .suc-icon svg { width: 32px; height: 32px; }
.v2lp .alert-success h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.v2lp .alert-success p {
  color: var(--ink-2);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.v2lp .alert-success a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}
.v2lp .alert-success a:hover { color: var(--orange-h); }

.v2lp .captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.v2lp .captcha-question {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--orange-soft);
  border: 1.5px solid rgba(232, 101, 10, 0.22);
  border-radius: var(--r-md);
  padding: 11px 18px;
  white-space: nowrap;
}
.v2lp .captcha-input { width: 90px; }
.v2lp .captcha-note {
  font-size: 0.75rem;
  color: var(--ink-3);
  margin-top: 8px;
}

.v2lp .honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.v2lp .submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 28px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(232, 101, 10, 0.28);
  transition: background 0.2s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.v2lp .submit-btn:hover {
  background: var(--orange-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 101, 10, 0.36);
}
.v2lp .submit-btn:active { transform: translateY(0); }

/* Dark-mode tweaks for standalone pages */
.v2lp[data-theme="dark"] .faq-contact-cta,
.v2lp[data-theme="dark"] .contact-card,
.v2lp[data-theme="dark"] .alert-success {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.v2lp[data-theme="dark"] .form-input {
  background: #231A12;
}
.v2lp[data-theme="dark"] .form-input:focus {
  background: #2A1F15;
}
.v2lp[data-theme="dark"] .opt-badge {
  background: #2A1F15;
}
.v2lp[data-theme="dark"] .alert-error {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.4);
  color: #FCA5A5;
}
.v2lp[data-theme="dark"] .form-error { color: #FCA5A5; }
.v2lp[data-theme="dark"] .field-error .form-input {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.4);
}
.v2lp[data-theme="dark"] .alert-success {
  border-color: rgba(34, 197, 94, 0.35);
}

/* Responsive for standalone pages */
@media (max-width: 640px) {
  .v2lp .page-wrap { padding: 36px 20px 80px; }
  .v2lp .contact-card { padding: 28px 24px; }
  .v2lp .faq-contact-cta { padding: 28px 24px; }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    padding: 104px 32px 72px;
  }
  .hero-board {
    width: min(24vw, 270px);
    right: 1vw;
  }
  .hero-inner {
    max-width: 720px;
  }
  .section-intro {
    max-width: 720px;
  }
  .cta-inner--visual {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 32px;
  }
  .preview-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pdf-mock {
    max-width: 420px;
    margin: 0 auto;
    transform: none;
  }
  .pdf-mock:hover { transform: none; }
  .privacy-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .privacy-visual {
    order: 3;
  }
  .privacy-items {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 88px 20px 52px;
  }
  .hero-inner {
    max-width: 100%;
    text-align: center;
  }
  .hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: 280px;
    margin: 0 auto 28px;
  }
  .hero-board {
    left: 50%;
    right: auto;
    top: 12px;
    transform: translateX(-50%);
    width: min(100%, 320px);
    aspect-ratio: 1 / 0.82;
  }
  .hero-doc-main {
    inset: 7% 13% 18% 5%;
    padding: 20px 18px;
  }
  .hero-doc-side {
    width: 40%;
    padding: 14px 14px 13px;
  }
  .hero-chip {
    font-size: .68rem;
    padding: 7px 11px;
  }
  .why-visual {
    height: 132px;
    margin-bottom: 20px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    gap: 10px 14px;
    justify-content: center;
  }
  .trust-dot { display: none; }

  .stats-bar { padding: 0 24px 60px; }
  .stats-inner {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    gap: 24px;
  }
  .stat-item + .stat-item::before {
    width: 40px; height: 1px;
    top: 0; left: 50%;
    transform: translateX(-50%);
  }
  .stat-item { padding: 0; }

  .section { padding: 60px 24px; }

  .section-intro,
  .cta-inner--visual {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .section-intro-copy .section-body,
  .cta-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .section-photo {
    order: -1;
  }
  .photo-frame,
  .cta-visual-board {
    min-height: 220px;
    max-width: 340px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
  .why-card { padding: 32px 26px 28px; }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .steps-grid::before,
  .steps-grid::after { display: none; }
  .step-card { padding: 28px 22px; }

  .preview-section { padding: 60px 24px; }

  .privacy-section { padding: 0 24px 60px; }
  .privacy-card { padding: 32px 28px; }
  .privacy-device {
    width: 188px;
  }

  .cta-section { padding: 0 24px 80px; }
  .cta-inner--visual .cta-actions {
    justify-content: center;
  }
  .footer { padding: 24px 20px; flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero {
    padding: 82px 16px 46px;
  }
  .hero-visual {
    height: 224px;
    margin-bottom: 22px;
  }
  .hero-board {
    width: min(100%, 270px);
  }
  .hero-doc-main {
    padding: 18px 15px 16px;
    border-radius: 22px;
  }
  .hero-doc-title {
    font-size: 1.02rem;
  }
  .hero-doc-lines {
    gap: 7px;
    margin-bottom: 12px;
  }
  .hero-doc-lines span { height: 7px; }
  .hero-check-item {
    font-size: .74rem;
    gap: 8px;
  }
  .hero-check-item span {
    width: 16px;
    height: 16px;
  }
  .hero-check-item span::after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
  }
  .hero-doc-side {
    top: 33%;
    width: 42%;
  }
  .hero-side-title {
    font-size: .9rem;
  }
  .hero-side-meta {
    font-size: .72rem;
  }
  .hero-chip-b,
  .hero-chip-d {
    display: none;
  }
  .stats-bar { padding: 0 16px 52px; }
  .stats-inner {
    padding: 24px 20px;
  }
  .section {
    padding: 54px 16px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 560px;
    padding: 8px 0 0;
  }
  .steps-grid::before,
  .steps-grid::after {
    display: none;
  }
  .why-card,
  .step-card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .step-card:nth-child(1),
  .step-card:nth-child(2),
  .step-card:nth-child(3),
  .step-card:nth-child(4) {
    margin-top: 0;
  }
  .step-card {
    padding: 28px 24px 24px;
    border-radius: 36px 40px 34px 38px / 32px 38px 40px 34px;
  }
  .step-card::before {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 14px;
  }
  .step-card::after {
    left: 14px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }
  .step-top {
    gap: 14px;
  }
  .step-num {
    min-width: 84px;
    height: 36px;
    font-size: .74rem;
  }
  .step-icon {
    width: 54px;
    height: 54px;
  }
  .step-body-wrap {
    padding: 16px 16px 14px;
  }
  .why-visual {
    height: 118px;
  }
  .photo-frame,
  .cta-visual-board {
    min-height: 194px;
  }
  .photo-hand {
    width: 82px;
    height: 32px;
    bottom: 44px;
  }
  .photo-hand-left { left: 30px; }
  .photo-hand-right { right: 30px; }
  .photo-heart {
    width: 48px;
    height: 48px;
  }
  .photo-heart::before,
  .photo-heart::after {
    width: 48px;
    height: 48px;
  }
  .photo-heart::before { left: -23px; }
  .photo-heart::after { top: -23px; }
  .cta-envelope {
    width: 172px;
    height: 110px;
    bottom: 24px;
  }
  .cta-letter {
    width: 148px;
    height: 112px;
    top: 26px;
    padding: 20px 16px;
  }
  .cta-check {
    width: 44px;
    height: 44px;
    right: 32px;
    top: 30px;
  }
  .cta-check::before {
    left: 15px;
    top: 11px;
    width: 10px;
    height: 18px;
  }
  .cta-badge {
    left: 18px;
    top: 18px;
    font-size: .7rem;
    padding: 7px 10px;
  }
  .privacy-device {
    width: 160px;
    border-radius: 24px;
  }
  .privacy-shield {
    width: 78px;
    height: 90px;
  }
  .privacy-shield-lock {
    width: 26px;
    height: 20px;
  }
  .privacy-shield-lock::before {
    width: 18px;
    height: 15px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    gap: 10px;
  }
  .progress-nav {
    display: none;
  }
}

/* ─────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .step-card.reveal { opacity: 1 !important; transform: none !important; }
  .hero-h1 em::after { transform: scaleX(1) !important; }
}
