/* ============================================
   FLASHERO LANDING PAGE STYLES
   ============================================ */

:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --brand: #5b95f5;
  --brand-dark: #407adb;
  --brand-xlight: #eff6ff;
  --accent: #ffd43b;
  --accent-dark: #f0b429;
  --green: #22c55e;
  --radius: 1.5rem;
  --radius-sm: 0.75rem;
  --shadow: 0 2px 16px rgba(15, 23, 42, .07);
  --container: 1160px;
  --t: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILS ── */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }
.skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--text); color: #fff;
  padding: .5rem 1rem; border-radius: .5rem;
  z-index: 999; transition: top var(--t);
}
.skip-link:focus { top: 1rem; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 244, 246, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .bar {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
}
.brand {
  display: flex; align-items: center; gap: .5rem;
  text-decoration: none; color: var(--text);
  font-family: Oswald, sans-serif;
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: .02em; flex-shrink: 0;
}
.brand img { width: 30px; height: 30px; object-fit: contain; border-radius: .4rem; }

.main-nav { display: flex; align-items: center; gap: .1rem; }
.main-nav a {
  text-decoration: none; color: var(--muted);
  font-weight: 600; font-size: .85rem;
  padding: .4rem .7rem; border-radius: .6rem;
  transition: color var(--t), background var(--t);
}
.main-nav a:hover { color: var(--brand-dark); background: var(--brand-xlight); }

.header-right { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem; font-weight: 700; font-size: .875rem;
  text-decoration: none; border-radius: .75rem;
  border: none; cursor: pointer;
  transition: all var(--t); white-space: nowrap;
}
.btn-primary {
  background: var(--brand); color: #fff;
  padding: .55rem 1.2rem;
  box-shadow: 0 4px 14px rgba(91, 149, 245, .35);
}
.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 6px 20px rgba(91, 149, 245, .45);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--text);
  padding: .55rem 1rem;
}
.btn-ghost:hover { background: var(--border); }
.btn-accent {
  background: var(--accent); color: var(--text);
  padding: .9rem 2.25rem; font-size: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(255, 212, 59, .4);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 212, 59, .5);
}
.btn-large { padding: .85rem 2rem; font-size: 1rem; border-radius: 1rem; }
.menu-btn {
  display: none; background: var(--surface);
  border: 1px solid var(--border); color: var(--text);
  padding: .45rem .65rem; border-radius: .65rem;
  font-size: 1.1rem; cursor: pointer; line-height: 1;
}

/* ── HERO ── */
.hero { padding: 2rem 0 1.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; color: var(--brand-dark);
  font-size: .75rem; font-weight: 800;
  padding: .35rem .8rem; border-radius: .6rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(91, 149, 245, .2);
  box-shadow: var(--shadow);
}
.hero h1 {
  font-family: Oswald, sans-serif;
  font-size: 5rem;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
  color: var(--text);
}
.hero.hero-v2 .hero-v2-left h1 {
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.06;
  font-family: 'Oswald', sans-serif;
  letter-spacing: -0.02em;
}
.hero-lead {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 0.25rem;
}
.hero-trust { font-size: .78rem; color: var(--muted); font-weight: 500; margin-top: 0.25rem; }

/* ── SECTION BASE ── */
.section { margin-bottom: 3rem; scroll-margin-top: 80px; }
.section-header { text-align: center; margin-bottom: 2.25rem; }
.section-header h2 {
  font-family: Oswald, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; letter-spacing: .01em; margin-bottom: .5rem;
}
.section-header p {
  color: var(--muted); font-size: .975rem;
  max-width: 54ch; margin: 0 auto; font-weight: 500;
}

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.faq-item {
  background: var(--surface); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); overflow: hidden;
}
.faq-item details summary {
  padding: 1.1rem 1.25rem; font-weight: 700;
  font-size: .93rem; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; user-select: none;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 400;
  color: var(--brand); flex-shrink: 0; line-height: 1;
}
.faq-item details[open] summary::after { content: '−'; }
.faq-item details[open] summary {
  border-bottom: 1px solid var(--border); color: var(--brand-dark);
}
.faq-item details p {
  padding: 1rem 1.25rem; color: var(--muted);
  font-size: .89rem; line-height: 1.65;
}

/* ── FINAL CTA ── */
.cta-section {
  background: var(--brand); border-radius: 2rem;
  padding: 3.5rem 2rem; text-align: center;
  color: #fff; margin-bottom: 2.5rem;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -90px; right: -90px;
  width: 380px; height: 380px;
  background: rgba(255,255,255,.06);
  border-radius: 50%; pointer-events: none;
}
.cta-section h2 {
  font-family: Oswald, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: .75rem; position: relative;
}
.cta-section > p {
  font-size: 1.05rem; opacity: .85;
  margin-bottom: 2rem; position: relative;
}
.cta-note {
  display: block; font-size: .8rem;
  opacity: .65; margin-top: 1rem;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--text); color: rgba(255,255,255,.55);
  padding: 1.4rem 0; margin-top: .5rem;
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-brand {
  color: rgba(255,255,255,.9);
  font-family: Oswald, sans-serif;
  font-weight: 700; font-size: .95rem; text-decoration: none;
}
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a {
  text-decoration: none; color: rgba(255,255,255,.55);
  font-size: .84rem; font-weight: 500; transition: color var(--t);
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: .78rem; }

/* ── RESPONSIVE ── */


@media (max-width: 900px) {
  .menu-btn { display: inline-block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start;
    padding: .75rem 1.25rem 1.25rem; gap: .15rem; z-index: 40;
  }
  .main-nav.is-open { display: flex; }
  .header-right .btn-ghost { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cta-section { padding: 2.5rem 1.5rem; }
}

/* Hero V2 */
.hero-v2 { padding: 3rem 1.5rem 4rem; background: var(--bg); }
.hero-v2-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr 280px;
  gap: 1.5rem;
  align-items: start;
}
.hero-v2-left { background: #e8f0fe; border-radius: 1.5rem; padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.hero-v2-left h1 {
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  letter-spacing: -0.02em;
}
.hero-accent { color: var(--brand); }

/* Hero V2 Column 2 Sub-grid */
.hero-v2-column2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }

/* Mockup */
.hero-v2-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.mockup-card {
  min-height: 320px;
  width: 100%;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: none;
  margin: auto 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.mockup-card {
  position: relative;
  overflow: hidden;
  border: 4px solid #F3F4F6;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 24px 24px;
}
.mockup-red { background: #ff4d6d; color: white; }

.mockup-tab {
  position: absolute;
  top: -0.25rem;
  right: 3rem;
  width: 8rem;
  height: 2rem;
  background: #dc2626;
  border-radius: 0 0 0.75rem 0.75rem;
  z-index: 0;
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
  padding-top: 1rem;
}
.mockup-icon-wrapper {
  background: rgba(255, 255, 255, 0.20);
  padding: 0.5rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Boek icon groter */
.mockup-icon {
  width: 28px !important;
  height: 28px !important;
}
/* Label dichter op titel */
.mockup-label {
  margin-bottom: 0 !important;
  line-height: 1;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 0.1em;
}

/* Titel dichter op label */
.mockup-title {
  margin-top: 0.1rem;
  margin-bottom: 0.4rem;
  font-size: 1.76rem;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.025em;
}
#hero-title {
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 0.5rem;
}
.hero-description {
  margin-bottom: 0.25rem !important;
  font-size: 1.1rem !important;
  line-height: 1.6;
  font-weight: 500;
}
/* Raket groter */
.mockup-rocket-icon {
  width: 48px;
  height: 48px;
  position: absolute;
  right: -0.5rem;
  top: 0.5rem;
  opacity: 0.9;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
.mockup-book { font-size: 2rem; }
/* Chips direct onder titel, ruimte ONDER de chips */
.mockup-chips {
  margin-top: 0;
  margin-bottom: 1.8rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}
.mockup-chip {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chip-white {
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: white;
}

.chip-yellow {
  background: #FFD43B;
  color: rgb(235, 80, 80);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Fix 1: geen wit randje op frosted glass vakjes */
.mockup-footer,
.mockup-chip {
  border: none;
  box-shadow: none;
}
.chip-white { background: rgba(255,255,255,0.3); color: white; }
/* Fix 4: DEMO chip rood */
.chip-yellow {
  background: rgba(255, 255, 255, 0.9);
  color: rgb(235, 80, 80);
}
.mockup-spacer { flex: 1; }
.mockup-footer {
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  z-index: 10;
  margin-top: auto;
}
.mockup-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}
.mockup-progress-bar {
  background: rgba(0, 0, 0, 0.20);
  border-radius: 9999px;
  height: 0.75rem;
  overflow: hidden;
}
.mockup-progress-fill {
  background: #FFD43B;
  border-radius: 9999px;
  height: 100%;
  width: 85%;
  box-shadow: 0 0 10px rgba(255, 212, 59, 0.5);
}
/* Knop: exact zoals React, mt-6 text-center, aparte div buiten footer */
.mockup-cta-wrapper {
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
}

.mockup-cta {
  color: rgb(235, 80, 80);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  animation: ctaBg 1.5s ease-in-out infinite;
  display: inline-block;
  width: auto;
  min-width: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
}

@keyframes ctaBg {
  0%, 100% { background: white; }
  50% { background: rgba(255, 255, 255, 0.82); }
}

/* Rechter kaarten */
.hero-v2-right { display: flex; flex-direction: column; gap: 1rem; }

/* Updated Hero Card Styles */
.hero-card-icon-wrapper {
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  position: relative;
  z-index: 10;
}

.hero-card-white-btn {
  background: white;
  color: #3b6fd4;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 4px solid #e2e8f0;
  transition: all 0.2s;
  text-transform: uppercase;
}

.hero-card-white-btn:hover {
  background: #f8fafc;
}

.hero-card-decoration {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  opacity: 0.1;
}

.hero-card-blue {
  background: #2c5aa0;
  color: white;
  border-radius: 2.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
}

.hero-card-blue::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background: #3b6fd4;
  border-radius: 50%;
  filter: blur(3rem);
  transform: translateY(-50%) translateX(50%);
}

.hero-card-blue h3 {
  font-family: Oswald, sans-serif;
  font-size: 1.76rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-card-blue p {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  max-width: 280px;
}

.hero-card-yellow {
  background: #ffd43b;
  color: #1a1a1a;
  border-radius: 2.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  box-shadow: 0 10px 25px rgba(255, 212, 59, 0.3);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #3b6fd4;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  border: 1px solid #bfdbfe;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  width: fit-content;
}

.hero-badge-icon {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Custom hero title styling */
.hero-title-custom {
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.06;
  font-family: 'Oswald', sans-serif;
  letter-spacing: -0.02em;
}

.hero-title-highlight {
  color: #3b6fd4;
  background: linear-gradient(transparent 40%, rgba(255,212,59,0.30) 40%, rgba(255,212,59,0.30) 80%, transparent 80%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Logo styling */
.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.hero-card-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-left: auto;
  position: relative;
  z-index: 10;
}

/* Icon styling */
.mockup-icon-custom {
  width: 12px;
  height: 12px;
  stroke: rgb(235, 80, 80);
  fill: rgb(235, 80, 80);
  margin-right: 3px;
}

/* Hero card flex container */
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-card-header h3 {
  margin: 0;
}

/* Arrow icon styling */
.hero-card-arrow {
  width: 20px;
  height: 20px;
}

.hero-card-tag {
  background: rgba(255,255,255,0.3);
  color: #713f12;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  backdrop-filter: blur(4px);
  display: inline-block;
  width: fit-content;
  align-self: flex-start;
}

.hero-card-yellow h3 {
  font-family: Oswald, sans-serif;
  font-size: 1.76rem !important;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: none !important;
  line-height: 1.1;
}

.hero-card-yellow p {
  color: rgba(113, 63, 18, 0.8);
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  max-width: 200px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-v2-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-v2-grid { grid-template-columns: 1fr; }
  .hero-v2-right { flex-direction: column; }
}

/* General Lucide Icons */
[data-lucide] { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; display: inline-block; vertical-align: middle; }

/* Animations */
@keyframes rocketFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
/* Mockup Brand */
.mockup-brand-icon { 
  position: absolute; 
  bottom: -1.5rem; 
  right: -1.5rem; 
  width: 140px; 
  height: 140px; 
  stroke: white;
  fill: white;
  opacity: 0.10;
  transform: rotate(12deg);
  pointer-events: none;
}

/* --- BOEKENPLANK COMPONENT --- */
.shelf-wrapper {
  padding: 0 50px 50px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
  width: 100%;
}

.book-container {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 500px;
  padding-bottom: 0;
  overflow: visible;
}

.book {
  position: relative;
  width: 50px;
  background-color: #f87171;
  color: white;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 15px 3px 3px 15px;
  box-shadow: inset 8px 0 12px -4px rgba(255,255,255,0.3), 5px 0 10px rgba(0,0,0,0.1);
}

.book:hover {
  width: 325px;
  height: 420px !important;
  border-radius: 15px 20px 20px 15px;
  box-shadow: 0 20px 25px rgba(0,0,0,0.2);
  z-index: 100;
  overflow: visible;
}

.book-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  height: 100%;
  position: absolute;
  width: 100%;
  pointer-events: none;
  transition: opacity 0.2s;
}

.icon-circle {
  width: 32px;
  height: 32px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: auto;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}

.spine-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: auto;
}

.spine-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 20px;
  opacity: 0.4;
  margin-bottom: 5px;
}

.line {
  height: 2px;
  background-color: currentColor;
  border-radius: 10px;
}

.book-content {
  opacity: 0;
  padding: 30px;
  width: 325px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  transition: opacity 0.3s 0.1s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.content-icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.book-content h3 {
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 10px;
  line-height: 1;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.book-content p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.95;
}

.book:hover .book-content {
  opacity: 1;
  pointer-events: auto;
}

.book:hover .book-spine {
  opacity: 0;
}

/* --- PRO BADGES --- */
.book-pro-badge {
  position: absolute;
  top: 8px;
  right: 6px;
  background: #FFD43B;
  color: #1a1a1a;
  font-size: 0.5rem;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 10;
}

.pro-inline {
  background: #FFD43B;
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

/* --- PLANK --- */
.shelf {
  width: 100%;
  max-width: 850px;
  height: 15px;
  background: #E5E7EB;
  border-bottom: 4px solid #cbd5e1;
  border-radius: 2px;
  position: relative;
  isolation: isolate;
  z-index: -1;
  margin-top: -8px;
}

/* --- KLEURENPALET --- */
.book-yellow { background-color: #ECD26A; color: white; }
.book-red    { background-color: #F68A8A; color: white; }
.book-orange { background-color: #F18C3A; color: white; }
.book-purple { background-color: #C084FC; color: white; }
.book-teal   { background-color: #2DD4BF; color: white; }
.book-blue   { background-color: #83BFE6; color: white; }
.book-pink   { background-color: #ED6FB0; color: white; }
.book-green  { background-color: #80DDA7; color: white; }

/* --- DUMMY BOEKEN --- */
.book.dummy {
  width: 37px;
  cursor: default;
}

.book.dummy:hover {
  width: 45px;
  height: 410px !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.book.dummy .book-spine { display: none !important; }

.book.dummy .book-content {
  display: none;
}

/* --- MOBIEL --- */
@media (max-width: 1024px) {
  .book.dummy { display: none !important; }

  .shelf-wrapper { 
    padding: 20px; 
    display: block;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 1024px) {
  .book-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    height: auto !important;        /* ← overschrijft de 500px */
    overflow: visible !important;   /* ← niet afknippen */
    align-items: stretch;           /* ← kaarten gelijke hoogte */
  }
}

  @media (max-width: 1024px) {
  .book,
  .book:hover {
    width: 100% !important;
    height: auto !important;
    min-height: 250px !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    z-index: auto !important;
    overflow: hidden !important;
    transform: none !important;
    transition: none !important;
    pointer-events: none !important;
  }
}

  .book-spine {
    display: none;
  }

  .spine-label {
    display: none;
  }

  .book-content {
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    position: static;
    height: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }

  .book-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-align: center;
  }

  .book-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    text-align: center;
  }

  .features-header-card {
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* Voorkom overflow naar buiten */
  .book-container {
    overflow: hidden;
  }

  .book { pointer-events: none; }

  /* Shelf verbergen zodat die niet overloopt */
  .shelf {
    display: none;
  }
}

/* --- FEATURES HEADER CARD --- */
.features-header-card {
  background: #2c5aa0;
  color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
  width: 100%;
  box-sizing: border-box;
}

.features-header-card h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: white;
}

.features-header-card p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ── JIJ TEGEN GISTEREN ── */
.jij-sectie { padding: 2rem 0; }

.jij-label {
  font-size: 0.75rem; font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.jij-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.jij-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 4px 0 rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jij-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 0 rgba(0,0,0,0.08);
}

.jij-wide {
  grid-column: span 2;
  background: #2c5aa0;
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 0 rgba(0,0,0,0.2);
}

.jij-wide:hover {
  box-shadow: 0 7px 0 rgba(0,0,0,0.2);
}

.jij-wide h2 {
  font-family: Oswald, sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: white; margin-bottom: 0.5rem;
}

.jij-wide p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

.jij-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 2px 8px; border-radius: 4px;
  margin-bottom: 0.75rem;
}

.jij-icon {
  width: 36px; height: 36px;
  border-radius: 0.6rem;
  background: var(--bg);
  display: flex; align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 0.75rem;
}

.jij-card h3 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.4rem;
}

.jij-card p {
  font-size: 0.875rem;
  color: var(--muted); line-height: 1.5; margin: 0;
}

.jij-cta-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.jij-cta-bar h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.25rem;
}

.jij-cta-bar p {
  font-size: 0.8rem; color: var(--muted); margin: 0;
}

.jij-cta-btn {
  background: #2c5aa0; color: white;
  border-radius: 0.75rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  flex-shrink: 0;
}

.jij-cta-btn:hover { background: #244d8c; }

@media (max-width: 1024px) {
  .jij-grid { grid-template-columns: 1fr 1fr; }
  .jij-wide { grid-column: span 2; }
  .jij-cta-bar { flex-direction: column; align-items: flex-start; }
  .jij-cta-btn { width: 100%; text-align: center; }
  .jij-card:hover {
    transform: none;
    box-shadow: 0 4px 0 rgba(0,0,0,0.08);
  }
  .jij-wide:hover {
    box-shadow: 0 4px 0 rgba(0,0,0,0.2);
  }
}
/* ── HOW IT WORKS ── */
.hiw-sectie {
  padding: 4rem 0;
  background: var(--bg);
}

.hiw-inner {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hiw-left { flex: 1; }

.hiw-title {
  font-family: Oswald, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}

.hiw-accent { color: var(--brand); }

.hiw-lead {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hiw-steps { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2.5rem; }

.hiw-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 1.5rem;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: default;
}

.hiw-step:hover {
  background: var(--surface);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hiw-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--surface);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-bottom: 4px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: Oswald, sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--brand);
  transition: all 0.2s;
}

.hiw-step:hover .hiw-num {
  background: var(--brand);
  color: white;
  border-color: var(--brand-dark);
  transform: scale(1.08);
}

.hiw-step h3 {
  font-family: Oswald, sans-serif;
  font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.35rem;
  display: flex; align-items: center; gap: 0.4rem;
}

.hiw-icon { width: 18px; height: 18px; color: var(--brand); }

.hiw-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.hiw-cta { margin-top: 0.5rem; padding: 0.75rem 2rem; font-size: 1rem; }

/* Rechts: mockup */
.hiw-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hiw-float {
  position: relative;
  width: 100%;
  max-width: 420px;
  animation: hiw-float 6s ease-in-out infinite;
}

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

.hiw-backcard {
  position: absolute;
  top: -40px; left: -30px;
  width: 220px; height: 100px;
  background: #1e293b;
  border-radius: 1.5rem;
  transform: rotate(-6deg);
  z-index: 0;
  opacity: 0.85;
}

.hiw-card {
  background: white;
  border: 3px solid #f1f5f9;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.hiw-card-header {
  background: #f8fafc;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hiw-card-title {
  font-family: Oswald, sans-serif;
  font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}

.hiw-card-sub {
  font-size: 0.7rem; font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hiw-card-icon {
  width: 40px; height: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  box-shadow: var(--shadow);
}

.hiw-card-body { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }

.hiw-card-labels {
  display: flex; justify-content: space-between;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.hiw-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 2px solid transparent;
}

.hiw-item-blue { background: #eff6ff; border-color: #dbeafe; }
.hiw-item-purple { background: #faf5ff; border-color: #f3e8ff; }
.hiw-item-empty { border-color: #f1f5f9; opacity: 0.6; }

.hiw-item-icon {
  width: 28px; height: 28px;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
}

.hiw-item-icon-blue { background: var(--brand); }
.hiw-item-icon-purple { background: #a855f7; }

.hiw-item-icon-empty {
  width: 28px; height: 28px;
  border-radius: 0.5rem;
  border: 2px solid #cbd5e1;
  flex-shrink: 0;
}

.hiw-item-para {
  font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--brand);
}

.hiw-item-para-purple { color: #a855f7; }

.hiw-item-name {
  font-size: 0.85rem; font-weight: 700;
  color: #1e3a5f;
}

.hiw-item-name-purple { color: #581c87; }
.hiw-item-name-muted { color: #64748b; }

.hiw-card-footer {
  padding: 1rem 1.75rem;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}

.hiw-btn-ai {
  background: var(--brand);
  color: white;
  border: none;
  border-bottom: 4px solid var(--brand-dark);
  border-radius: 0.75rem;
  padding: 0.85rem;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  transition: filter 0.2s;
}

.hiw-btn-ai:hover { filter: brightness(1.1); }

.hiw-btn-bieb {
  background: white;
  color: #475569;
  border: 2px solid #e2e8f0;
  border-bottom: 4px solid #cbd5e1;
  border-radius: 0.75rem;
  padding: 0.85rem;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  transition: background 0.2s;
}

.hiw-btn-bieb:hover { background: #f8fafc; }

.hiw-sticker {
  position: absolute;
  bottom: -20px; right: -20px;
  background: #FFD43B;
  color: #1e3a5f;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: 0.75rem;
  border-bottom: 4px solid #f0b429;
  transform: rotate(-3deg);
  z-index: 20;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: hiw-pulse 3s ease-in-out infinite;
}

@keyframes hiw-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* Mobiel */
@media (max-width: 1024px) {
  .hiw-inner { flex-direction: column; gap: 2.5rem; }
  .hiw-title { font-size: 2.25rem; }
  .hiw-right { width: 100%; }
  .hiw-float { max-width: 100%; }
  .hiw-backcard { display: none; }
  .hiw-sticker { bottom: -15px; right: 0; }
}

/* ── PRICING ── */
.pr-sectie {
  padding: 4rem 0;
}

.pr-title {
  font-family: Oswald, sans-serif;
  font-size: 2.5rem; font-weight: 900;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.5rem;
}

.pr-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}

.pr-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.pr-featured {
  border: 2px solid #2c5aa0;
}

.pr-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: #FFD43B; color: #1a1a1a;
  font-size: 0.65rem; font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pr-plan {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.pr-price {
  font-size: 2rem; font-weight: 700;
  color: var(--text); line-height: 1;
}

.pr-price span {
  font-size: 0.8rem; font-weight: 500;
  color: var(--muted);
}

.pr-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
}

.pr-divider {
  border: none;
  border-top: 1px solid var(--border);
}

.pr-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.pr-list li {
  font-size: 0.83rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.pr-list li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pr-btn-free {
  display: block; width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 600;
  color: var(--text);
  background: var(--surface);
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
}

.pr-btn-free:hover { background: var(--bg); }

.pr-btn-pro {
  display: block; width: 100%;
  padding: 0.7rem;
  border: none; border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 700;
  color: #fff; background: #2c5aa0;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
}

.pr-btn-pro:hover { background: #244d8c; }

.pr-note {
  font-size: 0.65rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .pr-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pr-featured { order: -1; }
}

/* ── HERO ACTIONS ── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

/* ── GUEST STRIP ── */
.guest-strip {
  margin: 2rem 0;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.guest-strip-inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 768px) {
  .guest-strip-inner {
    grid-template-columns: 1fr 1.2fr auto;
  }
}
.guest-strip h2 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.guest-items {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.guest-items li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.guest-cta-wrap { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* ── FEATURES COMMUNITY NOTE ── */
.features-community-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--brand-dark);
  font-weight: 600;
}

/* ── BOOK HEIGHTS (no inline styles) ── */
.book-h-88 { height: 88%; }
.book-h-85 { height: 85%; }
.book-h-94 { height: 94%; }
.book-h-80 { height: 80%; }
.book-h-78 { height: 78%; }
.book-h-92 { height: 92%; }
.book-h-76 { height: 76%; }
.book-h-96 { height: 96%; }
.book-h-91 { height: 91%; }
.book-h-82 { height: 82%; }
.spine-mt-40 { margin-top: 40px; }
.spine-mt-60 { margin-top: 60px; }
.spine-mt-30 { margin-top: 30px; }
.spine-mt-35 { margin-top: 35px; }

.jij-icon i { width: 1.5rem; height: 1.5rem; color: var(--brand-dark); }

/* ── LEGAL PAGES ── */
.legal-page { padding: 3rem 0 4rem; max-width: 720px; }
.legal-page h1 { margin-bottom: 1.5rem; }
.legal-body h2 { margin: 1.5rem 0 0.5rem; font-size: 1.1rem; }
.legal-body p { margin-bottom: 0.75rem; color: var(--muted); }
.legal-back { font-weight: 600; }
.legal-links-list { list-style: none; margin-top: 1rem; }
.legal-links-list a { color: var(--brand-dark); font-weight: 600; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}