/* ============ TOKENS ============ */
:root {
  --orange: #F15A22;
  --orange-dark: #d44c1a;
  --cream: #FDF4EC;
  --cream-2: #f7ead9;
  --dark: #1A1A1A;
  --dark-2: #2a2a2a;
  --text: #2e2e2e;
  --muted: #7a7a7a;
  --line: rgba(26, 26, 26, .08);
  --line-dark: rgba(255, 255, 255, .08);
  --display: "Archivo", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 7.5vw, 96px); }
h2 { font-size: clamp(36px, 5.4vw, 68px); }
h3 { font-size: clamp(19px, 1.8vw, 24px); letter-spacing: -0.01em; }

h2 em, h1 em { font-style: italic; color: var(--orange); font-weight: 800; }

.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--orange);
  display: block;
}
.lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 58ch;
}
.on-dark { color: rgba(255, 255, 255, .62); }

/* ============ LAYOUT ============ */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
section.dark { background: var(--dark); color: #fff; }
section.cream { background: var(--cream); color: var(--text); }

/* ============ NAV ============ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fdf4ec;
  border-bottom: 1px solid var(--line);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -6px rgba(241, 90, 34, .55);
}
.logo-icon svg { width: 18px; height: 18px; fill: #fff; }

/* Desktop nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-faq-link {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-faq-link:hover { color: var(--orange); background: rgba(241,90,34,.06); }

/* Inloggen — outline CTA (zelfde vorm als Start nu, maar omlijnd) */
.nav-login {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
  margin-left: 4px;
  line-height: 1;
}
.nav-login:hover { color: var(--orange); border-color: var(--orange); background: rgba(241,90,34,.05); }

/* ── Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: color .15s, background .15s;
  padding: 8px 12px;
  border-radius: 8px;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle { color: var(--orange); background: rgba(241,90,34,.06); }
.nav-dd-arrow {
  font-size: 11px;
  transition: transform .2s;
  display: inline-block;
}
.nav-dropdown.open .nav-dd-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 272px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .17s, transform .17s;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-radius: 2px;
  rotate: 45deg;
}
.nav-dd-item {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .12s;
}
.nav-dd-item:hover { background: #F5F5F5; }
.nav-dd-title { font-weight: 700; font-size: .88rem; color: var(--dark); }
.nav-dd-sub   { font-size: .78rem; color: var(--muted); line-height: 1.4; margin-top: 2px; }

/* ── Mobile hamburger ── */
.nav-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-ham span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* ── Mobile full-screen overlay ── */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateY(0); }

.nav-mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.nav-mob-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #F0F0F0;
  color: var(--dark);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
  flex-shrink: 0;
  line-height: 1;
}
.nav-mob-close:hover { background: #E0E0E0; }

.nav-mob-nav {
  flex: 1;
  padding: 4px 16px;
}
.nav-mob-group { display: flex; flex-direction: column; }
.nav-mob-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 8px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--body);
  border-bottom: 1px dashed var(--border);
  transition: color .12s;
  cursor: pointer;
  text-align: left;
  background: none;
}
.nav-mob-item:hover { color: var(--orange); }
.nav-mob-nav > a:last-child { border-bottom: none; }
.nav-mob-arrow {
  font-size: .95rem;
  color: var(--muted);
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-mob-group.open .nav-mob-arrow { transform: rotate(90deg); }
.nav-mob-sub {
  display: none;
  padding: 2px 8px 10px 16px;
  border-bottom: 1px dashed var(--border);
}
.nav-mob-group.open .nav-mob-sub { display: block; }
.nav-mob-subitem {
  display: block;
  padding: 9px 8px;
  color: var(--text);
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: color .12s, background .12s;
}
.nav-mob-subitem:hover { color: var(--orange); background: rgba(241,90,34,.05); }

.nav-mob-actions {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.nav-mob-actions .btn { text-align: center; justify-content: center; }
.nav-mob-inloggen {
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  padding: 13px 0;
  text-align: center;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  width: 100%;
}
.nav-mob-inloggen:hover { color: var(--orange); border-color: var(--orange); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-ham   { display: flex; }
}

/* ── Shared button ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  transition: transform .15s ease, background .15s, box-shadow .2s;
  box-shadow: 0 6px 18px -8px rgba(241, 90, 34, .7);
  white-space: nowrap;
}
.btn:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(241, 90, 34, .6); }
.btn.big { font-size: 17px; padding: 17px 28px; border-radius: 14px; letter-spacing: -0.01em; }

.trial-bar {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.88);
  padding: 9px 24px;
  background: var(--orange);
  letter-spacing: 0.01em;
  font-family: var(--body);
  font-weight: 500;
}
.trial-bar strong { color: #fff; font-weight: 700; }
.trial-bar .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255,255,255,.55);
  margin: 0 10px;
  vertical-align: middle;
}

/* ============ HERO ============ */
.hero {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(72px, 9vw, 130px);
  background: var(--cream);
  overflow: hidden;
}
.hero-deco {
  position: absolute;
  inset: auto -8% -10% auto;
  width: 54%;
  height: 62%;
  background: radial-gradient(closest-side, rgba(241, 90, 34, .14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #3a3a3a;
  margin-bottom: 26px;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--orange);
  position: relative;
  flex-shrink: 0;
}
.pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 99px;
  border: 2px solid var(--orange);
  opacity: .4;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { transform: scale(.6); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.hero-sub {
  margin-top: 26px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  color: #4a4a4a;
  max-width: 52ch;
}
.hero-cta-row { margin-top: 36px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-demo-link {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1.5px solid var(--dark);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.btn-demo-link:hover { color: var(--orange); border-color: var(--orange); }
.fineprint {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fineprint::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============ PHONE MOCKUPS ============ */
.phone {
  width: 280px;
  background: #0e0e0e;
  border-radius: 42px;
  padding: 14px;
  border: 1px solid #2a2a2a;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .04) inset,
    0 40px 80px -30px rgba(0, 0, 0, .45),
    0 18px 36px -18px rgba(0, 0, 0, .3);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  background: #000;
  border-radius: 99px;
  z-index: 3;
}
.phone-screen {
  background: #0a0a0a;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9/19;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #fff;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: var(--body);
}
.ico-row { display: flex; align-items: center; gap: 5px; }
.signal-dot { width: 4px; border-radius: 1px; background: #fff; }
.signal-dot:nth-child(1) { height: 4px; }
.signal-dot:nth-child(2) { height: 6px; }
.signal-dot:nth-child(3) { height: 8px; }
.signal-dot:nth-child(4) { height: 10px; }
.battery {
  width: 22px;
  height: 11px;
  border: 1.5px solid rgba(255, 255, 255, .7);
  border-radius: 3px;
  position: relative;
  padding: 1px;
}
.battery::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 3px;
  width: 2px;
  height: 5px;
  background: rgba(255, 255, 255, .7);
  border-radius: 1px;
}
.battery span { display: block; background: #fff; height: 100%; width: 78%; border-radius: 1px; }

/* incoming call screen */
.call-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 24px 32px;
  text-align: center;
  background: radial-gradient(140% 60% at 50% 0%, #1c1c1c 0%, #0a0a0a 60%);
}
.call-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F15A22 0%, #ff7a45 100%);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 34px;
  color: #fff;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 30px -10px rgba(241, 90, 34, .6);
  margin-bottom: 16px;
}
.caller-name { font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: -0.01em; }
.caller-num { margin-top: 4px; font-size: 13px; color: rgba(255, 255, 255, .5); }
.caller-status { margin-top: 10px; font-size: 12px; color: rgba(255, 255, 255, .4); display: flex; align-items: center; gap: 7px; }
.caller-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #5fd47b;
  animation: ringPulse 1.4s infinite;
}
@keyframes ringPulse {
  0% { box-shadow: 0 0 0 0 rgba(95, 212, 123, .6); }
  100% { box-shadow: 0 0 0 10px rgba(95, 212, 123, 0); }
}
.call-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 6px;
}
.call-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .6);
}
.call-btn svg { width: 24px; height: 24px; fill: #fff; }
.call-reject { background: #ff3b30; }
.call-accept { background: #34c759; }

/* hero phone stack */
.phone-stack { position: relative; display: grid; place-items: center; min-height: 540px; }
.phone-stack .phone { position: relative; z-index: 2; animation: phone-ring 3s ease-in-out 1.2s infinite; }

@keyframes phone-ring {
  0%, 16%, 100% { transform: translateX(0) rotate(0deg); }
  2%  { transform: translateX(-5px) rotate(-1.5deg); }
  4%  { transform: translateX(5px)  rotate( 1.5deg); }
  6%  { transform: translateX(-5px) rotate(-1.5deg); }
  8%  { transform: translateX(5px)  rotate( 1.5deg); }
  10% { transform: translateX(-3px) rotate(-0.8deg); }
  12% { transform: translateX(3px)  rotate( 0.8deg); }
  14% { transform: translateX(-1px) rotate(-0.3deg); }
}
.float-pill {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .18);
  white-space: nowrap;
  z-index: 3;
  font-family: var(--body);
  color: var(--text);
}
.arr { color: var(--orange); font-weight: 800; font-family: var(--display); }

/* SMS screen */
.sms-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  padding: 18px 0 22px;
}
.sms-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.sms-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F15A22, #ff7a45);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: 19px;
  margin-bottom: 8px;
}
.sms-name { font-family: var(--display); font-weight: 800; font-size: 14px; letter-spacing: -0.01em; color: #fff; }
.sms-sub { font-size: 11px; color: rgba(255, 255, 255, .5); margin-top: 2px; }
.sms-msg {
  margin: 16px 14px 0;
  background: #262628;
  color: #fff;
  padding: 13px 15px;
  border-radius: 18px 18px 18px 6px;
  font-size: 13px;
  line-height: 1.55;
}
.sms-msg a { color: #ff8b5c; text-decoration: underline; text-underline-offset: 2px; }
.sms-time { margin-top: 6px; font-size: 10px; color: rgba(255, 255, 255, .4); margin-left: 18px; }

/* big phone for sms section */
.phone-big { width: 320px; margin: 0 auto; }

/* ============ PROBLEM ============ */
.problem-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem h2 { max-width: 16ch; }
.problem p {
  margin-top: 24px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .68);
  max-width: 46ch;
}
.problem-card {
  background: var(--dark-2);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 14px;
}
.problem-card-inner { display: flex; flex-direction: column; gap: 2px; }
.prob-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 16px;
  border-radius: 14px;
  border-top: 1px solid var(--line-dark);
}
.prob-row:first-child { border-top: none; }
.prob-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: #1a1a1a;
  border: 1px solid var(--line-dark);
  flex-shrink: 0;
}
.prob-ico--hi { background: rgba(241, 90, 34, .12); border-color: rgba(241, 90, 34, .25); }
.prob-txt strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #fff;
}
.prob-txt span { display: block; font-size: 13px; color: rgba(255, 255, 255, .5); margin-top: 2px; }

/* ============ STATS ============ */
.stats { padding-top: 0; }
.stats-head { margin-bottom: 56px; }
.stats-head h2 { max-width: 20ch; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line-dark);
}
.stat {
  padding: 48px 0 10px;
  border-right: 1px solid var(--line-dark);
  padding-right: 30px;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(60px, 9vw, 116px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #fff;
}
.stat--orange .stat-num { color: var(--orange); }
.stat-label { margin-top: 18px; font-size: 15px; color: rgba(255, 255, 255, .6); max-width: 22ch; line-height: 1.5; }
.stats-source { margin-top: 50px; font-size: 12px; color: rgba(255, 255, 255, .35); letter-spacing: 0.02em; }

/* ============ SOLUTION ============ */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.solution .eyebrow { margin-bottom: 14px; }
.solution-body {
  margin-top: 22px;
  color: #4a4a4a;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  max-width: 48ch;
}
.checks { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 600;
  color: var(--dark);
  font-size: 16px;
}
.check-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 900;
}

/* stacked phones */
.phones-stack { position: relative; height: 640px; display: flex; justify-content: center; align-items: center; }
.phones-stack .phone { position: absolute; }
.phone-top { transform: translate(-70px, -80px) rotate(-6deg); z-index: 1; width: 248px; }
.phone-bottom { transform: translate(60px, 80px) rotate(5deg); z-index: 2; width: 268px; }

/* ============ SMS SECTION ============ */
.sms-section { padding-top: 0; }
.sms-grid {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 80px;
  align-items: center;
}
.sms-section h2 { max-width: 18ch; }
.sms-section p {
  margin-top: 22px;
  font-size: clamp(16px, 1.3vw, 19px);
  color: #4a4a4a;
  max-width: 48ch;
  line-height: 1.6;
}
.sms-section .hero-cta-row { margin-top: 34px; }

/* ============ HOW IT WORKS ============ */
.how-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.how-head h2 { max-width: 20ch; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: var(--dark-2);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 30px 26px 26px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, background .2s;
}
.step:hover { transform: translateY(-4px); }
.step-tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}
.step h3 { margin-top: 14px; font-size: 20px; color: #fff; line-height: 1.05; }
.step p { margin-top: 14px; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .58); flex: 1; }
.step-num {
  position: absolute;
  right: 16px;
  bottom: 4px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 124px;
  line-height: 1;
  color: rgba(255, 255, 255, .05);
  letter-spacing: -0.05em;
  pointer-events: none;
}
.step-hi { background: var(--orange); border-color: rgba(255, 255, 255, .08); }
.step-hi .step-tag { color: rgba(255, 255, 255, .85); }
.step-hi h3 { color: #fff; }
.step-hi p { color: rgba(255, 255, 255, .85); }
.step-hi .step-num { color: rgba(0, 0, 0, .12); }

/* ============ PRICING ============ */
.pricing-head { text-align: center; margin-bottom: 52px; }
.pricing-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.pricing-head .lead { margin: 18px auto 0; text-align: center; }
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-featured { background: var(--dark); color: #fff; border-color: var(--dark); }
.plan-name { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.plan-price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 62px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 14px;
  color: var(--dark);
}
.plan-featured .plan-price { color: #fff; }
.plan-price small { font-size: 18px; font-weight: 700; color: var(--muted); letter-spacing: 0; margin-left: 4px; }
.plan-featured .plan-price small { color: rgba(255, 255, 255, .55); }
.plan-sub { margin-top: 10px; font-size: 14px; color: var(--muted); }
.plan-featured .plan-sub { color: rgba(255, 255, 255, .6); }
.plan ul { list-style: none; margin: 26px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #555;
}
.plan-featured li { color: rgba(255, 255, 255, .88); }
.plan li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.plan-btn {
  margin-top: auto;
  justify-content: center;
  width: 100%;
  padding: 14px 22px;
  font-size: 16px;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
}
.plan-btn:hover { background: #000; transform: none; box-shadow: none; }
.plan-featured .plan-btn { background: var(--orange); }
.plan-featured .plan-btn:hover { background: var(--orange-dark); }
.plan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--orange);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
}
.trust-row {
  text-align: center;
  margin-top: 32px;
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row span::before { content: "✓"; color: var(--orange); font-weight: 900; }
.sep { width: 4px; height: 4px; border-radius: 99px; background: #d4d4d4; display: inline-block; }
.sep::before { display: none; }

/* ============ FAQ ============ */
.faq-head { text-align: center; margin-bottom: 50px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: rgba(241, 90, 34, .4); box-shadow: 0 12px 32px -16px rgba(241, 90, 34, .18); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color .15s;
}
.faq-q:hover { color: var(--orange); }
.faq-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: background .2s, transform .25s;
}
.faq-plus::before, .faq-plus::after {
  content: "";
  position: absolute;
  background: var(--text);
  width: 12px;
  height: 2px;
  border-radius: 1px;
  transition: transform .25s;
}
.faq-plus::after { transform: rotate(90deg); }
.faq-item.open .faq-plus { background: var(--orange); }
.faq-item.open .faq-plus::before, .faq-item.open .faq-plus::after { background: #fff; }
.faq-item.open .faq-plus::after { transform: rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner {
  padding: 0 26px 24px;
  color: #4a4a4a;
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 60ch;
}
.faq-a-inner a { color: var(--orange); font-weight: 600; }
.faq-a-inner a:hover { text-decoration: underline; }

/* ============ SIGNUP / FORM ============ */
.signup {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.signup::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(closest-side, rgba(241, 90, 34, .18), transparent 70%);
  pointer-events: none;
}
.signup-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.signup h2 { max-width: 16ch; }
.signup-body {
  margin-top: 22px;
  color: rgba(255, 255, 255, .66);
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 40ch;
  line-height: 1.6;
}
.signup-meta { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.signup-row { display: flex; align-items: center; gap: 14px; font-size: 15px; color: rgba(255, 255, 255, .78); }
.signup-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(241, 90, 34, .15);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}
.form-card {
  background: #fff;
  color: var(--text);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: #1a1a1a; letter-spacing: 0.01em; }
.field input, .field select,
.tel-wrap input, .tel-wrap select {
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid #e5e0d8;
  background: #fcf9f4;
  color: var(--text);
  width: 100%;
  transition: border .15s, background .15s;
}
.field input:focus, .field select:focus,
.tel-wrap input:focus, .tel-wrap select:focus {
  outline: 0;
  border-color: var(--orange);
  background: #fff;
}
.tel-wrap { display: flex; gap: 8px; }
.tel-wrap select { width: 130px; flex-shrink: 0; padding-right: 10px; }
.tel-wrap input { flex: 1; }
.form-submit-btn { margin-top: 8px; width: 100%; justify-content: center; border-radius: 12px; }
.form-error {
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #d63031;
  text-align: center;
  min-height: 1.2em;
  line-height: 1.4;
}
.form-msg--ok { color: #16a34a; }
.form-foot { margin-top: 14px; font-size: 12.5px; color: var(--muted); text-align: center; line-height: 1.5; }

/* form success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 50px 20px;
  text-align: center;
}
.success-check {
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-check svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-success h3 { font-family: var(--display); font-size: 22px; font-weight: 900; color: var(--dark); }
.form-success p { color: #555; font-size: 15px; max-width: 32ch; line-height: 1.6; }

/* ============ LOGIN MODAL ============ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 26, 26, .55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--cream);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 4px;
  border-radius: 6px;
  transition: color .15s;
}
.modal-close:hover { color: var(--dark); }
.modal-close svg { display: block; width: 20px; height: 20px; }
.modal h2 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  line-height: 1.1;
}
.modal h2 em { font-style: italic; color: var(--orange); }
.modal-sub { font-size: 0.9rem; color: #666; margin-bottom: 32px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--dark); letter-spacing: 0.03em; }
.form-group input {
  font-family: var(--body);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--dark);
  background: white;
  border: 2px solid rgba(0, 0, 0, .1);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .15s;
  width: 100%;
}
.form-group input::placeholder { color: #bbb; }
.form-group input:focus { border-color: var(--orange); }
.input-wrap { position: relative; }
.input-wrap input { padding-right: 44px; width: 100%; }
.toggle-pw {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  padding: 4px;
  line-height: 1;
  transition: color .15s;
}
.toggle-pw:hover { color: #555; }
.modal-forgot-link {
  display: block;
  text-align: right;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-top: 6px;
}
.modal-forgot-link:hover { text-decoration: underline; }
.modal-submit {
  margin-top: 22px;
  width: 100%;
  background: var(--orange);
  color: white;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  padding: 15px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  box-shadow: 0 8px 24px rgba(241, 90, 34, .25);
}
.modal-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.modal-footer { margin-top: 20px; text-align: center; font-size: 0.83rem; color: var(--muted); }
.modal-footer a { color: var(--orange); text-decoration: none; font-weight: 600; }
.modal-footer a:hover { text-decoration: underline; }

/* ============ FOOTER ============ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .6);
  padding: 60px 0 40px;
  border-top: 1px solid var(--line-dark);
}
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.foot-brand { display: flex; flex-direction: column; gap: 10px; max-width: 280px; }
.foot-brand .logo { color: #fff; }
.foot-brand p { font-size: 14px; color: rgba(255, 255, 255, .5); }
.foot-links { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
.foot-links a { font-size: 14px; color: rgba(255, 255, 255, .65); transition: color .15s; }
.foot-links a:hover { color: var(--orange); }
.foot-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-dark); font-size: 12.5px; color: rgba(255, 255, 255, .4); text-align: center; }
.foot-bottom a { color: var(--orange); }

/* ============ ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid,
  .problem-grid,
  .solution-grid,
  .sms-grid,
  .signup-grid { grid-template-columns: 1fr; gap: 50px; }

  .stats-row { grid-template-columns: 1fr; gap: 0; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line-dark); padding: 30px 0; }
  .stat:last-child { border-bottom: 0; }

  .steps-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .plans { grid-template-columns: 1fr; max-width: 480px; }

  .phone-stack { min-height: 520px; }
  .phones-stack { height: 560px; }
  .phones-stack .phone { width: 240px; }
  .phone-top { transform: translate(-44px, -60px) rotate(-6deg); }
  .phone-bottom { transform: translate(36px, 60px) rotate(5deg); }
}

@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .wrap { padding: 0 18px; }
  section { padding: 68px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .how-head { flex-direction: column; align-items: flex-start; }
  .foot-grid { flex-direction: column; }
  .faq-q { font-size: 15px; padding: 18px 20px; }
  .faq-a-inner { padding: 0 20px 20px; }
  .modal { padding: 36px 24px; }

  /* stacked phones mobile fix: toon alleen de SMS-telefoon, groter */
  .phones-stack {
    height: auto;
    align-items: center;
    padding: 10px 0 24px;
  }
  .phone-top { display: none; }
  .phones-stack .phone {
    position: relative;
    width: min(260px, 80vw);
  }
  .phone-bottom {
    transform: none;
    z-index: 1;
  }
}

/* ── WACHTWOORD STERKTE (aanmeldformulier) ── */
.pw-sterkte-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.pw-sterkte-bar {
  flex: 1;
  height: 4px;
  background: rgba(0,0,0,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.pw-sterkte-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.3s ease, background 0.3s ease;
  width: 0%;
}
.pw-sterkte-label {
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 55px;
  text-align: right;
  transition: color 0.3s;
}
.btn-pw-genereer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--orange);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 0 2px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-pw-genereer:hover { opacity: 0.7; }

/* ── WACHTWOORD GENERATOR POPUP (aanmeldformulier) ── */
.pw-genereer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pw-genereer-modal {
  background: white;
  border-radius: 20px;
  padding: 28px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.pw-genereer-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(241,90,34,0.35);
}
.pw-genereer-kop {
  font-size: 1.15rem;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: -0.4px;
  margin-bottom: 5px;
}
.pw-genereer-sub {
  font-size: 0.83rem;
  color: #7a7a7a;
  margin-bottom: 18px;
  line-height: 1.5;
}
.pw-genereer-ww-wrap {
  background: #f5f5f4;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.pw-genereer-tekst {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
  word-break: break-all;
  flex: 1;
}
.pw-genereer-oog {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  line-height: 0;
  transition: color 0.15s;
}
.pw-genereer-oog:hover { color: #333; }
.pw-genereer-eisen {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pw-eis-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 100px;
  padding: 3px 10px;
}
.pw-genereer-acties {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pw-genereer-gebruik {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}
.pw-genereer-gebruik:hover { background: var(--orange-dark); }
.pw-genereer-rij {
  display: flex;
  gap: 8px;
}
.pw-genereer-nieuw,
.pw-genereer-kopieer {
  flex: 1;
  background: #f5f5f4;
  color: #1a1a1a;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 10px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.pw-genereer-nieuw:hover,
.pw-genereer-kopieer:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.15);
}
.pw-genereer-annuleer {
  background: none;
  border: none;
  color: #aaa;
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0 0;
  text-align: center;
  transition: color 0.15s;
}
.pw-genereer-annuleer:hover { color: #333; }

/* ── WACHTWOORD POPUP (stap 2 aanmelding) ── */
.ww-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ww-popup-modal {
  background: white;
  border-radius: 22px;
  padding: 32px 28px 28px;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}
.ww-popup-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(241,90,34,0.4);
}
.ww-popup-kop {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.ww-popup-sub {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.55;
  margin-bottom: 22px;
}
.ww-popup-veld {
  margin-bottom: 14px;
}
.ww-popup-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #444;
}
.ww-popup-input {
  width: 100%;
  padding: 11px 44px 11px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.ww-popup-input:focus { border-color: var(--orange); }
.ww-popup-btn {
  width: 100%;
  margin-top: 16px;
}

/* Voorstel kaart (inline in wachtwoord popup) */
.ww-voorstel-kaart {
  background: #f5f5f4;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 14px 16px 12px;
  margin-top: 10px;
}
.ww-voorstel-rij {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ww-voorstel-tekst {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
  flex: 1;
  word-break: break-all;
}
.ww-voorstel-oog,
.ww-voorstel-ververs {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  font-size: 1rem;
}
.ww-voorstel-oog:hover,
.ww-voorstel-ververs:hover { color: #333; background: rgba(0,0,0,0.06); }
.ww-voorstel-eisen {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.ww-voorstel-gebruik {
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 9px;
  padding: 10px 16px;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s;
}
.ww-voorstel-gebruik:hover { background: var(--orange-dark); }
