/* === GLR Design System === */
/* Rewritten for consistent spacing (8px grid), equal-height cards,  */
/* cleaner typography, polished interactions, and modern aesthetics.  */

:root {
  /* Brand */
  --orange: #FF6A00;
  --orange-hover: #E55E00;
  --orange-light: rgba(255, 106, 0, 0.08);
  --orange-subtle: rgba(255, 106, 0, 0.04);

  /* Neutrals */
  --dark: #1A1A1A;
  --text: #374151;
  --text-light: #6B7280;
  --light-bg: #F8F9FA;
  --light-bg-alt: #F1F3F5;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --border-light: #F0F0F0;

  /* Radii */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-btn: 0 4px 14px rgba(255, 106, 0, 0.3);

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;

  /* Spacing scale (8px base) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-7: 56px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-12: 96px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.35s ease;
}

/* ============================
   Reset & Base
   ============================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--orange-hover);
  text-decoration: underline;
}

/* ============================
   Typography
   ============================ */

h1, h2, h3, h4 {
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.625rem, 2.5vw, 2.125rem);
  margin-bottom: var(--sp-2);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: var(--sp-1);
  font-weight: 600;
}

h4 {
  font-size: 1.0625rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Spacing: h2 into grids/steps/tables/checklists */
h2 + .grid,
h2 + .steps,
h2 + .pricing-table,
h2 + .checklist,
h2 + .faq,
h2 + .faq-item,
h2 + .package-cards {
  margin-top: var(--sp-1);
}

/* Section intro paragraph */
.section__intro {
  margin-bottom: var(--sp-5);
  font-size: 1.0625rem;
  color: var(--text-light);
}

/* ============================
   Lists (ul / ol)
   ============================ */

ul, ol {
  margin-bottom: 1rem;
  padding-left: var(--sp-4);
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

ul li, ol li {
  margin-bottom: var(--sp-1);
  line-height: 1.65;
  padding-left: 4px;
}

ul li::marker {
  color: var(--orange);
}

ol li::marker {
  color: var(--orange);
  font-weight: 600;
}

li strong {
  color: var(--dark);
  font-weight: 600;
}

/* Nested lists */
ul ul, ol ol, ul ol, ol ul {
  margin-top: var(--sp-1);
  margin-bottom: 0;
}

/* ============================
   Layout
   ============================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.section {
  padding: var(--sp-12) 0;
}

.section > .container > h2:first-child {
  margin-bottom: var(--sp-1);
}

.section > .container > h2:first-child + p {
  margin-bottom: var(--sp-5);
  color: var(--text-light);
  font-size: 1.0625rem;
}

.section > .container > h2:first-child + .grid,
.section > .container > h2:first-child + .steps,
.section > .container > h2:first-child + .checklist {
  margin-top: var(--sp-4);
}

.section--gray {
  background: var(--light-bg);
}

.section--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--orange {
  background: var(--orange);
  color: var(--white);
}

.section--orange h2 {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.text-light {
  color: var(--text-light);
}

.max-w-700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================
   Grid
   ============================ */

.grid {
  display: grid;
  gap: var(--sp-4);
}

/* Make grid children flex containers so cards stretch to equal height */
.grid > * {
  display: flex;
  flex-direction: column;
}

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

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

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

.grid--60-40 {
  grid-template-columns: 3fr 2fr;
  align-items: center;
}

.grid--40-60 {
  grid-template-columns: 2fr 3fr;
  align-items: center;
}

/* Content grids don't need flex on children */
.grid--60-40 > *,
.grid--40-60 > * {
  display: block;
}

/* ============================
   Header / Nav
   ============================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition-base);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition-fast);
}

.header__logo img {
  height: 48px;
  width: auto;
  display: block;
}

.header__logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.nav a {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  padding: 4px 0;
}

.nav a:hover {
  color: var(--orange);
  text-decoration: none;
}

/* Primary button in nav (Proeftraining) moet witte tekst hebben,
   ondanks dat .nav a een donkere tekstkleur zet. */
.nav a.btn--primary {
  color: var(--white);
}

.nav a.btn--primary:hover {
  color: var(--white);
}

.nav__dropdown {
  position: static;
}

/* Mega menu */
.mega-menu {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-5) 0;
  z-index: 99;
}

/* JS adds .mega-menu--open */
.mega-menu.mega-menu--open {
  display: block;
}

.mega-menu__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-3);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.mega-menu__item {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius);
  transition: background var(--transition-fast);
  text-decoration: none;
}

.mega-menu__item:hover {
  background: var(--light-bg);
  text-decoration: none;
}

.mega-menu__item strong {
  display: block;
  color: var(--dark);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.mega-menu__item span {
  display: block;
  color: var(--text-light);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.mega-menu__item--highlight {
  background: var(--orange-light);
  border: 1px solid var(--orange);
}

.mega-menu__item--highlight:hover {
  background: rgba(255, 106, 0, 0.12);
}

.mega-menu__item--highlight strong {
  color: var(--orange);
}

.mega-menu__divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--border-light);
  margin: var(--sp-1) 0;
}

.mega-menu__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--sp-2) var(--sp-3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  border-top: 1px solid var(--border-light);
}

.mega-menu__bottom-left {
  display: flex;
  gap: var(--sp-3);
  flex: 1;
}

.mega-menu__bottom-left .mega-menu__item {
  flex: 1;
}

.mega-menu__cursus {
  max-width: var(--max-width);
  margin: var(--sp-2) auto 0;
  padding: 0 var(--sp-3);
}

.mega-menu__cursus a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--orange);
  color: #fff;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.mega-menu__cursus a:hover {
  background: var(--orange-hover);
  text-decoration: none;
}

.mega-menu__cursus a:hover strong {
  color: var(--dark);
}

.mega-menu__cursus a:hover span {
  color: var(--dark);
  opacity: 0.8;
}

.mega-menu__cursus strong {
  font-size: 0.9375rem;
}

.mega-menu__cursus span {
  font-size: 0.8125rem;
  opacity: 0.9;
  margin-left: var(--sp-2);
  white-space: nowrap;
}

/* ============================
   Mobile menu
   ============================ */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-1);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: all var(--transition-base);
  border-radius: 1px;
}

/* ============================
   Buttons
   ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px var(--sp-4);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn--primary:active {
  box-shadow: 0 2px 6px rgba(255, 106, 0, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--small {
  padding: 10px var(--sp-3);
  font-size: 0.875rem;
}

/* Nav CTA needs extra breathing room */
.nav .btn--small {
  padding: 10px var(--sp-4);
  margin-left: var(--sp-1);
}

.nav .btn--primary:hover {
  color: var(--white);
}

.btn-group {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* ============================
   Hero
   ============================ */

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  padding: var(--sp-10) 0;
}

.hero--small {
  min-height: 320px;
  padding: var(--sp-8) 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.hero p {
  font-size: 1.1875rem;
  opacity: 0.9;
  margin-bottom: var(--sp-4);
  line-height: 1.65;
}

/* ============================
   Cards
   ============================ */

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.card h3 {
  margin-bottom: var(--sp-1);
}

.card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Push last element (like a button) to the bottom of the card */
.card > :last-child {
  margin-top: auto;
}

/* ============================
   Stats bar
   ============================ */

.stats-bar {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
}

.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  font-weight: 500;
  color: var(--dark);
  font-size: 0.9375rem;
  padding: var(--sp-1) var(--sp-4);
  position: relative;
}

/* Visual separators between stats */
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: var(--border);
}

.stat strong {
  color: var(--orange);
  font-weight: 700;
}

/* Large variant for homepage */
.stats-bar--large {
  padding: var(--sp-5) 0;
  background: var(--light-bg);
  border-bottom: none;
}

.stats-bar--large .stat {
  font-size: 1.125rem;
  padding: var(--sp-1) var(--sp-5);
}

.stats-bar--large .stat strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 2px;
}

/* ============================
   Pricing table
   ============================ */

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: var(--sp-4) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.pricing-table th,
.pricing-table td {
  padding: var(--sp-2) var(--sp-3);
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9375rem;
  vertical-align: middle;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table th {
  background: var(--light-bg);
  font-weight: 600;
  color: var(--dark);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-top: var(--sp-2);
  padding-bottom: var(--sp-2);
}

.pricing-table tbody tr {
  transition: background var(--transition-fast);
}

.pricing-table tbody tr:hover {
  background: var(--orange-subtle);
}

/* Highlighted column */
.pricing-table .highlight {
  background: var(--orange-subtle);
  border-left: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  font-weight: 500;
}

.pricing-table .highlight-header {
  background: var(--orange);
  color: var(--white);
  border-left: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Ensure highlight is visually prominent */
.pricing-table tbody tr:hover .highlight {
  background: rgba(255, 106, 0, 0.1);
}

.pricing-table .check {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.125rem;
}

.pricing-table .dash {
  color: #CCC;
}

/* Badge */
.badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  vertical-align: middle;
}

/* ============================
   Steps
   ============================ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  counter-reset: step;
}

.step {
  text-align: center;
  counter-increment: step;
  padding: var(--sp-3);
}

.step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--sp-2);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.25);
}

.step h3 {
  margin-bottom: var(--sp-1);
}

.step p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================
   Coach profiles
   ============================ */

.coach__photo {
  aspect-ratio: 1;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  overflow: hidden;
}

/* ============================
   Testimonials
   ============================ */

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--orange);
  padding: var(--sp-3) var(--sp-4);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}

.testimonial blockquote {
  font-size: 1.0625rem;
  font-style: italic;
  margin-bottom: var(--sp-2);
  line-height: 1.65;
  color: var(--text);
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.875rem;
}

/* Testimonial on gray bg */
.section--gray .testimonial {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

/* ============================
   CTA Banner
   ============================ */

.cta-banner {
  padding: var(--sp-10) 0;
  text-align: center;
}

/* Extra breathing room in dark sections */
.section--dark .cta-banner,
.section--orange .cta-banner {
  padding: var(--sp-12) 0;
}

.cta-banner h2 {
  margin-bottom: var(--sp-2);
}

.cta-banner p {
  margin-bottom: var(--sp-4);
  font-size: 1.0625rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.cta-banner .btn-group {
  justify-content: center;
}

/* ============================
   FAQ / Accordion
   ============================ */

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: var(--sp-3) 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: color var(--transition-fast);
}

.faq-item summary:hover {
  color: var(--orange);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.375rem;
  color: var(--orange);
  font-weight: 400;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--sp-2);
  width: 24px;
  text-align: center;
}

.faq-item[open] summary::after {
  content: '\2212'; /* minus sign */
}

.faq-item .faq-answer {
  padding: 0 0 var(--sp-3);
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================
   Footer
   ============================ */

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--sp-10) 0 var(--sp-4);
}

.footer h4 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-3);
}

.footer__logo-img {
  /* Invert the black logo to white for dark footer */
  filter: invert(1);
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer .grid {
  gap: var(--sp-6);
}

.footer .grid > * {
  display: block;
}

.footer__bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__social {
  display: flex;
  gap: var(--sp-2);
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__social a svg {
  flex-shrink: 0;
}

/* ============================
   Checklist
   ============================ */

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  padding: 12px 0 12px var(--sp-5);
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-fast);
}

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

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange-light);
}

.checklist li::after {
  content: '\2713';
  position: absolute;
  left: 5px;
  top: 15px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 20px;
}

/* ============================
   Warning list
   ============================ */

.warning-list {
  list-style: none;
  padding-left: 0;
}

.warning-list li {
  padding: 12px 0 12px var(--sp-5);
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid var(--border-light);
}

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

.warning-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.1);
}

.warning-list li::after {
  content: '\2715';
  position: absolute;
  left: 5px;
  top: 15px;
  color: #DC3545;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 20px;
}

/* ============================
   PR tables (over-ons)
   ============================ */

.pr-table {
  border-collapse: collapse;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-1);
}

.pr-table th,
.pr-table td {
  padding: var(--sp-1) var(--sp-3) var(--sp-1) 0;
  font-size: 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.pr-table th {
  color: var(--text-light);
  font-weight: 500;
}

.pr-table td {
  font-weight: 600;
  color: var(--dark);
}

/* ============================
   Price display in hero
   ============================ */

.price-display {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.95;
}

/* ============================
   Breadcrumb
   ============================ */

.breadcrumb {
  padding: var(--sp-2) 0;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: var(--sp-2);
}

.breadcrumb a {
  color: var(--text-light);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--orange);
  text-decoration: none;
}

/* ============================
   Forms
   ============================ */

.form-group {
  margin-bottom: var(--sp-3);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--sp-1);
  font-size: 0.875rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px var(--sp-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #C0C0C0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.form-group textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.6;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ============================
   Keuzehulp (Quiz)
   ============================ */

.quiz-question {
  display: none;
}

.quiz-question.active {
  display: block;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}

.quiz-option {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-3);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.quiz-option:hover {
  border-color: var(--orange);
  background: var(--orange-subtle);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.quiz-option.selected {
  border-color: var(--orange);
  background: var(--orange-light);
  box-shadow: 0 0 0 1px var(--orange);
}

.quiz-option h4 {
  margin-bottom: 4px;
}

.quiz-option p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.quiz-result {
  display: none;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  border-left: 4px solid var(--orange);
}

.quiz-result.active {
  display: block;
}

/* ============================
   Comparison / Package cards
   ============================ */

.package-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Push last element (button) to bottom of package card */
.package-card > :last-child {
  margin-top: auto;
}

/* Keuzehulp CTA block */
.keuzehulp-cta {
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: var(--orange-light);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  text-align: center;
}

.keuzehulp-cta p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--sp-2);
}

.package-card h3 {
  font-size: 1.0625rem;
}

.package-card .price {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: var(--sp-2);
}

/* ============================
   Aanmelden layout
   ============================ */

.aanmeld-form-col {
  position: sticky;
  top: 96px;
  align-self: start;
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 900px) {
  :root {
    --sp-12: 64px;
    --sp-10: 56px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .grid--2, .grid--3, .grid--4,
  .grid--60-40, .grid--40-60 {
    grid-template-columns: 1fr;
  }

  .aanmeld-form-col {
    position: static;
  }

  .aanmeld-info-col {
    order: -1;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .hero {
    min-height: 400px;
    padding: var(--sp-8) 0;
  }

  .hero--small {
    min-height: 260px;
    padding: var(--sp-6) 0;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-3);
    gap: var(--sp-2);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    font-size: 0.75rem;
    table-layout: fixed;
    width: 100%;
    word-wrap: break-word;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 8px 6px;
  }

  .pricing-table th:first-child,
  .pricing-table td:first-child {
    width: 30%;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }

  .package-cards {
    grid-template-columns: 1fr;
  }

  /* Stats bar: separator adjustments */
  .stats-bar .container {
    gap: 0;
  }

  .stat {
    padding: var(--sp-1) var(--sp-2);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-2);
    text-align: center;
  }

  .footer .grid {
    gap: var(--sp-4);
  }

  .container {
    padding: 0 var(--sp-2);
  }
}

@media (max-width: 480px) {
  .stats-bar .container {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-1);
  }

  .stat + .stat::before {
    display: none;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero p {
    font-size: 1.0625rem;
  }
}

/* ============================
   Table wrapper (mobile scroll)
   ============================ */

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--sp-4) 0;
}

.table-wrapper .pricing-table {
  margin: 0;
  min-width: 600px;
}

/* ============================
   Utility classes
   ============================ */

/* Coach card role text */
.coach-role {
  color: var(--orange);
  font-weight: 600;
  margin-bottom: var(--sp-1);
}

/* Coach card details text */
.coach-detail {
  font-size: 0.85rem;
}

/* Section top margin helper */
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }

/* Font size small */
.text-sm { font-size: 0.85rem; }

/* Required field marker */
.required { color: #DC3545; }

/* Coach profile grid */
.coach-profile-grid {
  align-items: center;
  margin-bottom: var(--sp-8);
}

/* ============================
   Utility: inline style replacements
   ============================ */

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

.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }

.font-sm { font-size: 0.9rem; }

.quiz-section {
  min-height: 60vh;
}

.quiz-container {
  max-width: 720px;
}

.quiz-icon {
  font-size: 2rem;
  margin-bottom: var(--sp-1);
}

.quiz-result-heading {
  color: var(--orange);
}

.quiz-result-price {
  font-size: 1.25rem;
}

.quiz-restart {
  margin-top: var(--sp-3);
}

.quiz-step-label {
  margin-bottom: 4px;
}

.btn-group--mt {
  margin-top: var(--sp-3);
}

.badge--block {
  display: inline-block;
  margin-bottom: var(--sp-2);
}

/* Focus styles for quiz options (keyboard accessibility) */
.quiz-option:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-color: var(--orange);
  background: var(--orange-subtle);
}

.quiz-option:focus:not(:focus-visible) {
  outline: none;
}

.quiz-option:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ============================
   Blog
   ============================ */

.blog-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}

.blog-card__body {
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.blog-card__thumb {
  width: 100px;
  min-width: 100px;
  height: 100px;
  object-fit: cover;
  align-self: center;
  border-radius: var(--radius-md);
  margin-right: var(--sp-3);
}

.blog-card__meta {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: var(--sp-1);
}

.blog-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: var(--sp-1);
  color: var(--dark);
}

.blog-card__excerpt {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Article content */
.article-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
}

.article-content h2 {
  font-size: 1.5rem;
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-2);
  color: var(--dark);
}

.article-content h3 {
  font-size: 1.25rem;
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-2);
  color: var(--dark);
}

.article-content h4 {
  font-size: 1.125rem;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
  color: var(--dark);
}

.article-content p {
  margin-bottom: var(--sp-3);
}

.article-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-base);
}

.article-content a:hover {
  color: var(--orange-hover);
}

.article-content img {
  border-radius: var(--radius-lg);
  max-width: 100%;
  height: auto;
  margin: var(--sp-3) 0;
  display: block;
}

.article-content ul,
.article-content ol {
  padding-left: var(--sp-4);
  margin-bottom: var(--sp-3);
}

.article-content li {
  margin-bottom: var(--sp-1);
}

.article-content figure {
  margin: var(--sp-4) 0;
  max-width: 100%;
}

.article-content figure img {
  width: 100%;
}

.article-content figcaption {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: var(--sp-1);
  text-align: center;
}

.article-content blockquote {
  border-left: 3px solid var(--orange);
  padding: var(--sp-2) var(--sp-3);
  margin: var(--sp-4) 0;
  font-style: italic;
  color: var(--text-light);
  background: var(--orange-subtle);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-content strong {
  color: var(--dark);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-3) 0;
}

.article-content th,
.article-content td {
  padding: var(--sp-1) var(--sp-2);
  border: 1px solid var(--border);
  text-align: left;
}

.article-content th {
  background: var(--light-bg);
  font-weight: 600;
}

.article-content iframe,
.article-content video {
  max-width: 100%;
  border-radius: var(--radius-lg);
  margin: var(--sp-3) 0;
}

.article-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--sp-4) 0;
}

/* ============================
   Map link (Google Maps external link)
   ============================ */

.map-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  transition: color var(--transition-base);
}

.map-link:hover {
  color: var(--orange-hover);
  text-decoration: underline;
}

.map-link svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* ============================
   Testimonial card (Google review)
   ============================ */

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  height: 100%;
}

.testimonial-card__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--orange);
  line-height: 0;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  font-style: italic;
  margin: 0;
  quotes: "\201C" "\201D";
}

.testimonial-card__quote::before { content: open-quote; margin-right: 2px; }
.testimonial-card__quote::after { content: close-quote; margin-left: 2px; }

.testimonial-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-1);
  flex-wrap: wrap;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border-light);
}

.testimonial-card__author {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9375rem;
}

.testimonial-card__source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-light);
  font-size: 0.8125rem;
}

.testimonial-card__source svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.testimonials-footer {
  margin-top: var(--sp-5);
  text-align: center;
}

.testimonials-footer a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

/* Single inline testimonial (for pages with just 1 review) */
.testimonial-single {
  max-width: 720px;
  margin: 0 auto;
}

/* ============================
   Quiz progressbar + back button
   ============================ */

.quiz-progress {
  display: none;
  margin-bottom: var(--sp-4);
}

.quiz-progress.active {
  display: block;
}

.quiz-progress__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-bottom: var(--sp-1);
  flex-wrap: wrap;
}

.quiz-progress__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--orange);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.quiz-progress__back:hover {
  color: var(--orange-hover);
  text-decoration: underline;
}

.quiz-progress__back[disabled] {
  visibility: hidden;
}

.quiz-progress__label {
  font-size: 0.9375rem;
  color: var(--text-light);
  font-weight: 500;
  margin: 0;
}

.quiz-progress__bar {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.quiz-progress__fill {
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
  transition: width 0.35s ease;
  width: 0%;
}

/* ============================
   Scarcity badge (bv. "Slechts 25 plekken")
   ============================ */

.scarcity-note {
  display: inline-block;
  margin-top: var(--sp-2);
  padding: 6px 14px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
}
