﻿* {
      box-sizing: border-box;
    }

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

    body {
      margin: 0;
      width: 100%;
      overflow-x: hidden;
      color: #ffffff;
      background: #050505;
      font-family: Arial, sans-serif;
      line-height: 1.5;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 10;
      display: grid;
      grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
      align-items: center;
      gap: 28px;
      padding: 22px 60px;
      background: rgba(5, 5, 5, 0.94);
      border-bottom: 1px solid #b8872b;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #ffffff;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
    }

    .logo img {
      display: block;
      width: auto;
      max-width: 620px;
      max-height: 236px;
    }

    .logo-text {
      display: inline-block;
    }

    .logo span {
      color: #d6a33a;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 26px;
    }

    .nav a {
      color: #ffffff;
      font-size: 15px;
      opacity: 0.82;
    }

    .nav a:hover {
      color: #d6a33a;
      opacity: 1;
    }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      padding: 0;
      background: transparent;
      border: 1px solid rgba(214, 163, 58, 0.65);
      border-radius: 4px;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: #d6a33a;
    }

    .btn,
    .header-btn {
      justify-self: end;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 28px;
      color: #050505;
      background: #d6a33a;
      border: 1px solid #d6a33a;
      border-radius: 4px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .btn:hover,
    .header-btn:hover {
      background: #e8b84b;
      border-color: #e8b84b;
    }

    .btn-link {
      color: #ffffff;
      background: transparent;
      border-color: rgba(255, 255, 255, 0.22);
    }

    .btn-dark {
      color: #ffffff;
      background: transparent;
      border-color: rgba(255, 255, 255, 0.22);
    }

    .hero {
      min-height: 80vh;
      display: flex;
      align-items: center;
      padding: 90px 80px;
      background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.75), rgba(5, 5, 5, 0.3)),
        url("../img/hero-car.jpg") center / cover,
        radial-gradient(circle at right, #2a2418, #050505 60%);
    }

    .hero-content {
      max-width: 720px;
    }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
    }

    .hero-proof span {
      padding: 9px 12px;
      color: #f5f5f5;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 16px;
      color: #d6a33a;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 6px;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin-bottom: 24px;
      color: #f5f5f5;
      font-size: clamp(46px, 8vw, 78px);
      line-height: 0.95;
      text-transform: uppercase;
    }

    h1 strong {
      color: #d6a33a;
    }

    h2 {
      margin-bottom: 18px;
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1;
      text-transform: uppercase;
    }

    .hero p {
      max-width: 620px;
      color: #dedede;
      font-size: 22px;
      letter-spacing: 1px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid rgba(184, 135, 43, 0.65);
      border-bottom: 1px solid rgba(184, 135, 43, 0.65);
    }

    .feature {
      min-height: 165px;
      padding: 32px;
      background: #0d0d0d;
      border-right: 1px solid rgba(184, 135, 43, 0.35);
    }

    .feature:last-child {
      border-right: 0;
    }

    .feature h3,
    .card h3 {
      margin-bottom: 10px;
      font-size: 20px;
    }

    .feature p,
    .card p {
      margin-bottom: 0;
      color: #bdbdbd;
    }

    .trust-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      border-bottom: 1px solid rgba(184, 135, 43, 0.45);
      background: #080808;
    }

    .trust-item {
      padding: 28px 36px;
      border-right: 1px solid rgba(184, 135, 43, 0.28);
    }

    .trust-item:last-child {
      border-right: 0;
    }

    .trust-number {
      display: block;
      color: #d6a33a;
      font-size: 34px;
      font-weight: 900;
      line-height: 1;
    }

    .trust-item p {
      margin: 8px 0 0;
      color: #cfcfcf;
      font-weight: 700;
    }

    .section {
      padding: 92px 80px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 34px;
    }

    .card {
      min-height: 235px;
      padding: 30px;
      background: #111111;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 4px;
    }

    .card a {
      display: inline-block;
      margin-top: 26px;
      color: #d6a33a;
      font-weight: 800;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 34px;
    }

    .section-head p {
      max-width: 560px;
      margin-bottom: 0;
      color: #cfcfcf;
      font-size: 18px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .step {
      min-height: 250px;
      padding: 28px;
      background: #111111;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 6px;
    }

    .step-number {
      display: grid;
      width: 46px;
      height: 46px;
      margin-bottom: 22px;
      place-items: center;
      color: #050505;
      background: #d6a33a;
      border-radius: 50%;
      font-weight: 900;
    }

    .step p {
      margin-bottom: 0;
      color: #cfcfcf;
    }

    .final-cta {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
      padding: 48px;
      background:
        linear-gradient(135deg, rgba(214, 163, 58, 0.18), rgba(17, 17, 17, 1)),
        #111111;
      border: 1px solid rgba(214, 163, 58, 0.32);
      border-radius: 8px;
    }

    .final-cta p {
      max-width: 680px;
      margin-bottom: 0;
      color: #d7d7d7;
      font-size: 19px;
    }

    .pricing {
      background:
        radial-gradient(circle at top right, rgba(214, 163, 58, 0.12), transparent 34%),
        #080808;
    }

    .section-intro {
      max-width: 680px;
      margin-bottom: 34px;
      color: #cfcfcf;
      font-size: 19px;
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .price-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 360px;
      padding: 30px;
      background: #111111;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 6px;
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    }

    .price-card.featured {
      border-color: rgba(214, 163, 58, 0.75);
      background: linear-gradient(180deg, rgba(214, 163, 58, 0.12), rgba(17, 17, 17, 1) 38%);
    }

    .price-card.featured::before {
      content: "Populair pakket";
      display: block;
      margin: -30px -30px 26px;
      padding: 16px;
      color: #050505;
      background: #d6a33a;
      border-radius: 6px 6px 0 0;
      font-weight: 800;
      text-align: center;
    }

    .price-label {
      width: fit-content;
      margin-bottom: 18px;
      padding: 7px 10px;
      color: #050505;
      background: #d6a33a;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .price-card h3 {
      margin-bottom: 12px;
      font-size: 23px;
    }

    .price {
      margin-bottom: 18px;
      color: #d6a33a;
      font-size: clamp(42px, 5vw, 64px);
      font-weight: 900;
      line-height: 1;
    }

    .price small {
      color: #bdbdbd;
      font-size: 14px;
      font-weight: 700;
    }

    .lesson-count {
      display: block;
      margin-top: 6px;
      color: #d6a33a;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .price-card ul {
      display: grid;
      gap: 10px;
      margin: 0 0 28px;
      padding: 0;
      color: #cfcfcf;
      list-style: none;
    }

    .price-card li::before {
      content: "";
      display: inline-block;
      width: 7px;
      height: 7px;
      margin-right: 10px;
      background: #d6a33a;
      border-radius: 50%;
      transform: translateY(-1px);
    }

    .price-card .btn {
      width: 100%;
      margin-top: auto;
    }

    .rate-list {
      display: grid;
      gap: 24px;
      max-width: 1140px;
      margin: 56px auto 0;
      padding: 34px;
      background: #0b0b0b;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 6px;
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    }

    .rate-list h3 {
      margin-bottom: 4px;
      font-size: 28px;
      text-transform: uppercase;
    }

    .rate-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: baseline;
      color: #ffffff;
    }

    .rate-name {
      font-size: 20px;
      font-weight: 800;
    }

    .rate-line {
      min-width: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.55);
      transform: translateY(-5px);
    }

    .rate-price {
      color: #d6a33a;
      font-size: 21px;
      font-weight: 900;
      white-space: nowrap;
    }

    .rate-note {
      grid-column: 1 / -1;
      margin-top: -12px;
      color: #cfcfcf;
      font-size: 15px;
    }

    .cta {
      text-align: center;
      background: #111111;
    }

    .cta p {
      max-width: 650px;
      margin-right: auto;
      margin-bottom: 28px;
      margin-left: auto;
      color: #bdbdbd;
      font-size: 19px;
    }

    .split {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 70px;
      align-items: start;
    }

    .split p {
      margin-bottom: 0;
      color: #cfcfcf;
      font-size: 21px;
    }

    .contact {
      text-align: center;
      background:
        radial-gradient(circle at top left, rgba(214, 163, 58, 0.14), transparent 36%),
        #050505;
    }

    .contact-heading {
      max-width: 760px;
      margin: 0 auto 38px;
    }

    .contact-heading p {
      margin: 0 auto;
      color: #cfcfcf;
      font-size: 19px;
    }

    .contact-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      max-width: 920px;
      margin: 0 auto;
      text-align: left;
    }

    .contact-card {
      display: flex;
      align-items: center;
      gap: 16px;
      min-height: 142px;
      padding: 24px;
      color: #cfcfcf;
      background: #111111;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 6px;
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
    }

    .contact-card:hover {
      border-color: rgba(214, 163, 58, 0.8);
    }

    .contact-icon {
      display: grid;
      flex: 0 0 58px;
      width: 58px;
      height: 58px;
      place-items: center;
      color: #050505;
      background: #d6a33a;
      border-radius: 50%;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .contact-card strong {
      display: block;
      margin-bottom: 5px;
      color: #ffffff;
      font-size: 18px;
    }

    .footer {
      padding: 28px 60px;
      color: #a9a9a9;
      border-top: 1px solid rgba(184, 135, 43, 0.45);
      text-align: center;
    }

    .footer p {
      margin: 0;
    }

    .whatsapp-button {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 30;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 18px;
      color: #050505;
      background: #d6a33a;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .whatsapp-button span {
      display: grid;
      width: 30px;
      height: 30px;
      place-items: center;
      color: #d6a33a;
      background: #050505;
      border-radius: 50%;
      font-size: 14px;
    }

    .chatbot {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 40;
      width: min(380px, calc(100vw - 28px));
      color: #ffffff;
      font-size: 15px;
    }

    .chatbot-panel {
      display: none;
      overflow: hidden;
      margin-bottom: 14px;
      background: #0d0d0d;
      border: 1px solid rgba(214, 163, 58, 0.45);
      border-radius: 8px;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
    }

    .chatbot.is-open .chatbot-panel {
      display: block;
    }

    .chatbot-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 16px 18px;
      color: #050505;
      background: #d6a33a;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .chatbot-close {
      width: 32px;
      height: 32px;
      color: #050505;
      background: rgba(5, 5, 5, 0.08);
      border: 0;
      border-radius: 50%;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
    }

    .chatbot-messages {
      display: grid;
      gap: 10px;
      max-height: 330px;
      overflow-y: auto;
      padding: 18px;
      background:
        radial-gradient(circle at top right, rgba(214, 163, 58, 0.12), transparent 38%),
        #0d0d0d;
    }

    .chat-message {
      max-width: 88%;
      padding: 11px 13px;
      border-radius: 8px;
      line-height: 1.4;
    }

    .chat-message.bot {
      justify-self: start;
      color: #e6e6e6;
      background: #171717;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .chat-message.user {
      justify-self: end;
      color: #050505;
      background: #d6a33a;
      font-weight: 700;
    }

    .chatbot-quick {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding: 0 18px 16px;
      background: #0d0d0d;
    }

    .chatbot-quick button,
    .chatbot-send,
    .chatbot-whatsapp,
    .chatbot-toggle {
      cursor: pointer;
      font-family: inherit;
      font-weight: 800;
    }

    .chatbot-quick button {
      padding: 8px 10px;
      color: #d6a33a;
      background: transparent;
      border: 1px solid rgba(214, 163, 58, 0.38);
      border-radius: 999px;
    }

    .chatbot-form {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      padding: 14px 18px 18px;
      background: #0d0d0d;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .chatbot-form input {
      min-width: 0;
      height: 44px;
      padding: 0 12px;
      color: #ffffff;
      background: #050505;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 4px;
      font: inherit;
    }

    .chatbot-send {
      min-width: 74px;
      color: #050505;
      background: #d6a33a;
      border: 0;
      border-radius: 4px;
      text-transform: uppercase;
    }

    .chatbot-whatsapp {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      margin: 0 18px 18px;
      color: #050505;
      background: #d6a33a;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .chatbot-toggle {
      float: right;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 18px;
      color: #050505;
      background: #d6a33a;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .chatbot-toggle span {
      display: grid;
      width: 30px;
      height: 30px;
      place-items: center;
      color: #d6a33a;
      background: #050505;
      border-radius: 50%;
      font-size: 14px;
    }

    @media (max-width: 900px) {
      .site-header {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        padding: 20px 24px;
      }

      .nav {
        flex-wrap: wrap;
        gap: 16px;
      }

      .header-btn {
        display: none;
      }

      .hero,
      .section {
        padding-right: 28px;
        padding-left: 28px;
      }

      .features,
      .cards,
      .price-grid,
      .trust-strip,
      .steps,
      .final-cta,
      .split,
      .contact-list {
        grid-template-columns: 1fr;
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .rate-item {
        grid-template-columns: 1fr auto;
      }

      .rate-line {
        display: none;
      }

      .feature {
        border-right: 0;
        border-bottom: 1px solid rgba(184, 135, 43, 0.35);
      }
    }

    @media (max-width: 640px) {
      .logo {
        font-size: 17px;
        letter-spacing: 2px;
      }

      .hero {
        min-height: 70vh;
        padding-top: 70px;
        padding-bottom: 70px;
      }

      .hero p {
        font-size: 18px;
        letter-spacing: 0;
      }

      .hero-actions,
      .btn {
        width: 100%;
      }

      .whatsapp-button {
        right: 14px;
        bottom: 14px;
        left: 14px;
        justify-content: center;
      }

      .chatbot {
        right: 14px;
        bottom: 14px;
        left: 14px;
        width: auto;
      }

      .chatbot-toggle {
        width: 100%;
        justify-content: center;
      }
    }
/* Tarievenpagina */
.nav a.active {
  color: #d6a33a;
  opacity: 1;
}

.tariffs-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 90px 80px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.32)),
    url("../img/hero-car.jpg") center center / cover,
    #050505;
}

.tariffs-hero div {
  max-width: 780px;
}

.tariffs-hero p {
  max-width: 760px;
  color: #cfcfcf;
  font-size: 19px;
}

@media (max-width: 900px) {
  .tariffs-hero {
    padding-right: 28px;
    padding-left: 28px;
  }
}

/* Hamburger menu op desktop en mobiel */
.site-header {
  grid-template-columns: minmax(0, 1fr) auto;
}

.menu-toggle {
  display: inline-flex;
  justify-self: end;
}

.header-btn {
  display: none;
}

.nav {
  display: none;
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid rgba(184, 135, 43, 0.35);
}

.site-header.is-menu-open .nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.site-header.is-menu-open .menu-toggle {
  background: rgba(214, 163, 58, 0.12);
}

.site-header > span[aria-hidden="true"] {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
  }

  .logo {
    min-width: 0;
  }

  .logo img {
    max-height: 70px;
    max-width: 190px;
  }

  .logo-text,
  .logo > span {
    font-size: 15px;
    letter-spacing: 2px;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(184, 135, 43, 0.35);
  }

  .site-header.is-menu-open .nav {
    display: grid;
    gap: 0;
  }

  .nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
  }

  .header-btn {
    display: none;
  }
}

/* Definitief hamburger dropdown-menu */
.site-header {
  grid-template-columns: minmax(0, 1fr) auto !important;
  position: sticky;
}

.site-header .menu-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
  width: 52px;
  height: 52px;
}

.site-header .menu-toggle span {
  width: 24px;
  height: 2px;
  background: #d6a33a;
  border-radius: 999px;
}

.site-header .nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 60px;
  display: none !important;
  width: min(300px, calc(100vw - 36px));
  padding: 8px;
  background: rgba(5, 5, 5, 0.96);
  border: 1px solid rgba(184, 135, 43, 0.45);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}

.site-header.is-menu-open .nav {
  display: grid !important;
  gap: 2px;
}

.site-header .nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  color: #ffffff;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  opacity: 0.92;
}

.site-header .nav a:last-child {
  border-bottom: 0;
}

.site-header .nav a:hover,
.site-header .nav a.active {
  background: rgba(214, 163, 58, 0.1);
  border-left-color: #d6a33a;
  color: #d6a33a;
  opacity: 1;
}

.site-header .header-btn,
.site-header > span[aria-hidden="true"] {
  display: none !important;
}

@media (max-width: 900px) {
  .site-header .nav {
    right: 18px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 76px;
    padding: 12px 14px;
  }

  .site-header .logo img {
    max-width: 138px;
    max-height: 58px;
  }

  .site-header .logo-text,
  .site-header .logo > span {
    font-size: 0;
    letter-spacing: 0;
  }

  .site-header .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .site-header .nav {
    position: fixed;
    top: 86px;
    right: 14px;
    left: 14px;
    width: auto;
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    padding: 8px;
    border-radius: 8px;
  }

  .site-header .nav a {
    min-height: 46px;
    padding: 0 13px;
    font-size: 15px;
  }

  .hero,
  .tariffs-hero {
    min-height: calc(100dvh - 76px);
    padding: 54px 22px;
    background-position: center;
  }

  h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .tariffs-hero p,
  .hero p {
    font-size: 17px;
    line-height: 1.45;
  }
}

/* Video uitleg animaties */
.lesson-demo {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
}

.parking-animation,
.lesson-steps {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.parking-animation {
  min-height: 470px;
  padding: 24px;
}

.road {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, #202020, #101010);
  border: 1px solid rgba(214, 163, 58, 0.28);
  border-radius: 6px;
}

.road-line {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0 48px, transparent 48px 82px);
}

.parking-bay {
  position: absolute;
  right: 12%;
  bottom: 58px;
  width: 48%;
  height: 92px;
  border: 2px solid rgba(214, 163, 58, 0.7);
  border-radius: 6px;
}

.parked-car,
.student-car {
  position: absolute;
  display: grid;
  place-items: center;
  width: 118px;
  height: 52px;
  border-radius: 10px;
  color: #050505;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.36);
}

.parked-car {
  background: #e8e8e8;
  transform: rotate(0deg);
}

.parked-car-front {
  right: 12%;
  bottom: 160px;
}

.parked-car-back {
  right: 12%;
  bottom: 2px;
}

.student-car {
  left: 9%;
  bottom: 235px;
  background: #d6a33a;
  animation: parkCar 10s ease-in-out infinite;
  z-index: 2;
}

.student-car::before,
.parked-car::before {
  content: "";
  position: absolute;
  inset: 8px 18px;
  border-radius: 8px;
  border: 2px solid rgba(5, 5, 5, 0.35);
}

.parking-bay::before {
  content: "P";
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(214, 163, 58, 0.45);
  font-size: 52px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.parked-car-front::after {
  content: "voor";
}

.parked-car-back::after {
  content: "achter";
}

.parked-car::after {
  position: absolute;
  right: 8px;
  bottom: 4px;
  color: rgba(5, 5, 5, 0.55);
  font-size: 10px;
  font-weight: 900;
}

/*
  Fileparkeren in bovenaanzicht:
  1 naast de voorste auto, 2 schuin achteruit, 3 de plek in, 4 rechtzetten.
*/
@keyframes parkCar {
  0%, 12% {
    left: 9%;
    bottom: 235px;
    transform: rotate(0deg);
  }
  26% {
    left: 47%;
    bottom: 235px;
    transform: rotate(0deg);
  }
  48% {
    left: 52%;
    bottom: 150px;
    transform: rotate(-32deg);
  }
  68% {
    left: 50%;
    bottom: 66px;
    transform: rotate(14deg);
  }
  84%, 100% {
    left: 50%;
    bottom: 72px;
    transform: rotate(0deg);
  }
}

@keyframes notePulse {
  0%, 18%, 100% {
    opacity: 0;
    transform: translateY(8px);
  }
  25%, 55% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Oude parkeercar posities overschrijven */
.parked-car {
  background: #e8e8e8;
}

.steer-note {
  position: absolute;
  left: 24px;
  padding: 8px 10px;
  color: #050505;
  background: #d6a33a;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
}

.note-1 {
  top: 24px;
  animation: notePulse 9s ease-in-out infinite;
}

.note-2 {
  top: 68px;
  animation: notePulse 9s ease-in-out infinite 2.2s;
}

.note-3 {
  top: 112px;
  animation: notePulse 9s ease-in-out infinite 5.1s;
}

.lesson-steps {
  padding: 34px;
}

.lesson-steps ol {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  padding-left: 20px;
  color: #d7d7d7;
}

.lesson-steps li::marker {
  color: #d6a33a;
  font-weight: 900;
}

.video-topic-cards {
  margin-top: 24px;
}

.video-demo {
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
}

.video-frame {
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(214, 163, 58, 0.38);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  aspect-ratio: 9 / 16;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .lesson-demo {
    grid-template-columns: 1fr;
  }

  .video-demo {
    grid-template-columns: 1fr;
  }

  .video-frame {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .parking-animation {
    min-height: 390px;
  }

  .road {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .lesson-demo {
    gap: 18px;
    margin-top: 24px;
  }

  .parking-animation,
  .lesson-steps {
    border-radius: 6px;
  }

  .parking-animation {
    min-height: 330px;
    padding: 14px;
  }

  .road {
    min-height: 300px;
  }

  .parked-car,
  .student-car {
    width: 92px;
    height: 48px;
    font-size: 11px;
  }

  .parking-bay {
    right: 8%;
    bottom: 52px;
    width: 56%;
    height: 84px;
  }

  .parked-car {
    right: 8%;
  }

  .parked-car-front {
    bottom: 142px;
  }

  .parked-car-back {
    bottom: 4px;
  }

  .student-car {
    animation-name: parkCarMobile;
  }

  .steer-note {
    left: 14px;
    font-size: 11px;
  }

  .lesson-steps {
    padding: 24px;
  }
}

@keyframes parkCarMobile {
  0%, 12% {
    left: 6%;
    bottom: 198px;
    transform: rotate(0deg);
  }
  26% {
    left: 38%;
    bottom: 198px;
    transform: rotate(0deg);
  }
  48% {
    left: 43%;
    bottom: 132px;
    transform: rotate(-32deg);
  }
  68% {
    left: 42%;
    bottom: 66px;
    transform: rotate(14deg);
  }
  88%, 100% {
    left: 42%;
    bottom: 70px;
    transform: rotate(0deg);
  }
}

/* Header polish: groot logo, maar compact en netjes uitgelijnd */
.site-header {
  min-height: 184px;
  padding: 20px 58px;
  gap: 20px;
}

.site-header .logo {
  gap: 20px;
}

.site-header .logo img {
  width: auto;
  max-width: 245px;
  max-height: 176px;
  object-fit: contain;
}

.site-header .logo-text,
.site-header .logo > span {
  font-size: 24px;
  letter-spacing: 5px;
  line-height: 1;
}

.site-header .menu-toggle {
  width: 54px;
  height: 54px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 132px;
    padding: 16px 22px;
  }

  .site-header .logo {
    gap: 14px;
  }

  .site-header .logo img {
    max-width: 170px;
    max-height: 118px;
  }

  .site-header .logo-text,
  .site-header .logo > span {
    font-size: 18px;
    letter-spacing: 3px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 96px;
    padding: 10px 14px;
  }

  .site-header .logo img {
    max-width: 120px;
    max-height: 86px;
  }

  .site-header .logo-text,
  .site-header .logo > span {
    display: none;
  }

  .site-header .nav {
    top: 104px;
  }
}
