/* ─────────────────────────────────────────────────────
   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; }

/* Segmented toggle (interval + customer type) */
.w-pricing-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}
.w-tab-group {
  display: flex;
  gap: 4px;
  background: var(--w-border-soft);
  border-radius: 10px;
  padding: 4px;
}
.w-tab-btn {
  background: transparent;
  border: none;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--w-ink-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}
.w-tab-btn.on {
  background: var(--w-white);
  color: var(--w-ink);
  box-shadow: 0 1px 3px rgba(0,0,0,.10);
}

.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%; }
}

/* ─────────────────────────────────────────────────────
   LEGAL PAGES (privacy, terms, gdpr, cookies)
   ───────────────────────────────────────────────────── */
.w-legal-page {
  padding: 80px 0 120px;
}

.w-legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.w-legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--w-text);
  margin-bottom: 8px;
}

.w-legal-meta {
  font-size: 0.875rem;
  color: var(--w-muted);
  margin-bottom: 48px;
}

.w-legal-content h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--w-text);
  margin-top: 40px;
  margin-bottom: 12px;
}

.w-legal-content p,
.w-legal-content li {
  font-size: 0.9375rem;
  color: var(--w-muted);
  line-height: 1.7;
}

.w-legal-content ul {
  padding-left: 20px;
  margin: 0 0 16px;
}

.w-legal-content ul li {
  margin-bottom: 6px;
}

.w-legal-content a {
  color: var(--w-accent);
  text-decoration: underline;
}

.w-legal-content code {
  font-family: monospace;
  font-size: 0.875rem;
  background: var(--w-surface);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--w-text);
}

/* Table */
.w-legal-table-wrap {
  overflow-x: auto;
  margin: 16px 0 32px;
}

.w-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.w-legal-table th,
.w-legal-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--w-border);
  color: var(--w-muted);
}

.w-legal-table th {
  color: var(--w-text);
  font-weight: 600;
  background: var(--w-surface);
}

/* ─────────────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────────────── */
.w-about-hero {
  background: var(--w-dark);
  padding: 100px 0 64px;
  text-align: center;
}

.w-about-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin: 12px 0 20px;
  line-height: 1.2;
}

.w-about-hero .w-section-lead {
  max-width: 560px;
  margin: 0 auto;
}

.w-about-page {
  padding: 80px 0 120px;
}

.w-about-content {
  max-width: 720px;
  margin: 0 auto;
}

.w-about-section {
  margin-bottom: 48px;
}

.w-about-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--w-text);
  margin-bottom: 14px;
}

.w-about-section p,
.w-about-section li {
  font-size: 0.9375rem;
  color: var(--w-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.w-about-section ul {
  padding-left: 20px;
}

.w-about-section a {
  color: var(--w-accent);
  text-decoration: underline;
}

/* ─────────────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────────────── */
.w-contact-cols {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  margin-top: 40px;
}

.w-contact-info h2,
.w-contact-form-wrap h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--w-text);
  margin-top: 32px;
  margin-bottom: 10px;
}

.w-contact-info h2:first-child,
.w-contact-form-wrap h2:first-child {
  margin-top: 0;
}

.w-contact-info p,
.w-contact-info li {
  font-size: 0.9375rem;
  color: var(--w-muted);
  line-height: 1.7;
}

.w-contact-info ul {
  padding-left: 20px;
}

.w-contact-info li { margin-bottom: 4px; }

.w-contact-info a {
  color: var(--w-accent);
  text-decoration: underline;
}

/* Form */
.w-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.w-contact-form label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--w-text);
  margin-bottom: -8px;
}

.w-contact-form input,
.w-contact-form textarea {
  padding: 10px 14px;
  border: 1px solid var(--w-border);
  border-radius: 8px;
  background: var(--w-surface);
  color: var(--w-text);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.15s;
  resize: vertical;
}

.w-contact-form input:focus,
.w-contact-form textarea:focus {
  outline: none;
  border-color: var(--w-accent);
}

.w-contact-form .w-btn-amber {
  align-self: flex-start;
  margin-top: 4px;
}

/* Alerts */
.w-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.w-alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.w-alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

@media (max-width: 768px) {
  .w-contact-cols { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════════════
   PAGINA HERO (features, pricing, overige sub-pages)
   ═══════════════════════════════════════════════════ */
.w-page-hero {
  padding: 100px 0 64px;
  background: var(--w-cream);
  border-bottom: 1px solid var(--w-border);
  text-align: center;
}

.w-page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.w-page-hero-title {
  font-family: var(--w-font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--w-ink);
  margin: 0;
}

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

.w-page-hero .w-section-lead {
  max-width: 560px;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   VERGELIJKINGSTABEL
   ═══════════════════════════════════════════════════ */
.w-compare {
  padding: 80px 0;
  background: var(--w-white);
}

.w-compare-header {
  text-align: center;
  margin-bottom: 48px;
}

.w-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--w-r-md);
  border: 1px solid var(--w-border);
  box-shadow: var(--w-shadow-sm);
}

.w-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--w-font-body);
  font-size: 0.9rem;
}

.w-compare-table thead th {
  padding: 14px 20px;
  text-align: center;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--w-ink-soft);
  background: var(--w-cream);
  border-bottom: 1px solid var(--w-border);
}

.w-compare-table thead th.w-compare-col-feature {
  text-align: left;
  min-width: 220px;
}

.w-compare-col-featured {
  background: var(--w-amber-pale);
}

.w-compare-table thead th.w-compare-col-featured {
  color: var(--w-amber-dark);
  font-weight: 600;
}

.w-compare-table tbody tr {
  border-bottom: 1px solid var(--w-border-soft);
}

.w-compare-table tbody tr:last-child {
  border-bottom: none;
}

.w-compare-table tbody tr:hover {
  background: var(--w-cream);
}

.w-compare-table tbody td {
  padding: 13px 20px;
  text-align: center;
  color: var(--w-ink-mid);
  vertical-align: middle;
}

.w-compare-feature-name {
  text-align: left !important;
  font-weight: 400;
  color: var(--w-ink) !important;
}

.w-check {
  color: #16a34a;
  font-weight: 600;
  font-size: 1rem;
}

.w-cross {
  color: var(--w-ink-faint);
  font-size: 1rem;
}

.w-compare-cta-link {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
}

.w-compare-cta-link a {
  color: var(--w-amber);
  text-decoration: none;
  font-weight: 500;
}

.w-compare-cta-link a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .w-compare-table { font-size: 0.82rem; }
  .w-compare-table thead th,
  .w-compare-table tbody td { padding: 10px 12px; }
  .w-compare-feature-name { min-width: 140px; }
}

/* ═══════════════════════════════════════════════════
   ENTERPRISE SECTIE
   ═══════════════════════════════════════════════════ */
.w-enterprise {
  padding: 80px 0;
  background: var(--w-cream);
  border-top: 1px solid var(--w-border);
}

.w-enterprise-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.w-enterprise-inner h2 {
  font-family: var(--w-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--w-ink);
  margin: 0;
}

.w-enterprise-inner p {
  color: var(--w-ink-soft);
  line-height: 1.7;
  margin: 0;
}

.w-enterprise-inner .w-price-cta {
  margin-top: 8px;
}

/* ── FAQ standalone (zonder 2-koloms grid, bijv. /pricing) ── */
.w-faq--standalone .w-faq-standalone-header {
  text-align: center;
  margin-bottom: 40px;
}

.w-faq--standalone .w-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

/* ── CTA-link (secundaire actie in CTA-sectie) ─── */
.w-cta-link {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.w-cta-link:hover { color: #fff; }


/* ═══════════════════════════════════════════════════
   STATUS PAGE
   ═══════════════════════════════════════════════════ */

.w-status-wrap {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.w-status-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.w-status-badge.w-status-ok {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.w-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

.w-status-updated {
  margin-left: auto;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.w-status-components {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--w-border-soft);
  border-radius: 10px;
  overflow: hidden;
}

.w-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--w-border-soft);
  gap: 1rem;
}

.w-status-row:last-child { border-bottom: none; }

.w-status-name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--w-ink-mid);
}

.w-status-icon {
  font-style: normal;
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.w-status-icon--ok {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.w-status-state {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
}

.w-status-state--ok {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
}

.w-status-uptime {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--w-surface-2, rgba(255,255,255,0.04));
  border: 1px solid var(--w-border-soft);
  border-radius: 10px;
}

.w-status-uptime-label {
  font-size: 0.85rem;
  color: var(--w-ink-faint);
}

.w-status-uptime-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #86efac;
}

.w-status-incidents { padding-top: 0.5rem; }

.w-status-no-incidents {
  color: var(--w-ink-faint);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════
   CHANGELOG PAGE
   ═══════════════════════════════════════════════════ */

.w-changelog {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.w-changelog-entry {
  padding: 2rem 0;
  border-bottom: 1px solid var(--w-border-soft);
}

.w-changelog-entry:last-child { border-bottom: none; }

.w-changelog-header { margin-bottom: 1rem; }

.w-changelog-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.w-changelog-version {
  font-family: var(--app-font-display, 'Bebas Neue', sans-serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--w-ink);
}

.w-changelog-date {
  font-size: 0.8rem;
  color: var(--w-ink-faint);
}

.w-changelog-summary {
  font-size: 0.9rem;
  color: var(--w-ink-mid);
  margin: 0;
}

.w-changelog-block {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.w-changelog-block ul {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.w-changelog-block ul li {
  font-size: 0.875rem;
  color: var(--w-ink-mid);
  line-height: 1.5;
}

.w-changelog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  width: fit-content;
}

.w-changelog-tag--new      { background: rgba(245,158,11,0.15); color: #fbbf24; }
.w-changelog-tag--improved { background: rgba(99,102,241,0.15);  color: #a5b4fc; }
.w-changelog-tag--fixed    { background: rgba(34,197,94,0.12);   color: #86efac; }


/* ═══════════════════════════════════════════════════
   ROADMAP PAGE
   ═══════════════════════════════════════════════════ */

.w-roadmap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.w-roadmap-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.w-roadmap-group-header {
  margin-bottom: 1rem;
}

.w-roadmap-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
}

.w-roadmap-status--building {
  background: rgba(245,158,11,0.15);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.25);
}

.w-roadmap-status--planned {
  background: rgba(99,102,241,0.12);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,0.2);
}

.w-roadmap-status--idea {
  background: rgba(255,255,255,0.05);
  color: var(--w-ink-faint);
  border: 1px solid var(--w-border-soft);
}

.w-roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--w-border-soft);
  border-radius: 10px;
  overflow: hidden;
}

.w-roadmap-item {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--w-border-soft);
}

.w-roadmap-item:last-child { border-bottom: none; }

.w-roadmap-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--w-ink);
  margin-bottom: 0.2rem;
}

.w-roadmap-item-desc {
  font-size: 0.83rem;
  color: var(--w-ink-faint);
  line-height: 1.5;
}

.w-roadmap-feedback { padding-top: 0.5rem; }


/* ═══════════════════════════════════════════════════
   CONTENT PAGES (what-is-planning-poker, agile-guide)
   ═══════════════════════════════════════════════════ */

.w-content-page {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.w-content-page .w-about-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--w-ink);
  margin: 1.25rem 0 0.4rem;
}

.w-content-steps {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.5rem 0 0;
}

.w-content-steps li {
  font-size: 0.9rem;
  color: var(--w-ink-mid);
  line-height: 1.6;
}

.w-content-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.w-content-cta h2 {
  font-family: var(--app-font-display, 'Bebas Neue', sans-serif);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--w-ink);
  margin: 0;
}

.w-content-cta p {
  font-size: 0.9rem;
  color: var(--w-ink-faint);
  margin: 0;
}

/* ─── Blog ──────────────────────────────────────────── */
.w-blog-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 3rem 0;
}

.w-blog-item {
  border-bottom: 1px solid var(--w-line);
  padding-bottom: 2.5rem;
}

.w-blog-item:last-child {
  border-bottom: none;
}

.w-blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.w-blog-date {
  font-size: 0.8125rem;
  color: var(--w-ink-faint);
}

.w-blog-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--w-amber);
  background: rgba(245,158,11,0.1);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
}

.w-blog-title {
  font-family: var(--app-font-display, 'Bebas Neue', sans-serif);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
}

.w-blog-title a {
  color: var(--w-ink);
  text-decoration: none;
}

.w-blog-title a:hover {
  color: var(--w-amber);
}

.w-blog-excerpt {
  font-size: 0.9375rem;
  color: var(--w-ink-faint);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.w-blog-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--w-amber);
  text-decoration: none;
}

.w-blog-read-more:hover {
  text-decoration: underline;
}

.w-blog-empty {
  padding: 4rem 0;
  text-align: center;
}

.w-blog-empty-text {
  font-size: 1.125rem;
  color: var(--w-ink);
  margin-bottom: 0.75rem;
}

.w-blog-empty-sub {
  font-size: 0.9375rem;
  color: var(--w-ink-faint);
}

.w-blog-empty-sub a {
  color: var(--w-amber);
  text-decoration: none;
}

.w-blog-empty-sub a:hover {
  text-decoration: underline;
}

