/* ─────────────────────────────────────────────────────
   ESTIMR — Website CSS (commerciële marketingsite)
   Losgekoppeld van app.css — eigen designtaal.
   Marketingsite: Fraunces + DM Sans, licht/crème
   App-mockups:   Bebas Neue + Inter, donker (#111)
   Myosotis IT Services brand DNA (gelijk aan Strive5)
   ───────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500&family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design tokens: marketingsite ─────────────────── */
:root {
  --w-amber:          #D97706;
  --w-amber-light:    #FDE68A;
  --w-amber-pale:     #FFFBEB;
  --w-amber-dark:     #92400E;
  --w-amber-mid:      #F59E0B;

  --w-ink:            #1C1917;
  --w-ink-mid:        #44403C;
  --w-ink-soft:       #78716C;
  --w-ink-faint:      #A8A29E;
  --w-cream:          #FAFAF9;
  --w-white:          #FFFFFF;
  --w-border:         #E7E5E4;
  --w-border-soft:    #F5F5F4;

  /* App-tokens — spiegelen de echte app exact */
  --app-bg:           #111111;
  --app-bg-nav:       #0D0D0D;
  --app-bg-card:      #161616;
  --app-bg-2:         #1C1C1C;
  --app-border:       rgba(255,255,255,0.06);
  --app-border-2:     rgba(255,255,255,0.10);
  --app-amber:        #E8A020;
  --app-amber-faint:  rgba(232,160,32,0.10);
  --app-amber-border: rgba(232,160,32,0.28);
  --app-text:         #ffffff;
  --app-muted:        #A0A0A0;
  --app-dim:          #555555;
  --app-success:      #4ade80;
  --app-danger:       #f87171;

  /* Typografie */
  --w-font-display:   'Fraunces', Georgia, serif;
  --w-font-body:      'DM Sans', system-ui, sans-serif;
  --app-font-display: 'Bebas Neue', sans-serif;
  --app-font-body:    'Inter', system-ui, sans-serif;

  /* Ruimte & vorm */
  --w-r-sm:   6px;
  --w-r-md:   12px;
  --w-r-lg:   24px;
  --w-r-xl:   40px;

  --w-shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --w-shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --w-shadow-lg:   0 12px 48px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.06);
  --w-shadow-dark: 0 20px 60px rgba(0,0,0,.30), 0 4px 16px rgba(0,0,0,.20);

  --w-max-w:       1160px;
  --w-section-v:   96px;
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* ── Layout ───────────────────────────────────────── */
.w-container {
  max-width: var(--w-max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Gedeelde typografie ──────────────────────────── */
.w-section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--w-amber);
  margin-bottom: 12px;
  display: block;
}

.w-section-title {
  font-family: var(--w-font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--w-ink);
  margin-bottom: 16px;
}

.w-section-title em { font-style: italic; color: var(--w-amber); }

.w-section-lead {
  font-size: 17px;
  color: var(--w-ink-mid);
  font-weight: 300;
  line-height: 1.65;
}

/* ── Knoppen ──────────────────────────────────────── */
.w-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: var(--w-r-md);
  font-family: var(--w-font-body);
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.w-btn-amber {
  padding: 14px 28px;
  font-size: 16px;
  background: var(--w-amber);
  color: white;
  box-shadow: 0 4px 20px rgba(217,119,6,0.25);
}
.w-btn-amber:hover {
  background: #B45309;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217,119,6,0.30);
}

.w-btn-outline {
  padding: 13px 24px;
  font-size: 15px;
  border: 1.5px solid var(--w-border);
  color: var(--w-ink-mid);
  background: transparent;
}
.w-btn-outline:hover {
  border-color: var(--w-ink-faint);
  color: var(--w-ink);
  background: var(--w-cream);
}

.w-btn-ghost-dark {
  padding: 13px 24px;
  font-size: 15px;
  border-radius: var(--w-r-md);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.75);
  background: transparent;
  font-family: var(--w-font-body);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.w-btn-ghost-dark:hover {
  border-color: rgba(255,255,255,0.40);
  color: white;
}

/* ─────────────────────────────────────────────────────
   NAVIGATIE
   ───────────────────────────────────────────────────── */
.w-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--w-border-soft);
  transition: box-shadow 0.2s;
}

.w-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--w-max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.w-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.w-nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--w-amber);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.w-nav-logo-mark svg { width: 18px; height: 18px; }

.w-nav-logo-text {
  font-family: var(--w-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--w-ink);
  letter-spacing: -0.3px;
}

.w-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.w-nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 15px;
  color: var(--w-ink-soft);
  text-decoration: none;
  border-radius: var(--w-r-sm);
  transition: color 0.15s, background 0.15s;
}
.w-nav-links a:hover { color: var(--w-ink); background: var(--w-border-soft); }

.w-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.w-nav-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 13px;
  color: var(--w-ink-soft);
  border: 1px solid var(--w-border);
  border-radius: var(--w-r-sm);
  cursor: pointer;
  background: transparent;
  transition: border-color 0.15s;
  font-family: var(--w-font-body);
}
.w-nav-lang:hover { border-color: var(--w-ink-faint); }

.w-nav-signin {
  padding: 7px 14px;
  font-size: 15px;
  color: var(--w-ink-mid);
  text-decoration: none;
  border-radius: var(--w-r-sm);
  transition: color 0.15s, background 0.15s;
  font-family: var(--w-font-body);
}
.w-nav-signin:hover { color: var(--w-ink); background: var(--w-border-soft); }

.w-nav-start {
  padding: 9px 18px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  background: var(--w-amber);
  border-radius: var(--w-r-sm);
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.w-nav-start:hover { background: #B45309; transform: translateY(-1px); }

.w-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.w-nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--w-ink-mid);
  border-radius: 2px;
  display: block;
}

/* ─────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────── */
.w-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--w-white);
  overflow: hidden;
  position: relative;
}
.w-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -160px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(217,119,6,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.w-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.w-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  background: var(--w-amber-pale);
  border: 1px solid var(--w-amber-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--w-amber-dark);
  margin-bottom: 24px;
}
.w-hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--w-amber);
  border-radius: 50%;
  animation: w-pulse 2s ease-in-out infinite;
}
@keyframes w-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.w-hero-h1 {
  font-family: var(--w-font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--w-ink);
  margin-bottom: 22px;
}
.w-hero-h1 em { font-style: italic; color: var(--w-amber); }

.w-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--w-ink-mid);
  max-width: 440px;
  margin-bottom: 36px;
  font-weight: 300;
}

.w-hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.w-hero-cta-note {
  font-size: 14px;
  color: var(--w-ink-soft);
}
.w-hero-cta-note strong { color: var(--w-ink-mid); font-weight: 500; }

.w-hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--w-border-soft);
  flex-wrap: wrap;
}
.w-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--w-ink-soft);
}
.w-trust-item svg { width: 14px; height: 14px; color: var(--w-amber); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────
   APP-MOCKUP: VOTINGSCHERM (hero)
   Weerspiegelt exact de echte app — donker thema,
   Bebas Neue + Inter, amber #E8A020
   ───────────────────────────────────────────────────── */
.w-hero-visual { position: relative; }

.app-chrome {
  background: var(--app-bg);
  border-radius: var(--w-r-lg);
  box-shadow: var(--w-shadow-dark);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.app-chrome-bar {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  background: #0A0A0A;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 6px;
}
.app-chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.app-chrome-dot.red    { background: #FF5F57; }
.app-chrome-dot.yellow { background: #FFBD2E; }
.app-chrome-dot.green  { background: #28C840; }
.app-chrome-url {
  flex: 1;
  margin-left: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  font-family: monospace;
}

/* Echte app-navigatie: nav-bg #0D0D0D, Bebas Neue wordmark */
.app-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 48px;
  background: var(--app-bg-nav);
  border-bottom: 1px solid var(--app-border);
}
.app-nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-nav-mark {
  width: 28px; height: 28px;
  background: var(--app-amber);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.app-nav-mark svg { width: 14px; height: 14px; }
.app-nav-wordmark {
  font-family: var(--app-font-display);
  font-size: 1.35rem;
  color: white;
  letter-spacing: 0.08em;
  line-height: 1;
}
.app-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-room-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--app-dim);
  background: var(--app-bg-card);
  border: 1px solid var(--app-border-2);
  border-radius: 20px;
  padding: 3px 10px;
}
.app-room-badge span {
  color: var(--app-amber);
  font-family: var(--app-font-display);
  font-size: 0.8rem;
  letter-spacing: 0.10em;
}
.app-nav-link {
  font-family: var(--app-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--app-dim);
}

/* App main content area */
.app-main {
  padding: 20px 16px 16px;
}

/* Story titel — Bebas Neue centreerd, zoals in echte app */
.app-story-title {
  font-family: var(--app-font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: white;
  text-align: center;
  line-height: 1;
  margin-bottom: 3px;
}
.app-story-desc {
  font-family: var(--app-font-body);
  font-size: 11px;
  color: var(--app-dim);
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

/* Vote-statusbalk — zoals echte app */
.app-vote-bar {
  background: var(--app-bg-card);
  border: 1px solid var(--app-border);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.app-vote-count {
  font-family: var(--app-font-display);
  font-size: 1.3rem;
  color: var(--app-amber);
  letter-spacing: 0.05em;
  line-height: 1;
}
.app-vote-label {
  font-family: var(--app-font-body);
  font-size: 11px;
  color: var(--app-muted);
  margin-left: 4px;
}
.app-vote-chips {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.app-vote-chip {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 2px 6px 2px 3px;
  border-radius: 20px;
  font-family: var(--app-font-body);
  font-size: 10px;
  background: var(--app-bg-2);
  border: 1px solid var(--app-border);
  color: var(--app-dim);
}
.app-vote-chip.voted {
  background: var(--app-amber-faint);
  border-color: var(--app-amber-border);
  color: var(--app-amber);
}
.app-vote-chip-avatar {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--app-bg-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--app-font-display);
  font-size: 9px;
  color: var(--app-muted);
}
.app-vote-chip.voted .app-vote-chip-avatar {
  background: var(--app-amber-faint);
  color: var(--app-amber);
}

.app-bar-actions {
  display: flex;
  gap: 6px;
}
.app-btn-reveal {
  padding: 5px 10px;
  background: var(--app-amber);
  color: #111;
  border: none;
  border-radius: 5px;
  font-family: var(--app-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.app-btn-revote {
  padding: 5px 10px;
  background: var(--app-bg-2);
  color: var(--app-muted);
  border: 1px solid var(--app-border-2);
  border-radius: 5px;
  font-family: var(--app-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

/* Kies-een-kaart instructie */
.app-cards-instruction {
  font-family: var(--app-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--app-dim);
  text-align: center;
  margin-bottom: 10px;
}

/* Kaartdek — geschaalde versie van echte kaarten (72×102 → ~46×65) */
.app-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 8px;
}
.app-card {
  width: 46px; height: 65px;
  border-radius: 7px;
  background: var(--app-bg-card);
  border: 1.5px solid var(--app-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.app-card.selected {
  border-color: var(--app-amber);
  background: var(--app-amber-faint);
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(232,160,32,0.18);
}
.app-card-corner {
  position: absolute;
  top: 4px; left: 5px;
  font-family: var(--app-font-display);
  font-size: 8px;
  color: var(--app-dim);
  line-height: 1;
}
.app-card.selected .app-card-corner { color: var(--app-amber); opacity: 0.6; }
.app-card-value {
  font-family: var(--app-font-display);
  font-size: 1.4rem;
  color: var(--app-muted);
  line-height: 1;
}
.app-card.selected .app-card-value { color: var(--app-amber); }
/* Speciale kaarten iets groter */
.app-card.special { width: 54px; height: 76px; }
.app-card.special .app-card-value { font-size: 1.6rem; }

/* Floating badge linksonder de mockup */
.app-mockup-float {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: white;
  border: 1px solid var(--w-border);
  border-radius: var(--w-r-md);
  padding: 11px 14px;
  box-shadow: var(--w-shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}
.app-float-icon {
  width: 34px; height: 34px;
  background: var(--w-amber-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.app-float-text strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--w-ink);
}
.app-float-text span { font-size: 12px; color: var(--w-ink-soft); }

/* ─────────────────────────────────────────────────────
   LOGO-BAND
   ───────────────────────────────────────────────────── */
.w-logos {
  padding: 44px 0;
  border-top: 1px solid var(--w-border-soft);
  border-bottom: 1px solid var(--w-border-soft);
  background: var(--w-cream);
}
.w-logos-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--w-ink-faint);
  font-weight: 500;
  margin-bottom: 24px;
}
.w-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.w-logo-ph {
  height: 20px;
  background: var(--w-border);
  border-radius: 4px;
  opacity: 0.45;
}

/* ─────────────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────────────── */
.w-how {
  padding: var(--w-section-v) 0;
  background: var(--w-white);
}
.w-how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.w-how-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
.w-how-step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--w-border-soft);
  cursor: pointer;
}
.w-how-step:first-child { padding-top: 0; }
.w-how-step:last-child  { border-bottom: none; }

.w-step-num {
  width: 36px; height: 36px;
  border: 2px solid var(--w-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--w-font-display);
  font-size: 15px;
  color: var(--w-ink-faint);
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.w-how-step.active .w-step-num { border-color: var(--w-amber); color: var(--w-amber); }

.w-step-title {
  font-family: var(--w-font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--w-ink);
  margin-bottom: 5px;
}
.w-step-desc {
  font-size: 15px;
  color: var(--w-ink-soft);
  line-height: 1.6;
  font-weight: 300;
}

/* Right: resultaten-mockup (hoe het er na onthulling uitziet) */
.w-how-screen {
  position: sticky;
  top: 90px;
}
.w-screen-card {
  background: var(--app-bg);
  border-radius: var(--w-r-lg);
  padding: 24px;
  box-shadow: var(--w-shadow-dark);
  border: 1px solid rgba(255,255,255,0.05);
}
.w-screen-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.w-screen-dot { width: 10px; height: 10px; border-radius: 50%; }

.w-screen-sprint {
  font-family: var(--app-font-display);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--app-dim);
  margin-bottom: 4px;
}
.w-screen-story {
  font-family: var(--app-font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.w-vote-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.w-vote-row:last-of-type { border-bottom: none; }
.w-voter-name {
  font-family: var(--app-font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.w-voter-card {
  width: 34px; height: 46px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--app-font-display);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.w-voter-card.revealed  { background: var(--app-amber); color: #111; }
.w-voter-card.waiting   { background: rgba(255,255,255,0.06); color: var(--app-dim); border: 1px solid rgba(255,255,255,0.08); }
.w-voter-card.outlier   { background: #EF4444; color: white; }

.w-consensus {
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(232,160,32,0.10);
  border: 1px solid rgba(232,160,32,0.20);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.w-consensus-label { font-family: var(--app-font-body); font-size: 11px; color: rgba(255,255,255,0.45); }
.w-consensus-sub   { font-family: var(--app-font-body); font-size: 10px; color: rgba(255,255,255,0.30); margin-top: 2px; }
.w-consensus-value {
  font-family: var(--app-font-display);
  font-size: 2rem;
  color: var(--app-amber);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* ─────────────────────────────────────────────────────
   FEATURES
   ───────────────────────────────────────────────────── */
.w-features {
  padding: var(--w-section-v) 0;
  background: var(--w-cream);
}
.w-features-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 64px;
}
.w-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.w-feature-card {
  padding: 28px;
  background: var(--w-white);
  border: 1px solid var(--w-border);
  border-radius: var(--w-r-lg);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.w-feature-card:hover {
  border-color: var(--w-amber-light);
  box-shadow: var(--w-shadow-md);
  transform: translateY(-2px);
}
.w-feature-card.highlight {
  border-color: var(--w-amber-light);
  background: var(--w-amber-pale);
}
.w-feature-icon {
  width: 44px; height: 44px;
  background: var(--w-amber-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.w-feature-card.highlight .w-feature-icon { background: rgba(255,255,255,0.65); }
.w-feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w-amber-dark);
  background: rgba(217,119,6,0.10);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.w-feature-title {
  font-family: var(--w-font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--w-ink);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.w-feature-desc {
  font-size: 15px;
  color: var(--w-ink-soft);
  line-height: 1.6;
  font-weight: 300;
}

/* ─────────────────────────────────────────────────────
   TALEN
   ───────────────────────────────────────────────────── */
.w-languages {
  padding: 64px 0;
  background: var(--w-amber-pale);
  border-top: 1px solid var(--w-amber-light);
  border-bottom: 1px solid var(--w-amber-light);
}
.w-lang-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}
.w-lang-text { flex: 1; min-width: 220px; }
.w-lang-text h3 {
  font-family: var(--w-font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.3px;
  color: var(--w-ink);
  margin-bottom: 8px;
}
.w-lang-text p { font-size: 15px; color: var(--w-ink-soft); font-weight: 300; line-height: 1.65; }

.w-lang-grid { display: flex; flex-wrap: wrap; gap: 8px; flex: 2; }
.w-lang-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--w-white);
  border: 1px solid var(--w-amber-light);
  border-radius: 999px;
  font-size: 14px;
  color: var(--w-ink-mid);
  transition: border-color 0.15s;
  font-family: var(--w-font-body);
}
.w-lang-chip:hover { border-color: var(--w-amber); }
.w-lang-chip.more  { opacity: 0.6; font-size: 13px; color: var(--w-ink-soft); }
.w-lang-flag { font-size: 18px; line-height: 1; }

/* ─────────────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────────────── */
.w-pricing {
  padding: var(--w-section-v) 0;
  background: var(--w-white);
}
.w-pricing-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 56px;
}

.w-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.w-billing-toggle span { font-size: 14px; color: var(--w-ink-soft); }
.w-billing-toggle span.active { color: var(--w-ink); font-weight: 500; }

.w-toggle-sw {
  width: 40px; height: 22px;
  background: var(--w-border);
  border-radius: 99px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  border: none;
  outline: none;
}
.w-toggle-sw.yearly { background: var(--w-amber); }
.w-toggle-sw::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
}
.w-toggle-sw.yearly::after { transform: translateX(18px); }

.w-save-pill {
  background: var(--w-amber-pale);
  border: 1px solid var(--w-amber-light);
  color: var(--w-amber-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 99px;
}

.w-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.w-price-card {
  border: 1px solid var(--w-border);
  border-radius: var(--w-r-lg);
  padding: 32px;
  background: var(--w-white);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.w-price-card:hover { transform: translateY(-3px); box-shadow: var(--w-shadow-md); }

/* Featured = donkere ink card, identiek aan Strive5-premium */
.w-price-card.featured {
  border-color: var(--w-amber);
  background: var(--w-ink);
  color: white;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.w-price-card.featured:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0,0,0,0.30); }

.w-popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--w-amber);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--w-font-body);
}

.w-price-tier {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--w-ink-soft);
  margin-bottom: 10px;
  font-family: var(--w-font-body);
}
.w-price-card.featured .w-price-tier { color: rgba(255,255,255,0.45); }

.w-price-amount {
  font-family: var(--w-font-display);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -2px;
  color: var(--w-ink);
  line-height: 1;
  margin-bottom: 4px;
}
.w-price-card.featured .w-price-amount { color: white; }

.w-price-period { font-size: 14px; color: var(--w-ink-soft); margin-bottom: 20px; }
.w-price-card.featured .w-price-period { color: rgba(255,255,255,0.40); }

.w-price-desc {
  font-size: 15px;
  color: var(--w-ink-soft);
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 20px;
}
.w-price-card.featured .w-price-desc { color: rgba(255,255,255,0.60); }

.w-price-divider {
  height: 1px;
  background: var(--w-border-soft);
  margin: 20px 0;
}
.w-price-card.featured .w-price-divider { background: rgba(255,255,255,0.08); }

.w-price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px;
}
.w-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--w-ink-mid);
  font-family: var(--w-font-body);
}
.w-price-card.featured .w-price-features li { color: rgba(255,255,255,0.70); }
.w-price-features li::before {
  content: '✓';
  color: var(--w-amber);
  font-weight: 700;
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}
.w-price-features li.muted { color: var(--w-ink-faint); }
.w-price-features li.muted::before { content: '–'; color: var(--w-ink-faint); }
.w-price-card.featured .w-price-features li.muted { color: rgba(255,255,255,0.25); }
.w-price-features li.muted.featured-item { color: rgba(255,255,255,0.25); }

.w-price-cta {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--w-r-md);
  text-decoration: none;
  transition: all 0.15s;
  font-family: var(--w-font-body);
}
.w-price-cta-outline {
  border: 1.5px solid var(--w-border);
  color: var(--w-ink);
  background: transparent;
}
.w-price-cta-outline:hover { border-color: var(--w-ink-faint); background: var(--w-cream); }
.w-price-cta-amber {
  background: var(--w-amber);
  color: white;
  box-shadow: 0 4px 16px rgba(217,119,6,0.25);
  border: none;
}
.w-price-cta-amber:hover { background: #B45309; }
.w-price-cta-ghost {
  border: 1.5px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.75);
  background: transparent;
}
.w-price-cta-ghost:hover { background: rgba(255,255,255,0.07); color: white; }

.w-pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--w-ink-faint);
}
.w-pricing-note a { color: var(--w-amber); text-decoration: none; }

/* ─────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────── */
.w-testimonials {
  padding: var(--w-section-v) 0;
  background: var(--w-cream);
}
.w-testimonials-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 56px;
}
.w-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.w-testi-card {
  background: var(--w-white);
  border: 1px solid var(--w-border);
  border-radius: var(--w-r-lg);
  padding: 28px;
  transition: border-color 0.2s;
}
.w-testi-card:hover { border-color: var(--w-amber-light); }
.w-testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--w-amber);
  font-size: 14px;
}
.w-testi-quote {
  font-family: var(--w-font-display);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--w-ink);
  line-height: 1.6;
  margin-bottom: 20px;
}
.w-testi-author { display: flex; align-items: center; gap: 12px; }
.w-testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--w-amber-pale);
  border: 1px solid var(--w-amber-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--w-amber-dark);
  font-family: var(--w-font-body);
  flex-shrink: 0;
}
.w-testi-name  { font-size: 14px; font-weight: 500; color: var(--w-ink); }
.w-testi-role  { font-size: 13px; color: var(--w-ink-soft); }

/* ─────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────── */
.w-faq {
  padding: var(--w-section-v) 0;
  background: var(--w-white);
}
.w-faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.w-faq-list { display: flex; flex-direction: column; }
.w-faq-item { border-bottom: 1px solid var(--w-border-soft); }
.w-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--w-ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: var(--w-font-body);
  transition: color 0.15s;
}
.w-faq-question:hover { color: var(--w-amber); }
.w-faq-icon {
  width: 18px; height: 18px;
  color: var(--w-ink-faint);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.w-faq-answer {
  font-size: 15px;
  color: var(--w-ink-soft);
  line-height: 1.65;
  padding-bottom: 18px;
  font-weight: 300;
  display: none;
}

/* ─────────────────────────────────────────────────────
   FINALE CTA
   ───────────────────────────────────────────────────── */
.w-cta {
  padding: var(--w-section-v) 0;
  background: var(--w-ink);
  position: relative;
  overflow: hidden;
}
.w-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(217,119,6,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.w-cta-inner { text-align: center; position: relative; }
.w-cta-inner .w-section-label { color: var(--w-amber-light); }
.w-cta-title {
  font-family: var(--w-font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 300;
  letter-spacing: -1.5px;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
}
.w-cta-title em { font-style: italic; color: var(--w-amber); }
.w-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.50);
  max-width: 440px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.w-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.w-cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.30);
}

/* ─────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────── */
.w-footer {
  background: var(--w-ink);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 56px 0 32px;
}
.w-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.w-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}
.w-footer-logo-mark {
  width: 30px; height: 30px;
  background: var(--w-amber);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.w-footer-logo-mark svg { width: 14px; height: 14px; }
.w-footer-logo-text {
  font-family: var(--w-font-display);
  font-size: 17px;
  font-weight: 400;
  color: white;
}
.w-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  font-weight: 300;
  max-width: 220px;
}
.w-footer-myosotis {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.w-footer-myosotis a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.w-footer-myosotis a:hover { color: rgba(255,255,255,0.70); }

.w-footer-col-title {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--w-font-body);
}
.w-footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.w-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.40);
  text-decoration: none;
  transition: color 0.15s;
}
.w-footer-links a:hover { color: rgba(255,255,255,0.75); }

.w-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 10px;
}
.w-footer-copy { font-size: 13px; color: rgba(255,255,255,0.22); }
.w-footer-legal { display: flex; gap: 20px; }
.w-footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color 0.15s;
}
.w-footer-legal a:hover { color: rgba(255,255,255,0.50); }

/* ─────────────────────────────────────────────────────
   ANIMATIES (scroll-reveal)
   ───────────────────────────────────────────────────── */
.w-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.w-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .w-reveal { opacity: 1; transform: none; transition: none; }
  .w-hero-badge-dot { animation: none; }
}

/* ─────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .w-hero-inner,
  .w-how-inner,
  .w-faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .w-hero-visual { display: none; }
  .w-features-grid,
  .w-pricing-grid,
  .w-testi-grid   { grid-template-columns: 1fr; }
  .w-footer-inner { grid-template-columns: 1fr 1fr; }
  .w-nav-links    { display: none; }
  .w-nav-hamburger { display: flex; }
  :root { --w-section-v: 64px; }
}

@media (max-width: 600px) {
  .w-container    { padding: 0 20px; }
  .w-nav-inner    { padding: 0 20px; }
  .w-footer-inner { grid-template-columns: 1fr; }
  .w-lang-inner   { flex-direction: column; gap: 32px; }
  .w-footer-bottom { flex-direction: column; text-align: center; }
  .w-pricing-grid { max-width: 100%; }
}
