/* ══════════════════════════════════════════
   JV SPORT PERFORMANCE — style.css
══════════════════════════════════════════ */

/* ── VARIABELEN ── */
:root {
  --purple: #3b1a6b;
  --purple-light: #7c4bc0;
  --silver: #9aa0b0;
  --bg: #f4f3f7;
  --bg-dark: #0e0a18;
  --text: #1a1525;
  --text-muted: #6b6380;
  --white: #ffffff;
  --border: #e0dde8;
}

/* ── RESET & BASE ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   NAVIGATIE
══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--purple);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg);
}

.book-btn {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 4px !important;
  margin-left: 8px;
}

.book-btn:hover {
  background: var(--purple-light) !important;
  color: var(--white) !important;
}

/* ══════════════════════════════════════════
   GEDEELDE STIJLEN
══════════════════════════════════════════ */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple-light);
  font-weight: 600;
  margin-bottom: 12px;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 1px;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 1px;
}

h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Knoppen */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.btn-dark {
  background: var(--text);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--purple);
}

.btn-outline {
  background: none;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--text);
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
}

.btn-purple:hover {
  background: var(--purple-light);
}

/* Scroll-reveal animatie */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   HERO — #home
══════════════════════════════════════════ */
#home {
  padding: 92px 0 96px;
  border-bottom: 1px solid var(--border);
}

/* Actiefoto bovenaan hero */
.hero-action-photo {
  width: 100%;
  margin-bottom: 48px;
  border-radius: 12px;
  overflow: hidden;
  max-height: 480px;
}

.hero-action-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  max-height: 480px;
}

.hero-visual-block {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 2 / 3;
  width: 100%;
}

.hero-visual-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-visual-block .hero-visual-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hero-left h1 {
  margin-bottom: 24px;
}

.hero-left {
  padding-top: 2%;
}

.hero-left h1 span {
  color: var(--purple);
}

.hero-left > p {
  font-size: 16px;
  max-width: 400px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual-text {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-visual-text strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: white;
}

.hero-visual-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.hero-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
}

.hero-badge-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-badge-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--purple);
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   VISION — #vision
══════════════════════════════════════════ */
#vision {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.vision-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.vision-left h2 span {
  color: var(--purple);
  display: block;
}

.vision-right p {
  font-size: 16px;
  margin-bottom: 20px;
}

.vision-right p:last-of-type {
  margin-bottom: 0;
}

/* Foto naast/onder Why I do this */
.vision-photo {
  margin-top: 48px;
  border-radius: 12px;
  overflow: hidden;
  max-height: 420px;
}

.vision-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  max-height: 420px;
}

/* ══════════════════════════════════════════
   SERVICES — #services
══════════════════════════════════════════ */
#services {
  padding: 96px 0 0;
}

.services-intro {
  margin-bottom: 48px;
}

.services-intro h2 {
  margin-top: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 40px;
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--bg);
}

.service-card--wide {
  grid-column: span 2;
  border-top: 1px solid var(--border);
}

.service-num {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--purple-light);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
}

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing {
  padding: 64px 0 96px;
  border-bottom: 1px solid var(--border);
}

.pricing h2 {
  margin: 12px 0 6px;
}

/* BTW notitie direct onder de titel */
.pricing-btw-note {
  font-size: 14px;
  font-weight: 500;
  color: var(--purple-light);
  margin-bottom: 36px;
  letter-spacing: 0.2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pricing-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}

/* Section label (PACKAGES / SUBSCRIPTIONS / etc.) */
.pricing-section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-section-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 4px;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  gap: 12px;
}

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

.pricing-list li span {
  color: var(--text-muted);
  flex-shrink: 0;
}

.pricing-list li strong {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.pricing-list li small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}

/* Foto naast de prijzenlijst (packages & subscriptions) */
.pricing-with-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.pricing-with-photo__text {
  /* tekst links */
}

.pricing-with-photo__img {
  border-radius: 8px;
  overflow: hidden;
  align-self: stretch;
  min-height: 200px;
}

.pricing-with-photo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 200px;
}

/* Online coaching blok — full width */
.pricing-block--online {
  grid-column: span 2;
}

/* Online coaching: plans + foto naast elkaar */
.online-coaching-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

.online-coaching-photo {
  border-radius: 8px;
  overflow: hidden;
  align-self: stretch;
  min-height: 260px;
}

.online-coaching-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 260px;
}

.online-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
  
}

.online-plan {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  position: relative;
}

.online-plan--featured {
  background: var(--purple);
  border-color: var(--purple);
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-light);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.plan-touch {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--text-muted);
  text-transform: none;
}

.online-plan--featured .plan-label {
  color: rgba(255, 255, 255, 0.6);
}

.online-plan--featured .plan-touch {
  color: rgba(255, 255, 255, 0.5);
}

.plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--purple);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 20px;
}

.plan-price span {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  font-weight: 400;
}

.online-plan--featured .plan-price {
  color: white;
}

.online-plan--featured .plan-price span {
  color: rgba(255, 255, 255, 0.5);
}

.online-plan ul {
  list-style: none;
}

.online-plan ul li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 16px;
  position: relative;
}

.online-plan ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple-light);
  font-size: 11px;
}

.online-plan ul li:last-child {
  border-bottom: none;
}

.online-plan--featured ul li {
  color: rgba(255, 255, 255, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.online-plan--featured ul li::before {
  color: rgba(155, 95, 224, 0.9);
}

/* PT on location blok — full width */
.pricing-block--location {
  grid-column: span 2;
}

/* Location: tekst + foto naast elkaar */
.location-pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.location-pricing-photo {
  border-radius: 8px;
  overflow: hidden;
  max-height: 280px;
}

.location-pricing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-height: 280px;
}

.location-price-tag {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   LOCATIES
══════════════════════════════════════════ */
.locations {
  Margin-top: 28px;
  padding: 64px 0 96px;
  border-bottom: 1px solid var(--border);
}

.locations h2 {
  margin: 12px 0 32px;

}

.locations-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.location-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  text-align: center;
}

.location-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.location-item h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 4px;
}

.location-item p {
  font-size: 12px;
}

/* ══════════════════════════════════════════
   ABOUT — #about
══════════════════════════════════════════ */
#about {
  padding: 22px 0 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

.about-intro h1 {
  margin: 12px 0 8px;
}

.about-intro .sub {
  font-size: 16px;
  color: var(--purple-light);
  font-weight: 500;
  margin-bottom: 24px;
}

.about-intro > div > p {
  font-size: 15px;
  margin-bottom: 16px;
}

.about-card {
  background: var(--purple);
  border-radius: 8px;
  padding: 40px;
}

.about-card h3 {
  color: white;
  font-size: 14px;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}

.about-card ul {
  list-style: none;
}

.about-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-card ul li:last-child {
  border-bottom: none;
}

.about-card ul li::before {
  content: '→';
  color: rgba(155, 95, 224, 0.9);
  flex-shrink: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* Portretfoto van Joran onder de paarse card */
.about-portrait {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  max-height: 420px;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  max-height: 420px;
}

/* Certificaten */
.certs {
  padding: 0 0 96px;
  border-bottom: 1px solid var(--border);
}

.certs h2 {
  margin: 12px 0 40px;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cert-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
}

.cert-item--more {
  background: var(--bg);
  border-style: dashed;
}

.cert-item .year {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--purple-light);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cert-item h4 {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}

.cert-item p {
  font-size: 13px;
}

/* ══════════════════════════════════════════
   TESTIMONIALS — #testimonials
══════════════════════════════════════════ */
#testimonials {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.testimonials-intro {
  margin-bottom: 48px;
}

.testimonials-intro h2 {
  margin-top: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.featured-testimonial {
  background: var(--bg-dark);
  border-radius: 8px;
  padding: 48px;
  grid-column: span 2;
}

.featured-testimonial blockquote {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 28px;
}

.featured-testimonial .stars {
  color: #9b5fe0;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.featured-testimonial .reviewer-name {
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.featured-testimonial .reviewer-role {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin-top: 2px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(59, 26, 107, 0.08);
}

.stars {
  color: var(--purple);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 300;
}

.reviewer-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.reviewer-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   CONTACT — #contact
══════════════════════════════════════════ */
#contact {
  padding: 96px 0;
}

.contact-intro {
  margin-bottom: 56px;
}

.contact-intro h2 {
  margin-top: 12px;
}

.contact-intro p {
  font-size: 16px;
  max-width: 480px;
  margin-top: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-of-type {
  border-top: 1px solid var(--border);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

a.contact-item-val:hover {
  color: var(--purple);
}

.contact-form h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  transition: all 0.2s;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: #f0faf4;
  border: 1.5px solid #b0e8c8;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #1a6b3b;
  text-align: center;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--bg-dark);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-logo span {
  color: var(--purple-light);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews-heading {
  text-align: center;
  margin-bottom: 28px;
}

.reviews-heading .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple-light);
}

.reviews-heading h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 56px);
  letter-spacing: 1px;
  line-height: 1;
  color: var(--text);
}

.reviews-heading h2 span {
  color: var(--text);
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding-top: 10px 0 0;
}

.reviews-track {
  width: 90%;
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  height: 340px;
  overflow-y: auto;
  box-shadow: 0 6px 18px rgba(59, 26, 107, .05);
  scrollbar-width: thin;
  scrollbar-color: #d7d4e2 transparent;
}

.review-card::-webkit-scrollbar {
  width: 5px;
}

.review-card::-webkit-scrollbar-track {
  background: transparent;
}

.review-card::-webkit-scrollbar-thumb {
  background: #d7d4e2;
  border-radius: 50px;
}

.review-stars {
  color: #FFD43B;
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 14px;
}

.review-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.review-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

.review-card p + p {
  margin-top: 12px;
}

.review-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 42px;
}

.review-arrow {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--purple);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: .25s ease;
}

.review-arrow:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

/* ── WEBSITE FEEDBACK UPDATES ── */
.service-price {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 12px;
  border-radius: 4px;
  background: var(--bg);
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pricing-group-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px;
  margin-bottom: 4px;
}

.pricing-card {
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 16px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.pricing-card__sessions {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--purple);
  line-height: 1.1;
}

.pricing-card__price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card__note {
  font-size: 11px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   RESPONSIVE — max 1024px (tablet)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .vision-inner {
    gap: 40px;
  }

  .about-intro {
    gap: 40px;
  }

  .contact-layout {
    gap: 40px;
  }

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

  .online-coaching-layout {
    grid-template-columns: 1fr;
  }

  .online-coaching-photo {
    max-height: 260px;
  }

  .online-plans {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-with-photo {
    grid-template-columns: 1fr;
  }
  /* ── PRICING CARDS (vakjes per sessie-optie) ── */
.pricing-group-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 4px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  border-color: var(--purple-light);
  box-shadow: 0 4px 16px rgba(59,26,107,0.08);
}

.pricing-card__sessions {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--purple);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.pricing-card__price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card__note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Mobiel */
@media (max-width: 860px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}


  .pricing-with-photo__img {
    max-height: 200px;
  }

  .hero-actions {
    gap: 10px;
  }

  .review-card {
    flex: 0 0 calc((100% - 18px) / 2);
    height: 340px;
  }

  .reviews-track {
    width: 92%;
    gap: 18px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — max 860px (mobiel)
══════════════════════════════════════════ */
@media (max-width: 860px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .logo {
    font-size: 16px;
  }

  .container {
    padding: 0 20px;
  }

  #home {
    padding: 72px 0 40px;
  }

  .hero-action-photo {
    max-height: 300px;
    margin-bottom: 32px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hero-left {
    padding-top: 0;
    display: contents;
  }

  .hero-left h1 {
    order: 1;
    margin-bottom: 14px;
  }

  .hero-left > p {
    order: 2;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .hero-right {
    order: 3;
    display: flex;
    margin-top: 0;
  }

  .hero-visual-block {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 430px;
    border-radius: 12px;
  }

  .hero-actions {
    order: 4;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 8px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  #vision,
  #services,
  #about,
  #testimonials,
  #contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .vision-inner,
  .about-intro,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vision-photo {
    max-height: 280px;
  }

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

  .service-card--wide {
    grid-column: span 1;
  }

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

  .pricing-block--online,
  .pricing-block--location {
    grid-column: span 1;
  }

  .online-coaching-layout {
    grid-template-columns: 1fr;
  }

  .online-plans {
    grid-template-columns: 1fr;
  }

  .plan-badge {
    position: static;
    transform: none;
    display: inline-block;
    margin-bottom: 8px;
  }

  .pricing-with-photo {
    grid-template-columns: 1fr;
  }

  .location-pricing-layout {
    grid-template-columns: 1fr;
  }

  .locations-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .featured-testimonial {
    grid-column: span 1;
    padding: 32px;
  }

  footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 32px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .reviews-heading {
    margin-bottom: 22px;
  }

  .reviews-heading .eyebrow {
    margin-bottom: 8px;
  }

  .reviews-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .reviews-carousel {
    padding: 10px 0 0;
  }

  .reviews-track {
    width: 86%;
    margin: 0 auto;
    gap: 0;
    padding: 0;
    scroll-padding: 0;
  }

  .review-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    padding: 22px;
    height: 360px;
    overflow-y: auto;
  }

  .review-arrows {
    margin-top: 12px;
    margin-bottom: 38px;
  }

  .review-arrow {
    width: 42px;
    height: 42px;
  }

  .about-portrait {
    max-height: 320px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — max 480px (kleine telefoon)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .locations-row {
    grid-template-columns: 1fr;
  }

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

  .hero-badges-row {
    grid-template-columns: 1fr;
  }

  .pricing-block {
    padding: 24px 20px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .about-card {
    padding: 24px 20px;
  }

  .featured-testimonial {
    padding: 24px 20px;
  }

  .featured-testimonial blockquote {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .reviews-track {
    width: 84%;
  }

  .review-card {
    padding: 20px;
    height: 380px;
  }

  .review-card p {
    font-size: 13px;
  }

  .review-arrows {
    margin-bottom: 34px;
  }
}

/* ── BURGER BUTTON ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 16px 0 24px;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.mobile-menu ul {
  list-style: none;
  padding: 0 20px;
}

.mobile-menu ul li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu ul li:last-child {
  border-bottom: none;
  margin-top: 8px;
}

.mobile-menu ul li a {
  display: block;
  padding: 16px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu ul li a:hover {
  color: var(--purple);
}

.mobile-book-btn {
  display: block;
  text-align: center;
  background: var(--purple);
  color: var(--white) !important;
  padding: 14px !important;
  border-radius: 4px;
  font-weight: 600 !important;
}

.mobile-book-btn:hover {
  background: var(--purple-light);
}

@media (max-width: 860px) {
  .burger {
    display: flex;
  }
}