/* =========================================================
   DIE TIENER VAN JOU — Production CSS v4
   All pages, one stylesheet.
   ========================================================= */

/* =========================================================
   DTVJ v4 — WARM EDITORIAL + CRAFT AESTHETIC
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #8c52ff;
  --purple-deep: #5a2d9e;
  --purple-glow: rgba(140, 82, 255, 0.12);
  --pink: #f65d8b;
  --pink-soft: rgba(246, 93, 139, 0.08);
  --yellow: #ffc82d;
  --yellow-pale: #fff8e1;
  --salmon: #f5b7a1;
  --cream: #faf5ef;
  --cream-dark: #f1e8db;
  --warm-white: #fffcf8;
  --dark: #1a1216;
  --body: #4a3f47;
  --mid: #8a7f87;
  --light-line: rgba(26, 18, 22, 0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;

  --w-max: 1320px;
  --w-narrow: 780px;
  --edge: clamp(1.25rem, 5vw, 3.5rem);
  --section-y: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; background-color: var(--cream); }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--dark);
  overflow-x: hidden;
}

::selection { background: var(--salmon); color: var(--dark); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }

.label {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  line-height: 1;
}

.highlight {
  background: linear-gradient(180deg, transparent 50%, var(--yellow) 50%);
  padding: 0 3px;
}

/* ========== LAYOUT ========== */
.wrap { max-width: var(--w-max); margin: 0 auto; padding: 0 var(--edge); }
.wrap-narrow { max-width: var(--w-narrow); margin: 0 auto; padding: 0 var(--edge); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-pink {
  background: var(--pink);
  color: #fff;
}
.btn-pink:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(246, 93, 139, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--dark);
}
.btn-white:hover {
  background: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 200, 45, 0.3);
}

/* ========== SCROLL REVEAL ========== */
/* Reveal: visible by default. JS adds .js class to html, then we animate. */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal-d1 { transition-delay: 0.1s; }
.js .reveal-d2 { transition-delay: 0.2s; }
.js .reveal-d3 { transition-delay: 0.3s; }
.js .reveal-d4 { transition-delay: 0.4s; }

/* ========== NOISE TEXTURE OVERLAY ========== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 var(--edge);
  background: rgba(250, 245, 239, 0);
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(250, 245, 239, 0.98);
  box-shadow: 0 1px 0 var(--light-line);
}

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

.logo { display: flex; align-items: center; }
.logo img { height: 36px; width: auto; }

.nav { display: flex; align-items: center; gap: 2.5rem; }

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--body);
  position: relative;
  transition: color 0.3s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover { color: var(--dark); }
.nav a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: var(--pink);
  color: #fff !important;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--dark); transform: translateY(-1px); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* Soft radial glow */
.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 70%);
  bottom: -100px;
  left: -200px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding-bottom: 4rem;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--pink);
  margin-bottom: 1rem;
  display: block;
}

.hero h1 { margin-bottom: 1.5rem; }

.hero h1 em {
  font-style: italic;
  color: var(--purple);
}

.hero-body {
  font-size: 1.15rem;
  color: var(--body);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-line);
}

.hero-proof-stars { color: var(--yellow); font-size: 1.2rem; letter-spacing: 2px; }
.hero-proof-text { font-size: 0.9rem; color: var(--mid); line-height: 1.4; }
.hero-proof-text strong { color: var(--dark); }

/* Hero visual: overlapping photo composition */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-photo-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-photo-main {
  position: relative;
  z-index: 2;
  border-radius: 24px 24px 120px 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(26, 18, 22, 0.12);
}

.hero-photo-main img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 33%; }

/* Decorative blob behind photo */
.hero-blob {
  position: absolute;
  z-index: 1;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--salmon) 0%, var(--yellow-pale) 100%);
  opacity: 0.5;
  animation: blobFloat 12s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  33% { border-radius: 50% 60% 40% 50% / 40% 50% 60% 50%; }
  66% { border-radius: 40% 50% 60% 50% / 60% 40% 50% 60%; }
}

/* Floating review card */
.hero-float-card {
  position: absolute;
  z-index: 10;
  bottom: 40px;
  left: -60px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(26, 18, 22, 0.1);
  max-width: 280px;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-float-card .stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 6px; }
.hero-float-card p { font-size: 0.85rem; line-height: 1.5; color: var(--body); margin-bottom: 8px; }
.hero-float-card .author {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--pink);
}

/* Stat badge */
.hero-stat-badge {
  position: absolute;
  z-index: 10;
  top: 30px;
  right: -30px;
  background: var(--purple);
  color: #fff;
  padding: 18px 22px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(140, 82, 255, 0.25);
  animation: floatCard 5s ease-in-out 1s infinite;
}

.hero-stat-badge .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.hero-stat-badge .lbl { font-size: 0.75rem; opacity: 0.85; margin-top: 2px; }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--warm-white);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  padding: 2.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.trust-item .desc {
  font-size: 0.85rem;
  color: var(--mid);
  margin-top: 4px;
}

/* ========== PROBLEEM / EMPATHY ========== */
.empathy {
  padding: var(--section-y) 0;
  background: var(--warm-white);
  position: relative;
}

.empathy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.empathy-visual { position: relative; }

.empathy-photo {
  border-radius: 200px 200px 30px 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(26, 18, 22, 0.08);
}

.empathy-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 33%;
}

/* Handwritten annotation floating beside photo */
.empathy-note {
  position: absolute;
  bottom: -20px;
  right: -40px;
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--pink);
  transform: rotate(-4deg);
  line-height: 1.3;
}

.empathy-note::before {
  content: '→';
  position: absolute;
  left: -30px;
  top: 5px;
  font-size: 1.2rem;
}

.empathy-content .label { color: var(--purple); margin-bottom: 1rem; display: block; }
.empathy-content h2 { margin-bottom: 1.5rem; }
.empathy-content p { margin-bottom: 1rem; line-height: 1.75; }

.empathy-content p.callout {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark);
  border-left: 3px solid var(--pink);
  padding-left: 1.25rem;
  margin: 2rem 0;
}

/* ========== AANBOD / PRODUCTS ========== */
.products {
  padding: var(--section-y) 0;
  background: var(--cream);
  position: relative;
}

/* Decorative large text in background */
.products::before {
  content: 'aanbod';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  color: var(--dark);
  opacity: 0.025;
  pointer-events: none;
  white-space: nowrap;
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-header .label { color: var(--pink); display: block; margin-bottom: 0.5rem; }
.products-header p { max-width: 560px; margin: 1rem auto 0; color: var(--mid); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--warm-white);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(26, 18, 22, 0.1);
}

.product-card-img {
  position: relative;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-hand);
  font-size: 1rem;
  background: var(--yellow);
  color: var(--dark);
  padding: 4px 14px;
  border-radius: 30px;
}

.product-card-body { padding: 28px; }

.product-card-body h3 { margin-bottom: 0.5rem; }

.product-card-body p {
  font-size: 0.95rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-card-link {
  font-weight: 700;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.product-card-link:hover { gap: 12px; }

.product-card-link svg { transition: transform 0.3s; }
.product-card-link:hover svg { transform: translateX(4px); }

/* ========== CURSUS / DEEP DIVE ========== */
.deep {
  padding: var(--section-y) 0;
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Gradient orbs */
.deep::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 82, 255, 0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.deep::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 93, 139, 0.1) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

.deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.deep-content .label { color: var(--yellow); margin-bottom: 1rem; display: block; }
.deep-content h2 { color: #fff; margin-bottom: 1.5rem; }
.deep-content p { color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 1rem; }

.deep-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.deep-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, border-color 0.3s;
}

.deep-feature:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.deep-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.deep-feature h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.deep-feature p { font-size: 0.9rem; margin: 0; color: rgba(255,255,255,0.6); }

.deep-visual { position: relative; }

.deep-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.deep-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 33%; }

.deep-testimonial {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: #fff;
  color: var(--dark);
  border-radius: 20px;
  padding: 24px 28px;
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.deep-testimonial .stars { color: var(--yellow); font-size: 0.85rem; margin-bottom: 8px; }

.deep-testimonial blockquote {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--body);
  font-style: italic;
  margin-bottom: 12px;
}

.deep-testimonial .t-author { font-family: var(--font-hand); font-size: 1.1rem; color: var(--pink); }

/* ========== TEAM / WIJ KENNEN TIENERS ========== */
.team {
  padding: var(--section-y) 0;
  background: var(--cream);
  overflow: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 5rem;
  align-items: center;
}

.team-photos { position: relative; }

.team-photo-1 {
  width: 85%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(26, 18, 22, 0.08);
  position: relative;
  z-index: 2;
}

.team-photo-1 img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 33%; }

.team-photo-2 {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 55%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 18, 22, 0.12);
  border: 5px solid var(--cream);
  z-index: 3;
}

.team-photo-2 img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center 33%; }

.team-exp-badge {
  position: absolute;
  top: -15px;
  right: 20%;
  background: var(--yellow);
  color: var(--dark);
  padding: 16px 22px;
  border-radius: 16px;
  text-align: center;
  z-index: 4;
  box-shadow: 0 10px 30px rgba(255, 200, 45, 0.3);
}

.team-exp-badge .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}

.team-exp-badge .lbl { font-size: 0.75rem; font-weight: 500; }

.team-content .label { color: var(--purple); margin-bottom: 1rem; display: block; }
.team-content h2 { margin-bottom: 1.5rem; }
.team-content p { margin-bottom: 1rem; line-height: 1.75; }

/* ========== REVIEWS ========== */
.reviews {
  padding: var(--section-y) 0;
  background: var(--warm-white);
  position: relative;
}

.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-header .label { color: var(--yellow); display: block; margin-bottom: 0.5rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Alternate card top-left cut for visual rhythm */
.review-card:nth-child(2) { margin-top: 2rem; }

.review-card:hover { transform: translateY(-4px); }

.review-card .stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }

.review-card .text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body);
  margin-bottom: 1.5rem;
}

.review-card .meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px; height: 48px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--salmon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.review-avatar img { width: 100%; height: 100%; object-fit: cover; }

.review-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.review-source { font-size: 0.8rem; color: var(--mid); }

/* Large quote mark decoration */
.reviews::before {
  content: '"';
  position: absolute;
  top: 3rem;
  left: var(--edge);
  font-family: var(--font-display);
  font-size: 15rem;
  line-height: 1;
  color: var(--dark);
  opacity: 0.03;
  pointer-events: none;
}

/* ========== CTA ========== */
.cta {
  padding: var(--section-y) 0;
  background: var(--purple);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Dot pattern */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; }

.cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact {
  padding: var(--section-y) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-content h2 { margin-bottom: 1.5rem; }
.contact-content p { margin-bottom: 1rem; line-height: 1.75; }

.contact-form label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-line);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--warm-white);
  margin-bottom: 1.25rem;
  transition: border-color 0.3s;
}

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

.contact-form textarea { resize: vertical; min-height: 140px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.6; }

.footer h5 {
  font-family: var(--font-body);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-social { display: flex; gap: 8px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  transition: background 0.3s, color 0.3s;
}
.footer-social a:hover { background: var(--pink); color: #fff; }

/* ========== PLACEHOLDER ========== */
.img-placeholder {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 50%, var(--yellow-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--mid);
  font-family: var(--font-hand);
  font-size: 1.1rem;
  position: relative;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 2px dashed rgba(140,82,255,0.15);
  border-radius: inherit;
  pointer-events: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid,
  .empathy-grid,
  .deep-grid,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero { min-height: auto; padding-top: 100px; }
  .hero-grid { min-height: auto; padding-bottom: 3rem; }

  .hero-float-card { left: -20px; bottom: 20px; }
  .hero-stat-badge { right: -10px; top: 20px; }

  .products-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .empathy-note { position: static; transform: none; margin-top: 1rem; }
  .empathy-note::before { display: none; }

  .deep-testimonial { position: relative; bottom: auto; left: auto; margin-top: -40px; margin-left: 20px; }

  .team-grid { grid-template-columns: 1fr; }
  .team-photos { max-width: 400px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .nav { display: none; }

  .hero-float-card { display: none; }
  .hero-stat-badge { right: 10px; top: 10px; }

  .products-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card:nth-child(2) { margin-top: 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .deep-testimonial { margin-left: 0; }
}
/* ========== PRODUCT PAGES (pubergids, leergids, pubercursus) ========== */
/* ========== PRODUCT PAGE SPECIFIC ========== */
.product-hero {
  padding: 120px 0 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

.product-hero-content .label { color: var(--pink); display: block; margin-bottom: 0.75rem; }
.product-hero-content h1 { margin-bottom: 1.5rem; }
.product-hero-content h1 em { color: var(--purple); font-style: italic; }
.product-hero-content .body-text { font-size: 1.1rem; color: var(--body); line-height: 1.75; margin-bottom: 2rem; max-width: 500px; }

.product-hero-meta {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 2rem; border-top: 1px solid var(--light-line);
  margin-top: 2rem;
}

.price-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1;
}

.price-note { font-size: 0.85rem; color: var(--mid); margin-top: 2px; }

.product-hero-visual { position: relative; }

.product-hero-photo {
  border-radius: 24px 24px 100px 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(26,18,22,0.12);
  position: relative;
  z-index: 2;
}

.product-hero-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 33%; }

.product-hero-blob {
  position: absolute;
  z-index: 1;
  width: 105%; height: 105%;
  top: -2.5%; left: -2.5%;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--salmon) 0%, var(--yellow-pale) 100%);
  opacity: 0.4;
  animation: blobFloat 12s ease-in-out infinite;
}

.product-hero-badge {
  position: absolute;
  z-index: 10;
  bottom: 30px; left: -30px;
  background: var(--purple);
  color: #fff;
  padding: 18px 24px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(140,82,255,0.25);
}

.product-hero-badge .num { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; line-height: 1; }
.product-hero-badge .lbl { font-size: 0.75rem; opacity: 0.85; }

/* Herkenning */
.herkenning {
  padding: var(--section-y) 0;
  background: var(--warm-white);
}

.herkenning-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 5rem;
  align-items: center;
}

.herkenning-photo {
  border-radius: 200px 200px 30px 30px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.herkenning-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 33%; }

.herkenning-content .label { color: var(--purple); display: block; margin-bottom: 0.75rem; }
.herkenning-content h2 { margin-bottom: 1.5rem; }
.herkenning-content p { line-height: 1.75; margin-bottom: 1rem; }
.herkenning-content .callout {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
  border-left: 3px solid var(--pink);
  padding-left: 1.25rem;
  margin: 2rem 0;
}

/* Features */
.features {
  padding: var(--section-y) 0;
  background: var(--cream);
  position: relative;
}

.features::before {
  content: 'pubergids';
  position: absolute;
  bottom: 2rem; right: var(--edge);
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--dark);
  opacity: 0.02;
  pointer-events: none;
}

.features-header { text-align: center; margin-bottom: 3.5rem; }
.features-header .label { color: var(--pink); display: block; margin-bottom: 0.5rem; }
.features-header p { max-width: 520px; margin: 0.75rem auto 0; color: var(--mid); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  transition: height 0.5s cubic-bezier(0.16,1,0.3,1);
}

.feature-card:nth-child(1)::before { background: var(--purple); }
.feature-card:nth-child(2)::before { background: var(--pink); }
.feature-card:nth-child(3)::before { background: var(--yellow); }
.feature-card:nth-child(4)::before { background: var(--salmon); }

.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(26,18,22,0.06); }
.feature-card:hover::before { height: 100%; }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: #fff;
}

.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.95rem; color: var(--mid); line-height: 1.65; }

/* Pricing */
.pricing {
  padding: var(--section-y) 0;
  background: var(--purple);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.pricing::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.pricing-inner { position: relative; z-index: 2; }

.pricing-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 48px;
  max-width: 580px;
  margin: 0 auto;
}

.pricing-box h2 { color: #fff; margin-bottom: 2rem; }

.pricing-items { text-align: left; margin-bottom: 2rem; }

.pricing-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 0.65rem 0;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

.pricing-item .chk { color: var(--yellow); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  margin: 1.5rem 0 0.5rem;
}

.pricing-sub { opacity: 0.7; margin-bottom: 2rem; }

/* Cross-sell */
.crosssell {
  padding: var(--section-y) 0;
  background: var(--cream);
}

.crosssell-card {
  display: grid;
  grid-template-columns: 35% 65%;
  background: var(--warm-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26,18,22,0.04);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.crosssell-card:hover { transform: translateY(-4px); }

.crosssell-img img { width: 100%; height: 100%; object-fit: cover; }

.crosssell-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.crosssell-body .label { color: var(--pink); display: block; margin-bottom: 0.5rem; }
.crosssell-body h3 { margin-bottom: 0.75rem; }
.crosssell-body p { color: var(--mid); line-height: 1.65; margin-bottom: 1.5rem; }

/* Responsive additions */
@media (max-width: 1024px) {
  .product-hero-grid,
  .herkenning-grid,
  .crosssell-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .product-hero-badge { left: -10px; bottom: 20px; }
}

@media (max-width: 767px) {
  .product-hero-badge { position: relative; bottom: auto; left: auto; display: inline-block; margin-top: 1rem; }
}
/* ========== LEERGIDS ACCENT OVERRIDES ========== */
/* Leergids-specific accent overrides */
.leergids-accent .product-hero-badge { background: var(--pink); box-shadow: 0 12px 40px rgba(246,93,139,0.25); }
.leergids-accent .feature-card:nth-child(1)::before { background: var(--pink); }
.leergids-accent .feature-card:nth-child(2)::before { background: var(--purple); }
.leergids-accent .pricing { background: var(--pink); }
.leergids-accent .features::before { content: 'leergids'; }
/* ========== PUBERCURSUS EXTRAS ========== */
.pubercursus-accent .features::before { content: 'cursus'; }

/* Timeline section */
.timeline { padding: var(--section-y) 0; background: var(--cream); }
.timeline-header { text-align: center; margin-bottom: 3.5rem; }
.timeline-header .label { color: var(--purple); display: block; margin-bottom: 0.5rem; }

.timeline-items { max-width: 700px; margin: 0 auto; position: relative; }
.timeline-items::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--purple), var(--pink), var(--yellow));
  border-radius: 2px;
}

.timeline-item {
  display: flex; gap: 2rem; padding: 1.5rem 0;
  position: relative;
}

.timeline-dot {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 3px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--purple);
  flex-shrink: 0;
  z-index: 2;
}

.timeline-item:nth-child(2) .timeline-dot { border-color: var(--pink); color: var(--pink); }
.timeline-item:nth-child(3) .timeline-dot { border-color: var(--yellow); color: var(--dark); }
.timeline-item:nth-child(4) .timeline-dot { border-color: var(--salmon); color: var(--salmon); }

.timeline-item h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.3rem; color: var(--dark); }
.timeline-item p { font-size: 0.95rem; color: var(--mid); line-height: 1.6; }

/* Comparison section */
.comparison {
  padding: var(--section-y) 0;
  background: var(--warm-white);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 3rem auto 0;
}

.comparison-col {
  padding: 36px;
  border-radius: 24px;
}

.comparison-col.without {
  background: var(--cream);
  border: 2px solid var(--light-line);
}

.comparison-col.with {
  background: var(--purple);
  color: #fff;
  border: 2px solid var(--purple);
}

.comparison-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 10px;
}

.comparison-col.with h3 { color: #fff; }

.comparison-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-col.without .comparison-item { color: var(--mid); }
.comparison-col.with .comparison-item { color: rgba(255,255,255,0.85); }

.comparison-item .icon { flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
/* ========== OVER ONS PAGE ========== */
/* ========== ABOUT PAGE SPECIFIC ========== */
.about-hero {
  padding: 120px 0 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  top: -150px; left: -150px;
  pointer-events: none;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

.about-hero-content .label { color: var(--salmon); display: block; margin-bottom: 0.75rem; }
.about-hero-content h1 { margin-bottom: 1.5rem; }
.about-hero-content h1 em { color: var(--purple); font-style: italic; }
.about-hero-content p { font-size: 1.1rem; color: var(--body); line-height: 1.75; margin-bottom: 1rem; }

.about-hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-hero-photos .slot {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-hero-photos .slot:first-child { margin-top: 3rem; }
.about-hero-photos .slot img { width: 100%; height: 100%; object-fit: cover; object-position: center 33%; }

/* Story */
.story {
  padding: var(--section-y) 0;
  background: var(--warm-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 5rem;
  align-items: center;
}

.story-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(26,18,22,0.08);
  aspect-ratio: 4/3;
}

.story-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 33%; }

.story-content .label { color: var(--purple); display: block; margin-bottom: 0.75rem; }
.story-content h2 { margin-bottom: 1.5rem; }
.story-content p { line-height: 1.75; margin-bottom: 1rem; }

/* Expertise cards */
.expertise {
  padding: var(--section-y) 0;
  background: var(--cream);
  position: relative;
}

.expertise::before {
  content: 'over ons';
  position: absolute;
  top: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--dark);
  opacity: 0.02;
  pointer-events: none;
  white-space: nowrap;
}

.expertise-header { text-align: center; margin-bottom: 3rem; }
.expertise-header .label { color: var(--pink); display: block; margin-bottom: 0.5rem; }

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.expertise-card {
  background: var(--warm-white);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.expertise-card:hover { transform: translateY(-4px); }

.expertise-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.expertise-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 33%; transition: transform 0.5s; }
.expertise-card:hover .expertise-card-img img { transform: scale(1.04); }

.expertise-card-body { padding: 28px; }
.expertise-card-body h3 { margin-bottom: 0.75rem; }
.expertise-card-body p { font-size: 0.95rem; color: var(--mid); line-height: 1.65; }

/* Approach section — reuse deep section style from base */
.approach {
  padding: var(--section-y) 0;
  background: var(--purple);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,45,0.1) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.approach-photo {
  border-radius: 24px;
  overflow: hidden;
}

.approach-photo img { width: 100%; }

.approach-content .label { color: var(--yellow); display: block; margin-bottom: 0.75rem; }
.approach-content h2 { color: #fff; margin-bottom: 1.5rem; }
.approach-content p { color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 1rem; }
.approach-content .hl { color: var(--yellow); font-weight: 700; }

@media (max-width: 1024px) {
  .about-hero-grid,
  .story-grid,
  .approach-grid,
  .expertise-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-hero-photos .slot:first-child { margin-top: 0; }
}

@media (max-width: 767px) {
  .about-hero-photos { grid-template-columns: 1fr 1fr; gap: 10px; }
}
/* ========== MOBILE MENU ========== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  left: 0;
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* Open state: X */
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(250, 245, 239, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-inner a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  padding: 0.6rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, color 0.2s;
}

.mobile-menu.open .mobile-menu-inner a {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation */
.mobile-menu-inner a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu-inner a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu-inner a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu-inner a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu-inner a:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu-inner a:hover { color: var(--pink); }

.mobile-menu-inner .mobile-cta {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 1.5rem;
  padding: 14px 36px;
  background: var(--pink);
  color: #fff;
  border-radius: 60px;
}

.mobile-menu-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.mobile-menu-social a {
  font-size: 0 !important;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-line);
  border-radius: 12px;
  color: var(--body);
  transform: none !important;
}

.mobile-menu-social a:hover { background: var(--pink); color: #fff; }

@media (max-width: 767px) {
  .menu-toggle {
    display: flex;
    position: fixed;
    top: 18px;
    left: auto;
    right: var(--edge);
    z-index: 300;
  }
  .nav { display: none; }

  .header,
  .header.scrolled {
    background: transparent;
    box-shadow: none;
  }
}
