/* ══════════════════════════════════════════════════
   Nestje Design System: Web
   Gebaseerd op NestjeColors, NestjeTypography, NestjeSpacing

   BELANGRIJK: Gebruik NOOIT em-dashes in tekst.
   Gebruik altijd een punt, komma of dubbele punt als scheiding.
   ══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300&display=swap');

:root {
  /* Core brand */
  --primary: #E88393;
  --primary-dark: #D0687A;
  --journal-accent: #D97C8C;
  --journal-accent-light: #F6E9EC;
  --secondary: #9070D0;
  --accent-gold: #D4A953;

  /* Pill gradient */
  --pill-start: #F06292;
  --pill-end: #FF8A80;

  /* Backgrounds */
  --background: #F0DDE2;
  --surface: #FDF8F6;
  --surface-elevated: #FFFFFF;
  --nav-bar: #FBF9F7;
  --pink-bg: #E8CDD4;

  /* Text */
  --text-primary: #1A1A2E;
  --text-secondary: #6B7280;
  --text-tertiary: #9CA3AF;

  /* Utility */
  --divider: #E5E5EA;
  --card-shadow: rgba(0, 0, 0, 0.05);
  --card-shadow-tight: rgba(0, 0, 0, 0.03);
  --heart-red: #E05C6C;

  /* Category colors */
  --fact-ontwikkeling: #26A69A;
  --fact-voeding: #F6A623;
  --fact-slaap: #5C6BC0;
  --fact-gezondheid: #F06292;
  --fact-spelen: #66BB6A;
  --fact-verzorging: #FFA726;
  --fact-veiligheid: #FF8A65;
  --fact-mijlpaal: #C95B7A;
  --fact-sprong: #AB47BC;
  --fact-ouderschap: #E07A8C;

  /* Spacing (NestjeSpacing) */
  --xs: 4px;
  --sm: 8px;
  --md: 16px;
  --lg: 24px;
  --xl: 32px;
  --screen-margin: 20px;
  --card-padding: 16px;
  --card-gap: 8px;
  --section-spacing: 32px;

  /* Radii */
  --card-radius: 12px;
  --grid-card-radius: 18px;
  --pill-radius: 18px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* ── Base ── */
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: linear-gradient(165deg, var(--pill-start), var(--pill-end));
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

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

.container-wide {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--screen-margin);
}

/* ═══════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════ */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 246, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 124, 140, 0.12);
  padding: 10px 0;
}

nav .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--journal-accent);
  letter-spacing: -0.3px;
  font-family: 'Poppins', sans-serif;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 0;
  mix-blend-mode: multiply; /* verbergt grijze achtergrond op lichte nav */
}

.nav-links { display: flex; gap: 20px; align-items: center; }

/* Hamburger menu (hidden on desktop) */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--journal-accent);
  border-radius: 1px;
  transition: transform 0.2s;
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
}

.nav-mobile-overlay.open { display: block; }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  background: var(--surface);
  z-index: 201;
  padding: 24px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  flex-direction: column;
  gap: 0;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px 8px;
  margin-bottom: 16px;
}

.nav-mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-primary);
  border-bottom: 1px solid var(--divider);
  text-decoration: none;
}

.nav-mobile-menu a:last-child { border-bottom: none; }

.nav-mobile-menu .nav-cta {
  margin-top: 16px;
  text-align: center;
  border-bottom: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--journal-accent); }

.nav-cta {
  background: linear-gradient(135deg, var(--pill-start), var(--pill-end));
  color: white !important;
  font-weight: 600 !important;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px !important;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(240, 98, 146, 0.25);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 98, 146, 0.35);
  color: white !important;
}

/* ═══════════════════════════════════
   PHOTO HERO (full-bleed babyfoto)
   ═══════════════════════════════════ */

.photo-hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  margin-bottom: 8px;
}

.photo-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% 30%;
}

.photo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(240, 98, 146, 0.15) 0%,
    rgba(240, 98, 146, 0.05) 30%,
    rgba(0, 0, 0, 0.0) 40%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.photo-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--screen-margin);
  text-align: center;
}

.photo-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 12px;
}

.hero-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: white;
  background: linear-gradient(135deg, var(--pill-start), var(--pill-end));
  padding: 5px 14px;
  border-radius: var(--pill-radius);
  margin-bottom: 14px;
}

.photo-hero-content h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.photo-hero-content p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 460px;
  margin: 0 auto 20px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--pill-start), var(--pill-end));
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(240, 98, 146, 0.4);
}

.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(240, 98, 146, 0.5);
}

/* ═══════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════ */

/* Binnen kaarten: roze (nestjeCardSectionHeaderStyle) */
.section-header {
  font-size: 15px;
  font-weight: 600;
  color: var(--journal-accent);
  margin-bottom: 4px;
}

/* Buiten kaarten: wit op gradient */
.section-heading-white {
  font-size: 32px;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-heading-white .accent-light { color: rgba(255, 255, 255, 0.75); }

.section-sub-white {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-bottom: 28px;
}

.social-proof-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ═══════════════════════════════════
   HOE WERKT HET? (3 stappen)
   ═══════════════════════════════════ */

.how-it-works {
  padding: 28px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.step-card {
  background: var(--surface);
  border-radius: var(--grid-card-radius);
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 4px 12px var(--card-shadow);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pill-start), var(--pill-end));
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ═══════════════════════════════════
   FEATURE CARDS (app card pattern)
   ═══════════════════════════════════ */

.features {
  padding: 28px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 var(--screen-margin);
  max-width: 920px;
  margin: 0 auto;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--grid-card-radius);
  padding: 24px 18px 22px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 124, 140, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.feature-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Gekleurde glow-shadow per categorie */
.icon-dagboek { background: var(--primary); box-shadow: 0 6px 20px rgba(232, 131, 147, 0.35); }
.icon-slaap { background: var(--fact-slaap); box-shadow: 0 6px 20px rgba(92, 107, 192, 0.35); }
.icon-voeding { background: var(--fact-voeding); box-shadow: 0 6px 20px rgba(246, 166, 35, 0.35); }
.icon-groei { background: var(--fact-ontwikkeling); box-shadow: 0 6px 20px rgba(38, 166, 154, 0.35); }
.icon-mijlpaal { background: var(--fact-mijlpaal); box-shadow: 0 6px 20px rgba(201, 91, 122, 0.35); }
.icon-sprong { background: var(--fact-sprong); box-shadow: 0 6px 20px rgba(171, 71, 188, 0.35); }
.icon-tips { background: var(--fact-spelen); box-shadow: 0 6px 20px rgba(102, 187, 106, 0.35); }
.icon-samen { background: var(--fact-ouderschap); box-shadow: 0 6px 20px rgba(224, 122, 140, 0.35); }

/* Card titel */
.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

/* Card body, groter en beter leesbaar */
.feature-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

/* Volledig gevulde kleurcirkels (categorie-kleuren uit de app) */
.icon-dagboek { background: var(--primary); }
.icon-slaap { background: var(--fact-slaap); }
.icon-voeding { background: var(--fact-voeding); }
.icon-groei { background: var(--fact-ontwikkeling); }
.icon-mijlpaal { background: var(--fact-mijlpaal); }
.icon-sprong { background: var(--fact-sprong); }
.icon-tips { background: var(--fact-spelen); }
.icon-samen { background: var(--fact-ouderschap); }

/* ═══════════════════════════════════
   FOTOGALERIJ STRIP
   ═══════════════════════════════════ */

.diary-showcase {
  padding: 20px 0 14px;
}

.diary-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--screen-margin);
}

.diary-card {
  background: var(--surface);
  border-radius: var(--grid-card-radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.diary-card:hover {
  transform: translateY(-3px);
}

.diary-card-photo {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.diary-card-body {
  padding: 14px 16px;
}

.diary-card-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: var(--pill-radius);
  margin-bottom: 6px;
}

.diary-card-body h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.diary-card-body p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
}

.diary-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.diary-card-meta {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: auto;
  padding-top: 8px;
}

/* ═══════════════════════════════════
   USP SECTIONS (Familie + Fotoboek)
   ═══════════════════════════════════ */

.usp-section {
  padding: 0 0 14px;
}

.usp-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  border-radius: var(--grid-card-radius);
  padding: 28px 32px;
  box-shadow: 0 4px 16px var(--card-shadow);
}

.usp-photo-card {
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.usp-photo-card .usp-content {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.usp-photo {
  flex-shrink: 0;
  width: 260px;
  max-height: 260px;
  overflow: hidden;
}

.usp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.usp-content { flex: 1; }

.usp-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.usp-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════
   PRIVACY BANNER
   ═══════════════════════════════════ */

.privacy-section {
  padding: 28px 0;
}

.privacy-banner-inner {
  background: var(--surface);
  border-radius: var(--grid-card-radius);
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 4px 12px var(--card-shadow);
}

.privacy-banner-inner .label {
  font-size: 11px;
  font-weight: 500;
  color: var(--journal-accent);
  background: white;
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--pill-radius);
  margin-bottom: 10px;
}

.privacy-banner-inner h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.privacy-banner-inner p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════
   ROZE CTA-BAND
   ═══════════════════════════════════ */

.cta-band {
  background: var(--surface);
  border-radius: var(--grid-card-radius);
  max-width: 920px;
  margin: 0 auto 40px;
  padding: 44px 32px;
  text-align: center;
  box-shadow: 0 4px 16px var(--card-shadow);
}

.cta-band h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cta-band p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pill-start), var(--pill-end));
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 12px rgba(240, 98, 146, 0.25);
}

.cta-band-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240, 98, 146, 0.35);
}

.cta-privacy {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-tertiary);
  margin-top: 16px;
  margin-bottom: 0;
}

/* ═══════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════ */

.testimonials {
  padding: 16px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--screen-margin);
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--grid-card-radius);
  padding: 24px;
  box-shadow: 0 4px 12px var(--card-shadow);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
}

.testimonial-role {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-tertiary);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 13px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0;
}

/* ═══════════════════════════════════
   PRICING
   ═══════════════════════════════════ */

.pricing-section {
  padding: 16px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--screen-margin);
}

.pricing-card {
  background: var(--surface);
  border-radius: var(--grid-card-radius);
  padding: 32px 28px;
  box-shadow: 0 4px 12px var(--card-shadow);
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--journal-accent);
  box-shadow: 0 8px 32px rgba(217, 124, 140, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--pill-start), var(--pill-end));
  padding: 4px 14px;
  border-radius: var(--pill-radius);
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--journal-accent);
  margin: 12px 0 4px;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-tertiary);
}

.pricing-yearly {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-features li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check {
  color: var(--success);
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-features .dimmed {
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: var(--lg) 0;
  text-align: center;
}

.footer-logo { margin-bottom: 12px; }

.footer-logo-img {
  width: 72px;
  height: 72px;
  border-radius: 0;
  opacity: 0.55;
  mix-blend-mode: screen;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

footer .copyright {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════
   LEGAL PAGES (Privacy, Terms, Support)
   ═══════════════════════════════════ */

.legal-page {
  padding: 48px 0 64px;
}

.legal-page h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.legal-page .updated {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-tertiary);
  margin-bottom: 36px;
}

.legal-page .intro {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.legal-page h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 10px;
}

.legal-page p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.legal-page li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 5px;
  line-height: 1.6;
}

.legal-page strong {
  font-weight: 600;
  color: var(--text-primary);
}

.legal-page a {
  color: var(--journal-accent);
  font-weight: 500;
}

.legal-page a:hover { text-decoration: underline; }

/* Legal pages op gradient achtergrond: kaart-container */
.legal-page-card {
  background: var(--surface);
  border-radius: var(--grid-card-radius);
  max-width: 720px;
  margin: 24px auto 40px;
  padding: 48px 40px 52px !important;
  box-shadow: 0 4px 20px var(--card-shadow);
}

.legal-page-card h1 { color: var(--text-primary) !important; }
.legal-page-card .updated { color: var(--journal-accent) !important; font-weight: 500; }
.legal-page-card h2 { color: var(--journal-accent) !important; }
.legal-page-card p { color: var(--text-secondary) !important; }

/* ── FAQ cards ── */
.faq-item {
  background: var(--journal-accent-light);
  border-radius: var(--card-radius);
  padding: var(--card-padding) 20px;
  margin-bottom: var(--card-gap);
}

.faq-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-box {
  background: var(--journal-accent-light);
  border-radius: var(--grid-card-radius);
  padding: 32px;
  text-align: center;
  margin-top: 36px;
}

.contact-box h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 6px;
}

.contact-box p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-box .email-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--journal-accent);
}

.contact-box .email-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

/* ═══════════════════════════════════
   STORY PAGE (Ons verhaal)
   ═══════════════════════════════════ */

.story-page {
  background: var(--surface);
  border-radius: var(--grid-card-radius);
  max-width: 720px;
  margin: 24px auto 40px;
  padding: 48px 40px 52px !important;
  box-shadow: 0 4px 20px var(--card-shadow);
}

.story-page h1 {
  color: var(--text-primary) !important;
}

.story-page .updated {
  color: var(--journal-accent) !important;
  font-weight: 500;
}

.story-page h2 {
  color: var(--journal-accent) !important;
  font-size: 18px !important;
}

.story-page p {
  color: var(--text-secondary) !important;
  line-height: 1.8;
}

.story-page .story-intro .story-lead {
  color: #ffffff !important;
}

.story-photo-placeholder {
  margin-bottom: 28px;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.story-photo-placeholder img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: var(--card-radius);
}

/* Placeholder tot echte foto er is */
.story-photo-inner {
  width: 100%;
  height: 280px;
  background: var(--journal-accent-light);
  border: 2px dashed var(--journal-accent);
  border-radius: var(--card-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.story-photo-inner span {
  font-size: 14px;
  font-weight: 600;
  color: var(--journal-accent);
}

.story-photo-inner p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-tertiary) !important;
  margin-bottom: 0 !important;
}

.story-intro {
  background: linear-gradient(135deg, var(--pill-start), var(--pill-end));
  border-radius: var(--grid-card-radius);
  padding: 24px 28px;
  margin-bottom: 28px;
}

.story-lead {
  font-size: 15px;
  font-weight: 300;
  color: white !important;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0 !important;
}

.story-sign-off {
  background: var(--journal-accent-light);
  border-radius: var(--grid-card-radius);
  padding: 28px 32px;
  margin-top: 36px;
  text-align: center;
}

.story-sign-off p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0 !important;
  line-height: 1.7;
}

/* ═══════════════════════════════════
   STICKY MOBILE DOWNLOAD BANNER
   ═══════════════════════════════════ */

.mobile-sticky {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(253, 248, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(217, 124, 140, 0.15);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  }

  .mobile-sticky-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--journal-accent);
  }

  .mobile-sticky-sub {
    font-size: 10px;
    font-weight: 300;
    color: var(--text-secondary);
  }

  .mobile-sticky-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--pill-start), var(--pill-end));
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
  }

  /* Ruimte onderaan body zodat content niet achter banner valt */
  body { padding-bottom: 64px; }
}

/* ═══════════════════════════════════
   SCROLL ANIMATIES
   ═══════════════════════════════════ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger: elke feature card iets later */
.features-grid .fade-in:nth-child(2) { transition-delay: 0.06s; }
.features-grid .fade-in:nth-child(3) { transition-delay: 0.12s; }
.features-grid .fade-in:nth-child(4) { transition-delay: 0.18s; }
.features-grid .fade-in:nth-child(5) { transition-delay: 0.24s; }
.features-grid .fade-in:nth-child(6) { transition-delay: 0.30s; }
.features-grid .fade-in:nth-child(7) { transition-delay: 0.36s; }
.features-grid .fade-in:nth-child(8) { transition-delay: 0.42s; }

.steps-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.steps-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

.testimonials-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media (max-width: 768px) {
  .photo-hero { height: 420px; }
  .photo-hero-content h1 { font-size: 26px; }
  .photo-hero-content p { font-size: 13px; }
  .photo-hero-icon { width: 52px; height: 52px; border-radius: 14px; }
  .section-heading-white { font-size: 22px; }
  .section-sub-white { font-size: 13px; }
  .footer-links { flex-wrap: wrap; gap: 12px 20px; }
  .legal-page-card { padding: 32px 24px 36px !important; margin: 16px 12px 32px; }
  .story-page { padding: 32px 24px 36px !important; margin: 16px 12px 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .section-heading-white { font-size: 24px; }
  .usp-photo-card { flex-direction: column; }
  .usp-photo { width: 100%; max-height: 320px; min-height: 0; }
  .usp-photo img { object-position: center center; }
  .usp-photo-card .usp-content { padding: 20px 24px; }
  .usp-content h2 { font-size: 18px; }
  .diary-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .diary-card-photo { height: 120px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
  .cta-band h2 { font-size: 22px; }
}

@media (max-width: 480px) {
  .photo-hero { height: 360px; }
  .photo-hero-content h1 { font-size: 22px; }
  .hero-pill { font-size: 10px; padding: 4px 12px; }
  .section-heading-white { font-size: 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .feature-card { padding: 14px 10px; }
  .feature-card p { font-size: 11px; }
  .feature-icon { width: 52px; height: 52px; }
  .feature-icon img { width: 26px; height: 26px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .diary-showcase-grid { gap: 8px; }
  .diary-card-photo { height: 100px; }
  .diary-card-body { padding: 10px 12px; }
}
