/* =====================================================================
   TGE FUNNEL · LIGHT DESIGN SYSTEM
   Shared by the light landing pages (Peak Physique + Ondernemers).
   Brand: white/mist + deep + teal/cyan, pulse yellow reserved for CTA
   and single highlighted words only. Poppins throughout.
   ===================================================================== */

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

:root {
  --deep:   #050B0F;
  --blue:   #003042;
  --teal:   #2B6979;
  --cyan:   #5296AA;
  --mist:   #D3E3DE;
  --pulse:  #FFF200;

  --bg:      #F2F7F6;   /* page background, bluish white */
  --bg-alt:  #E7F0ED;   /* alternating section */
  --surface: #FFFFFF;   /* cards */
  --ink:     #0A2027;   /* headings */
  --ink-body:#33474C;   /* body */
  --ink-soft:#5B6E72;   /* muted */
  --line:    rgba(10,32,39,0.10);
  --line-2:  rgba(10,32,39,0.06);

  --wa:      #25D366;
  --wa-dark: #1EAE56;

  --radius:      18px;
  --radius-sm:   12px;
  --radius-pill: 9999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow:    0 20px 50px -24px rgba(10,32,39,0.28);
  --shadow-sm: 0 10px 28px -16px rgba(10,32,39,0.22);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--ink-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* Highlighted word (yellow, sparingly) */
.hl-highlight {
  color: var(--ink);
  background: var(--pulse);
  padding: 0 8px;
  border-radius: 6px;
  font-weight: 800;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hl-teal { color: var(--teal); font-weight: 700; }

/* =====================================================================
   HEADER · announcement bar + nav
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.ann-bar {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ann-bar-icon { font-size: 0.95rem; line-height: 1; animation: ann-pulse 1.6s ease-in-out infinite; }
.ann-bar-timer { color: var(--pulse); font-weight: 800; font-variant-numeric: tabular-nums; }
@keyframes ann-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.85); } }
@media (max-width: 540px) {
  .ann-bar { font-size: 0.68rem; padding: 9px 12px; gap: 6px; }
}
@media (max-width: 420px) {
  .ann-bar { flex-direction: column; gap: 2px; }
}

.site-nav {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 10px; }
.nav-brand img { height: 24px; width: auto; }
.nav-brand-name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--deep);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--blue); }
@media (max-width: 540px) {
  .site-nav { padding: 10px 16px; }
  .nav-brand-name { font-size: 0.85rem; }
  .nav-cta { padding: 8px 14px; font-size: 0.74rem; }
}

/* =====================================================================
   CTA BUTTON
   ===================================================================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 38px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.cta-btn.locked {
  background: rgba(10,32,39,0.08);
  color: rgba(10,32,39,0.32);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}
.cta-btn.unlocked {
  background: var(--pulse);
  color: var(--deep);
  box-shadow: 0 16px 38px -14px rgba(255,242,0,0.7);
  animation: cta-unlock 0.5s var(--ease) both;
}
.cta-btn.unlocked::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-18deg);
  transition: left 0.75s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.cta-btn.unlocked:hover::before { left: 150%; }
.cta-btn.unlocked:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 48px -14px rgba(255,242,0,0.85);
}
@keyframes cta-unlock { from { transform: scale(0.97); opacity: 0.5; } to { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .cta-btn.unlocked::before { transition: none; }
  .cta-btn.unlocked:hover { transform: translateY(-2px); }
}

/* =====================================================================
   SECTION HEADINGS
   ===================================================================== */
.section-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}
.section-h2 em { font-style: normal; color: var(--teal); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  padding: 56px 32px 60px;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 760px; height: 520px;
  background: radial-gradient(ellipse, rgba(43,105,121,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.hero-eyebrow {
  font-size: clamp(0.86rem, 1.5vw, 1.02rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 1.45;
}
.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
}
.hero-sub-line {
  display: block;
  font-size: 0.5em;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 0.7em;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.hero-desc {
  font-size: clamp(0.98rem, 1.5vw, 1.14rem);
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.65;
  margin-top: -4px;
}
.hero-desc strong { font-weight: 700; color: var(--ink); }
.hl-desktop { display: inline; }
.hl-mobile  { display: none; }

/* Google reviews badge */
.google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.google-g-svg { width: 22px; height: 22px; flex-shrink: 0; }
.google-stars { display: inline-flex; gap: 2px; }
.google-stars svg { width: 14px; height: 14px; fill: #FBBC05; }
.google-score { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.google-count {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink-soft); text-transform: uppercase;
}
.google-sep { width: 1px; height: 18px; background: var(--line); flex-shrink: 0; }
.google-verified {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 600; color: #34A853;
}
.google-verified svg { width: 12px; height: 12px; stroke: #34A853; stroke-width: 2.8; fill: none; }
.gate-google { margin-top: 10px; }
@media (max-width: 600px) {
  .google-reviews { flex-wrap: wrap; gap: 10px; padding: 10px 16px; justify-content: center; }
  .google-sep { display: none; }
}

@media (max-width: 760px) {
  .hero { padding: 36px 20px 48px; }
  .hero-inner { gap: 18px; }
  .hero-headline { font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .hl-desktop { display: none; }
  .hl-mobile  { display: block; }
}

/* =====================================================================
   VSL
   ===================================================================== */
.vsl-section { background: var(--bg); padding: 0 24px 48px; }
.vsl-inner { max-width: 900px; margin: 0 auto; }
/* Hero VSL video: 16:9 capped at 560px, centered (verjaardagscadeau format) */
.hero-video { width: 100%; max-width: 560px; margin: 4px auto 0; }
.hero-video .vsl-frame { border-radius: 20px; }
.vsl-hint {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
}
.vsl-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}
.vsl-ratio { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; }
.vsl-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* frame glow (yellow pulse so the VSL clearly stands out) */
@keyframes frame-glow-light {
  0%, 100% { box-shadow: 0 0 0 1px rgba(10,32,39,0.10), 0 28px 64px -22px rgba(10,32,39,0.4); }
  50%      { box-shadow: 0 0 0 4px rgba(255,242,0,0.6), 0 0 64px rgba(255,242,0,0.30), 0 28px 64px -22px rgba(10,32,39,0.4); }
}
.vsl-frame-pp5 { animation: frame-glow-light 2.4s ease-in-out infinite; }
.vsl-frame-pp5.unmuted { animation: none; box-shadow: 0 0 0 1px rgba(10,32,39,0.10), 0 28px 64px -22px rgba(10,32,39,0.4); }

/* "Watch the video" cue above the VSL — down arrows both sides pointing at the video */
.hero-video-cue {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 auto 12px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal);
}
.hero-video-cue .cue-arrow { display: inline-flex; color: var(--teal); animation: cue-bob 1.2s ease-in-out infinite; }
.hero-video-cue .cue-arrow svg { width: 24px; height: 24px; display: block; }
@keyframes cue-bob { 0%,100% { transform: translateY(-3px); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .hero-video-cue .cue-arrow { animation: none; } }

.vsl-unmute {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  cursor: pointer; border: none;
  background: radial-gradient(ellipse at center, rgba(5,11,15,0.15) 0%, rgba(5,11,15,0.5) 100%);
  transition: opacity 0.4s ease;
}
.vsl-unmute.hidden { opacity: 0; pointer-events: none; }
.vsl-unmute-ring {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,242,0,0.14);
  border: 2px solid rgba(255,242,0,0.95);
  box-shadow: 0 0 0 12px rgba(255,242,0,0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--pulse);
  animation: ring-pulse 2.2s ease-in-out infinite, ring-bob 3s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.vsl-unmute:hover .vsl-unmute-ring { transform: scale(1.1); }
@keyframes ring-pulse {
  0%,100% { box-shadow: 0 0 0 10px rgba(255,242,0,0.08), 0 0 20px rgba(255,242,0,0.12); }
  50%     { box-shadow: 0 0 0 26px rgba(255,242,0,0.02), 0 0 52px rgba(255,242,0,0.22); }
}
@keyframes ring-bob { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.vsl-unmute-text {
  font-size: clamp(0.9rem, 1.6vw, 1.12rem);
  font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}
.vsl-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 7px; background: var(--blue); z-index: 8; }
.vsl-progress-fill { height: 100%; background: var(--pulse); width: 0%; transition: width 0.5s linear; box-shadow: 0 0 10px rgba(255,242,0,0.55); }
.vsl-pause-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; pointer-events: none; z-index: 5; }
.vsl-pause-overlay.visible { opacity: 1; }
.vsl-pause-overlay svg { width: 70px; height: 70px; fill: rgba(255,255,255,0.92); filter: drop-shadow(0 2px 14px rgba(0,0,0,0.7)); }
.vsl-fullscreen-btn {
  position: absolute; bottom: 12px; right: 12px; width: 36px; height: 36px;
  background: rgba(5,11,15,0.55); border: 1px solid rgba(255,255,255,0.2); border-radius: 7px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10;
  opacity: 0; transition: opacity 0.25s, background 0.15s; padding: 0;
}
.vsl-fullscreen-btn:hover { background: rgba(5,11,15,0.85); }
.vsl-fullscreen-btn svg { width: 17px; height: 17px; fill: #fff; }
.vsl-frame.unmuted .vsl-fullscreen-btn { opacity: 1; }
.vsl-fullscreen-btn .fs-icon-minimize { display: none; }
.vsl-pseudo-fs {
  position: fixed !important; top: 0 !important; left: 0 !important;
  width: 100vw !important; height: 100dvh !important; z-index: 99999 !important;
  border-radius: 0 !important; background: #000 !important; margin: 0 !important; max-width: none !important;
}
.vsl-pseudo-fs .vsl-ratio { border-radius: 0; padding-bottom: 0; height: 100dvh; }
.vsl-pseudo-fs video { width: 100% !important; height: 100% !important; object-fit: contain !important; }
.vsl-pseudo-fs .vsl-fullscreen-btn { opacity: 1 !important; }
.vsl-pseudo-fs .fs-icon-expand { display: none !important; }
.vsl-pseudo-fs .fs-icon-minimize { display: block !important; }

/* =====================================================================
   VSL GATE / TIMER
   ===================================================================== */
.vsl-gate { background: var(--bg); padding: 22px 24px 72px; text-align: center; }
.vsl-gate.hidden { display: none; }
.vsl-gate-inner { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.vsl-gate-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal);
}
.vsl-gate-timer {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(2.4rem, 5.4vw, 3.6rem); line-height: 1; letter-spacing: -0.04em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.vsl-gate-cta-wrap { margin-top: 12px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.vsl-gate-sub { font-size: clamp(0.9rem, 1.3vw, 1.02rem); color: var(--ink-soft); max-width: 400px; line-height: 1.5; }

/* Locked content reveal */
.locked-content { display: none; }
.locked-content.unlocked { display: block; animation: content-reveal 0.8s var(--ease); }
@keyframes content-reveal { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* =====================================================================
   VIDEO TESTIMONIAL CAROUSEL (entrepreneur page)
   ===================================================================== */
.testimonials { background: var(--bg-alt); padding: 90px 24px; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-head { text-align: center; margin-bottom: 48px; }
.testimonials-sub { text-align: center; font-size: clamp(0.95rem,1.2vw,1.05rem); color: var(--ink-soft); max-width: 720px; margin: 14px auto 0; line-height: 1.6; }
.vtm-carousel-wrap { position: relative; max-width: 1200px; margin: 0 auto; }
.vtm-carousel-wrap::before, .vtm-carousel-wrap::after { content: ''; position: absolute; top: 0; bottom: 28px; width: 90px; pointer-events: none; z-index: 2; }
.vtm-carousel-wrap::before { left: -32px; background: linear-gradient(to right, var(--bg-alt) 0%, var(--bg-alt) 38%, rgba(231,240,237,0) 100%); }
.vtm-carousel-wrap::after  { right: -32px; background: linear-gradient(to left, var(--bg-alt) 0%, var(--bg-alt) 38%, rgba(231,240,237,0) 100%); }
.vtm-grid {
  display: flex; gap: 20px; overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory; scroll-padding-left: 32px;
  padding: 8px 32px 28px; margin: 0 -32px;
  scrollbar-width: thin; scrollbar-color: rgba(43,105,121,0.4) transparent; -webkit-overflow-scrolling: touch;
}
.vtm-grid::-webkit-scrollbar { height: 6px; }
.vtm-grid::-webkit-scrollbar-track { background: transparent; }
.vtm-grid::-webkit-scrollbar-thumb { background: rgba(43,105,121,0.35); border-radius: 3px; }
.vtm-card {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; background: #000;
  cursor: pointer; flex: 0 0 auto; width: 280px; scroll-snap-align: start; aspect-ratio: 9/16;
  box-shadow: var(--shadow-sm);
}
.vtm-video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.vtm-card:hover .vtm-video { transform: scale(1.02); }
.vtm-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 55%, transparent 100%); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 22px 18px; }
.vtm-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(255,242,0,0.16); border: 2px solid rgba(255,242,0,0.85); display: flex; align-items: center; justify-content: center; color: var(--pulse); transition: background 0.2s, transform 0.2s; }
.vtm-card.playing .vtm-play { opacity: 0; }
.vtm-card:hover .vtm-play { background: rgba(255,242,0,0.28); transform: translate(-50%,-50%) scale(1.08); }
.vtm-name { font-weight: 700; font-size: clamp(0.95rem,1.6vw,1.1rem); color: #fff; line-height: 1.3; }
.vtm-result { font-size: clamp(0.78rem,1.2vw,0.88rem); color: var(--pulse); font-weight: 600; margin-top: 3px; }
.vtm-hint { text-align: center; margin-top: 8px; font-size: 0.74rem; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 10px; }
.vtm-hint-arrow { display: inline-flex; animation: vtm-hint-slide 1.8s ease-in-out infinite; }
@keyframes vtm-hint-slide { 0%,100% { transform: translateX(0); opacity: 0.6; } 50% { transform: translateX(5px); opacity: 1; } }

/* =====================================================================
   TRANSFORMATIONS
   ===================================================================== */
.transformations { background: var(--bg); padding: 90px 24px; }
.transformations-inner { max-width: 1240px; margin: 0 auto; }
.transformations-head { text-align: center; margin-bottom: 52px; }
.transformations-sub { text-align: center; font-size: clamp(0.95rem,1.2vw,1.05rem); color: var(--ink-soft); max-width: 740px; margin: 16px auto 0; line-height: 1.65; }
.tf-grid-rich { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; max-width: 1240px; margin: 0 auto; }
.tf-photo-card {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); aspect-ratio: 4/5; box-shadow: var(--shadow-sm);
}
.tf-photo-card .tf-rich-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.tf-photo-card:hover .tf-rich-img { transform: scale(1.03); }
.tf-rich-badge {
  position: absolute; top: 12px; left: 12px; background: var(--pulse); color: var(--deep);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px; z-index: 3;
}
.section-cta { text-align: center; margin-top: 52px; }
@media (max-width: 1100px) { .tf-grid-rich { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 780px)  { .tf-grid-rich { grid-template-columns: repeat(2,1fr); gap: 16px; } }
@media (max-width: 480px)  { .tf-grid-rich { grid-template-columns: repeat(2,1fr); gap: 10px; } }
@media (prefers-reduced-motion: reduce) { .tf-photo-card .tf-rich-img { transition: none; } }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { background: var(--bg-alt); padding: 90px 24px; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: clamp(0.95rem,1.3vw,1.07rem); font-weight: 600; color: var(--ink); line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--teal); background: rgba(43,105,121,0.08); }
.faq-icon svg { width: 12px; height: 12px; stroke: var(--ink-soft); }
.faq-item.open .faq-icon svg { stroke: var(--teal); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 0 26px; font-size: clamp(0.88rem,1.1vw,0.97rem); line-height: 1.8; color: var(--ink-body); }

/* =====================================================================
   TYPEFORM
   ===================================================================== */
.typeform-section { background: var(--bg); padding: 90px 24px; }
.typeform-inner { max-width: 860px; margin: 0 auto; }
.typeform-head { text-align: center; margin-bottom: 40px; }
.typeform-head p { font-size: clamp(0.9rem,1.2vw,1rem); color: var(--ink-soft); margin-top: 10px; }
.typeform-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--surface); }
@media (max-width: 640px) {
  .typeform-section { padding-left: 0; padding-right: 0; }
  .typeform-inner { max-width: 100%; }
  .typeform-head { padding: 0 20px; }
  .typeform-frame { border-radius: 0; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--deep); padding: 40px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-logo { height: 26px; width: auto; }
.footer-copy { font-size: 0.71rem; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 700px) {
  .testimonials, .transformations, .faq, .typeform-section { padding: 64px 20px; }
  .vtm-card { width: 240px; }
  .vtm-grid { gap: 14px; padding: 8px 20px 24px; margin: 0 -20px; scroll-padding-left: 20px; }
  .vtm-carousel-wrap::before, .vtm-carousel-wrap::after { width: 60px; }
  .vtm-carousel-wrap::before { left: -20px; }
  .vtm-carousel-wrap::after  { right: -20px; }
}

/* Autoplay geblokkeerd (in-app browsers): overlay wordt startknop */
.vsl-unmute-ring .icon-play { display: none; }
.vsl-frame.autoplay-blocked .vsl-unmute-ring .icon-play { display: block; }
.vsl-frame.autoplay-blocked .vsl-unmute-ring .icon-sound { display: none; }
