/* Protocol Les — template-stijl geïnspireerd op rijschool-landings (o.a. Warda / Van Dullemen) */

:root {
  --bg: #ffffff;
  --bg-alt: #f8faf7;
  --text: #111827;
  --muted: #5b6470;
  --accent: #00aeef;
  --accent-hover: #0095d0;
  --accent-soft: rgba(0, 174, 239, 0.12);
  --accent-border: rgba(0, 174, 239, 0.4);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 14px;
  --radius-pill: 999px;
  --header-h: 72px;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-display: "Montserrat", system-ui, sans-serif;
  --hero-sky: #00aeef;
  --hero-wa-green: #25d366;
  --space: 8px;
  --container: min(1120px, calc(100% - 2 * 24px));
  --transition: 0.25s ease;
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--space);
  top: var(--space);
  padding: 12px 16px;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  z-index: 10000;
  transform: translateY(-120%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.text-muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.text-accent {
  color: var(--accent);
  font-weight: 500;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  padding-block: 12px;
}

.site-header__logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-bounce), color var(--transition);
}

.site-header__logo:hover {
  color: var(--accent);
  transform: scale(1.04);
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
}

.site-nav__toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.site-nav.is-open .site-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-open .site-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .site-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
}

.site-nav__link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 8px 4px;
  border-radius: 6px;
  transition: transform 0.35s var(--ease-bounce), color var(--transition);
}

.site-nav__link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.site-nav__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-header__cta {
  flex-shrink: 0;
}

.site-nav__lang {
  list-style: none;
  margin: 0;
  padding: 0 0 0 14px;
  border-left: 1px solid rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
}

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
}

.lang-switch__divider {
  display: none;
}

.lang-switch__hint {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
  white-space: nowrap;
}

.lang-switch__select {
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 26px 6px 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  max-width: 148px;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
}

.lang-switch__select:hover {
  border-color: var(--accent-border);
}

.lang-switch__select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .site-nav__toggle {
    display: flex;
    margin-left: auto;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-header__logo {
    order: 0;
  }

  .site-nav {
    order: 2;
    width: 100%;
    justify-content: flex-end;
  }

  .site-header__cta {
    order: 1;
    margin-left: auto;
  }

  .site-nav__list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 16px 0 8px;
    gap: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 12px;
  }

  .site-nav.is-open .site-nav__list {
    display: flex;
  }

  .site-nav__link {
    padding: 14px 8px;
    border-radius: var(--radius);
  }

  .site-nav__link:hover {
    background: var(--bg-alt);
  }

  .site-nav__lang {
    border-left: none;
    padding: 12px 8px 4px;
    margin-top: 4px;
    width: 100%;
    border-top: 1px dashed rgba(15, 23, 42, 0.1);
  }

  .lang-switch {
    width: 100%;
    justify-content: space-between;
  }

  .lang-switch__select {
    max-width: none;
    flex: 1;
    min-width: 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    transform 0.4s var(--ease-bounce);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.35);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.4);
}

.btn--primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--on-dark {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn--secondary {
  background: var(--bg);
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  transform: translateY(-3px) scale(1.02);
}

.btn--secondary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.03);
}

.btn--ghost-light:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.btn--icon svg {
  flex-shrink: 0;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.btn--whatsapp:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn--whatsapp:focus-visible {
  outline: 2px solid #128c7e;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .btn--primary:hover,
  .btn--secondary:hover,
  .btn--ghost-light:hover {
    transform: none;
  }
}

/* Hero: tekst links, achtergrondfoto rechts */
.hero {
  position: relative;
  /* Iets hoger zodat portrait-hero met contain voldoende ruimte heeft */
  min-height: min(94vh, 900px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: calc(var(--header-h) + 24px) 48px;
  padding-inline: clamp(20px, 4vw, 40px);
  overflow: hidden;
  font-family: var(--font-sans);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  /* Achter portrait-foto bij object-fit: contain */
  background: linear-gradient(165deg, #6eb8d4 0%, #2a4a62 42%, #152535 100%);
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Links wit achter tekst; overgang iets naar links = auto eerder door wit heen zichtbaar */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.92) 36%,
    rgba(255, 255, 255, 0.55) 46%,
    rgba(255, 255, 255, 0.12) 54%,
    rgba(15, 25, 45, 0.52) 64%,
    rgba(15, 25, 45, 0.76) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin-inline: 0;
  margin-right: auto;
  text-align: left;
  color: #0f172a;
}

.hero__title {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__title-line {
  display: inline-block;
  color: #0f172a;
}

.hero__title-line--accent {
  color: var(--hero-sky);
}

.hero__lead {
  margin: 0 0 28px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400;
  color: #0f172a;
  max-width: 520px;
  line-height: 1.5;
}

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

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-bounce), filter 0.2s ease, box-shadow 0.2s ease;
}

.hero__btn--primary {
  background: var(--hero-sky);
  color: #fff;
  padding: 14px 22px 14px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.45);
}

.hero__btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.hero__btn-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.hero__btn--wa {
  background: var(--hero-wa-green);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.hero__btn--wa:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.hero__btn-wa-icon {
  flex-shrink: 0;
}

.hero__btn--mail {
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  color: #111827;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero__btn--mail:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero__btn--mail svg {
  width: 22px;
  height: 22px;
}

.hero__in {
  opacity: 0;
  animation: heroIn 0.85s ease forwards;
}

.hero__title.hero__in {
  animation-delay: 0.08s;
}

.hero__lead.hero__in {
  animation-delay: 0.16s;
}

.hero__actions.hero__in {
  animation-delay: 0.24s;
}

@keyframes heroIn {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }

  65% {
    opacity: 1;
    transform: translateY(-6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__in {
    animation: none;
    opacity: 1;
  }

  .hero__btn:hover,
  .hero__btn--primary:hover,
  .hero__btn--wa:hover,
  .hero__btn--mail:hover {
    transform: none;
  }
}

/* Anchor offset for sticky header */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Sections */
.section {
  padding-block: clamp(64px, 10vw, 112px);
}

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

.section__head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.section__title {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.section__prose {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text);
}

/* Card */
.card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.45s var(--ease-bounce),
    box-shadow var(--transition),
    border-color var(--transition);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 174, 239, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .card:hover {
    transform: none;
  }
}

/* Trust */
.trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.trust__score {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.trust__stars {
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: #fbbf24;
}

.trust__rating {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.trust-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.trust-inline .trust__stars {
  font-size: 1rem;
}

.trust__label {
  font-size: 1rem;
  color: var(--muted);
}

.trust__hint {
  margin: 0;
  font-weight: 500;
  color: var(--accent);
}

/* Reviews: vloeiende marquee (links → rechts over het scherm) */
.trust--reviews .section__head {
  margin-bottom: 28px;
}

.reviews-marquee {
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  margin-top: 4px;
  padding-block: 4px 8px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 2%,
    #000 98%,
    transparent 100%
  );
  mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
}

.reviews-marquee__inner {
  display: flex;
  width: max-content;
  animation: reviews-marquee-scroll 75s linear infinite reverse;
  will-change: transform;
}

.reviews-marquee__list {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0 10px 0 0;
}

.reviews-marquee__slide {
  flex: 0 0 auto;
  width: min(340px, 82vw);
  min-width: 0;
}

.reviews-marquee .testimonial {
  height: 100%;
  margin: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.35s var(--ease-bounce),
    box-shadow 0.35s ease;
}

.reviews-marquee .testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

@keyframes reviews-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__inner {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    row-gap: 16px;
  }

  .reviews-marquee__list[aria-hidden="true"] {
    display: none;
  }

  .reviews-marquee__slide {
    width: min(100%, 400px);
  }
}

blockquote.testimonial {
  margin: 0;
}

.testimonial {
  padding: 24px;
  margin: 0;
}

.testimonial__text {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--text);
}

.testimonial__name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}

.testimonial__name::before {
  content: "— ";
}

/* Pricing */
.pricing {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .pricing:not(.pricing--warda):not(.pricing--carousel) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .pricing:not(.pricing--warda):not(.pricing--carousel) {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
  }
}

/* Tarieven-carrousel: horizontaal scrollen, kaarten op volgorde van prijs */
.pricing-carousel {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 8px;
  max-width: var(--container);
  margin-inline: auto;
}

.pricing-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  padding-block: 6px 14px;
  outline: none;
}

.pricing-carousel__viewport:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-carousel__viewport {
    scroll-behavior: auto;
  }
}

.pricing--carousel {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  padding-inline: 2px;
  min-height: 100%;
}

.pricing--carousel .pricing-card {
  flex: 0 0 clamp(260px, 78vw, 300px);
  width: clamp(260px, 78vw, 300px);
  max-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.pricing-carousel__nav {
  flex-shrink: 0;
  align-self: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.pricing-carousel__nav:hover:not(:disabled) {
  border-color: var(--accent-border);
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.15);
}

.pricing-carousel__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 520px) {
  .pricing-carousel__nav {
    display: none;
  }
}

.pricing-card {
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 16px 48px rgba(0, 174, 239, 0.2);
  background: linear-gradient(180deg, #fff 0%, #eff6ff 100%);
}

.pricing-card--featured:hover {
  border-color: var(--accent-hover);
}

.pricing-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius-pill);
}

.pricing-card__name {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 700;
}

.pricing-card__meta {
  margin: 0 0 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.pricing-card__price {
  margin: 0 0 12px;
}

.pricing-card__amount {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-card__unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-card__desc {
  margin: 0 0 20px;
  flex-grow: 1;
  color: var(--muted);
  font-size: 0.9375rem;
}

.pricing-card__list {
  margin: 0 0 20px;
  padding-left: 1.1em;
  color: var(--muted);
  font-size: 0.9375rem;
}

.pricing-card__list li {
  margin-bottom: 6px;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-footnote {
  margin: 28px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted);
}

.pricing-disclaimer {
  margin: 10px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.pricing-toets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 24px 28px;
}

.pricing-toets__title {
  margin: 0 0 6px;
  font-size: 1.125rem;
  font-weight: 700;
}

.pricing-toets__desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.reviews-google {
  font-size: 1.125rem;
  font-weight: 600;
}

.reviews-google__score {
  color: var(--accent);
}

/* Marquee voordelen (zoals Warda: dubbele rij, eindeloos scrollend) */
.marquee-section {
  padding-block: clamp(20px, 3vw, 28px);
  border-block: 1px solid rgba(17, 24, 39, 0.06);
}

.marquee {
  overflow: hidden;
  max-width: 100%;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__inner {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }
}

.marquee__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0 12px 0 0;
}

.marquee__list li {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* CTA onder Over mij */
.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}

/* Stats band */
.stats-band {
  background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 45%, #00aeef 100%);
  color: #fff;
  padding-block: clamp(56px, 8vw, 88px);
}

.stats-band__inner {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .stats-band__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
  }
}

.stats-band__title {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.stats-band__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.stats-band__stat {
  text-align: center;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.stats-band__number {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-band__label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.stats-band__sublabel {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Features */
.features {
  display: grid;
  gap: 20px;
}

@media (min-width: 600px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  padding: 28px;
}

.feature__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature__title {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 700;
}

.feature__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Accordion */
.accordion {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.accordion__item + .accordion__item {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.accordion__heading {
  margin: 0;
  font-size: 1rem;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font: inherit;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  background: var(--bg);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform 0.35s var(--ease-bounce);
}

.accordion__trigger:active {
  transform: scale(0.995);
}

.accordion__trigger:hover {
  background: var(--bg-alt);
}

.accordion__trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  z-index: 1;
  position: relative;
}

.accordion__trigger[aria-expanded="true"] {
  background: var(--bg-alt);
}

.accordion__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  position: relative;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__trigger[aria-expanded="true"] .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.accordion__panel {
  padding: 0 22px 20px;
}

.accordion__panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.accordion__panel[hidden] {
  display: none;
}

/* Contact (Warda-layout: intro + kaarten + formulier + WhatsApp CTA) */
.contact-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.contact-intro__lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-method {
  padding: 20px 22px;
}

.contact-method__label {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.contact-method__value {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  word-break: break-word;
}

.contact-method__value:hover {
  text-decoration: underline;
}

.contact-method__value--static {
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

.contact-wa-cta {
  text-align: center;
  margin-top: 36px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.contact-form {
  padding: 28px;
}

.contact-form__title {
  margin: 0 0 20px;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-field input::placeholder {
  color: #94a3b8;
}

/* Map */
.map-section .section__subtitle {
  text-align: center;
  margin-bottom: 24px;
}

.map-section .section__title {
  text-align: center;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  min-height: 280px;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

/* Rijschoolovereenkomst (PDF) tussen locatie en contact */
.overeenkomst-strip {
  padding-block: 18px 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: var(--bg);
}

.overeenkomst-strip__text {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.overeenkomst-strip__link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.overeenkomst-strip__link:hover {
  color: var(--accent-hover);
}

.overeenkomst-strip__hint {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: var(--bg-alt);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__brand {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.site-footer__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.site-footer__link:hover {
  text-decoration: underline;
}

/* Floating WhatsApp */
.fab-wa {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 999;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.45s var(--ease-bounce),
    box-shadow var(--transition);
}

.fab-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.fab-wa:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .fab-wa:hover {
    transform: none;
  }
}

/* Reveal animations (scroll) */
.reveal-section .section__title,
.reveal-section .section__head,
.reveal-section .section__subtitle {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s var(--ease-bounce),
    transform 0.75s var(--ease-bounce);
}

.reveal-section .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s var(--ease-bounce),
    transform 0.75s var(--ease-bounce);
  transition-delay: calc(var(--reveal-i, 0) * 0.07s);
}

.reveal-section.is-visible .section__title,
.reveal-section.is-visible .section__head,
.reveal-section.is-visible .section__subtitle,
.reveal-section.is-visible .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section .section__title,
  .reveal-section .section__head,
  .reveal-section .section__subtitle,
  .reveal-section .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

}
