/* ===== CSS Variables ===== */
:root {
  --navy: #0f0f0f;
  --navy-light: #1a1a1a;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-glow: rgba(37, 99, 235, 0.15);
  --cyan: #E5FF00;
  --yellow-glow: rgba(229, 255, 0, 0.15);
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --green: #22c55e;
  --orange: #f59e0b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: #e8e8e8;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 0 80px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-rijschool {
  color: var(--navy);
  transition: var(--transition);
}

.logo-kaan {
  color: var(--cyan);
  letter-spacing: 1px;
}

.navbar.scrolled .logo-rijschool {
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--gray-600);
}

.nav-links a:hover {
  color: var(--navy);
  background: rgba(203, 255, 0, 0.2);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--navy);
  background: var(--yellow-glow);
}

.nav-cta {
  background: var(--cyan) !important;
  color: var(--navy) !important;
}

.nav-cta:hover {
  background: #cce600 !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--navy);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 100px;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  gap: 10px;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

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

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

.btn-primary:hover {
  background: #1a1a1a;
  box-shadow: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: none;
}

.btn-secondary:hover {
  background: #f3f4f6;
  border-color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-block {
  width: 100%;
}

/* ===== Hero Section ===== */
.hero {
  background: #e8e8e8;
  height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  padding: 100px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-badges-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-badge-left {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: transparent;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-badge-right {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--cyan);
  border: none;
  border-radius: 100px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  margin-bottom: 0;
}

.hero-experience {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--navy);
  border-radius: 100px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-top: 12px;
}

.hero-bottom-left {
  flex: 1;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero stat card */
.hero-stat-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 32px 36px;
  min-width: 360px;
  max-width: 420px;
  flex-shrink: 0;
}

.stat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.stat-card-index {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.stat-card-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-card-number {
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.stat-card-pct {
  font-size: 3rem;
}

.stat-card-desc {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 24px;
}

.stat-progress-bar {
  height: 4px;
  background: #374151;
  border-radius: 2px;
  overflow: hidden;
}

.stat-progress-fill {
  height: 100%;
  width: 88%;
  background: var(--cyan);
  border-radius: 2px;
}

/* ===== Stats Bar ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.stat-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  border-right: 1px solid var(--gray-200);
  text-align: center;
}

.stat-bar-item:last-child {
  border-right: none;
}

.stat-bar-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-bar-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===== Section Styles ===== */
.section {
  padding: 100px 0;
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--yellow-glow);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--cyan);
  transform: translateY(-2px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-glow);
  border-radius: 14px;
  color: var(--navy);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== Theory Section ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.col-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.col-text > p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.col-text .btn {
  margin-top: 8px;
}

.theory-parts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.theory-part-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.theory-part-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.theory-part-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--cyan);
  padding: 3px 10px;
  border-radius: 100px;
}

.theory-bar {
  height: 8px;
  background: var(--gray-200);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 4px;
}

.theory-bar-fill {
  height: 100%;
  background: var(--cyan);
  border-radius: 100px;
  transition: width 1s ease-out;
}

.theory-part-req {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.theory-card-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.theory-info-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.theory-info-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-glow);
  border-radius: 14px;
  color: #0f0f0f;
  margin-bottom: 20px;
}

.theory-info-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.theory-info-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.price-tag {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cyan);
}

/* ===== Car Section ===== */
.car-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.car-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-light);
}

.slideshow-track {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.slideshow-btn:hover {
  background: var(--cyan);
  color: var(--navy);
}

.slideshow-btn.prev { left: 14px; }
.slideshow-btn.next { right: 14px; }

.slideshow-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: 4px;
}

.car-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.car-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 500;
  transition: var(--transition);
}

.car-feature span {
  color: var(--gray-700);
  font-size: 1rem;
}

.car-feature:hover {
  background: var(--yellow-glow);
}

/* Hero inline marquee */
.hero-marquee {
  overflow: hidden;
  margin: auto -80px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 14px 0;
  background: #E5FF00;
}

.hero-marquee-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}

.hero-marquee-track span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===== Marquee Banner ===== */
.marquee-banner {
  background: #E5FF00;
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

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

/* ===== Pricing Table ===== */
.pricing-table {
  border: 2px solid var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pt-row {
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}

.pt-row:last-child {
  border-bottom: none;
}

.pt-row.pt-highlighted {
  background: #ddf545;
}

.pt-row-main {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  cursor: pointer;
}

.pt-num {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  width: 28px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.pt-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.pt-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}

.pt-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

.pt-row-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.pt-price {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  line-height: 1;
}

.pt-euro {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  padding-bottom: 6px;
}

.pt-value {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pt-cents {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 5px;
}

.pt-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--navy);
}

.pt-toggle svg {
  transition: transform 0.25s ease;
}

.pt-toggle[aria-expanded="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.pt-toggle[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.pt-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 32px 0 80px;
}

.pt-row.pt-open .pt-body {
  max-height: 120px;
  padding: 0 32px 24px 80px;
}

.pt-body p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.pt-price-notice {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 4px 10px;
  background: rgba(229, 255, 0, 0.18);
  border-left: 3px solid var(--cyan);
  border-radius: 4px;
  font-size: 0.85rem !important;
  color: var(--gray-700) !important;
  font-weight: 500;
}

/* ===== Reviews Section ===== */
.review-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--orange);
}

.review-score span {
  font-size: 0.95rem;
  color: var(--gray-500);
  font-weight: 500;
}

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

.review-card {
  padding: 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--orange);
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-date {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.review-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviews-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.reviews-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  background: var(--white);
  transition: var(--transition);
}

.reviews-google-btn:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow);
}

.google-attribution {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== FAQ Section ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gray-300);
}

.faq-item.active {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: var(--transition);
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--gray-500);
  line-height: 1.7;
}


.faq-answer-inner {
  padding: 0 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-answer-inner p {
  padding: 0;
  font-size: 0.93rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.faq-answer-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  width: fit-content;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}

a.contact-card {
  cursor: pointer;
  text-decoration: none;
}

a.contact-card:hover {
  border-color: var(--cyan);
  background: var(--yellow-glow);
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.whatsapp-icon {
  background: #dcfce7;
  color: #16a34a;
}

.phone-icon {
  background: #dbeafe;
  color: var(--blue);
}

.email-icon {
  background: #fef3c7;
  color: #d97706;
}

.location-icon {
  background: #fce7f3;
  color: #db2777;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ===== Contact Form ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--yellow-glow);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-status {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status--success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ===== Footer ===== */
.footer {
  background: #e8e8e8;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-brand p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.footer-links a {
  color: var(--gray-600);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--navy);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Nav Overlay ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

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

/* Tablets + phones: hamburger menu vanaf 1024px */
@media (max-width: 1024px) {
  .features-grid,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pt-title {
    font-size: 1.1rem;
  }

  .pt-value {
    font-size: 2.4rem;
  }

  .two-col,
  .car-showcase {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .nav-container {
    padding: 0 40px;
  }

  .hero-inner {
    padding: 90px 40px 0;
  }

  .hero-marquee {
    margin: auto -40px 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    white-space: normal;
  }

  .hero-stat-card {
    min-width: 300px;
  }

  /* Hamburger knop zichtbaar */
  .nav-toggle {
    display: flex;
  }

  /* Hamburger → X animatie */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Side-drawer menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 20px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1001;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    color: var(--gray-700) !important;
    padding: 13px 16px;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: var(--yellow-glow) !important;
    color: var(--navy) !important;
  }

  .nav-cta {
    background: var(--cyan) !important;
    color: var(--navy) !important;
    margin-top: 8px;
    text-align: center !important;
  }
}


/* Phones */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 24px;
  }

  /* Hero: height: auto zodat de stat-card niet afgeknipt wordt */
  .hero {
    height: auto;
  }

  .hero-inner {
    padding: 110px 24px 0;
  }

  .hero-marquee {
    margin: 32px -24px 0;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 5.5rem);
    white-space: normal;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .hero-stat-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

  .pt-row-main {
    padding: 20px 20px;
    gap: 12px;
  }

  .pt-num {
    display: none;
  }

  .pt-title {
    font-size: 1rem;
  }

  .pt-value {
    font-size: 2rem;
  }

  .pt-badge {
    font-size: 0.62rem;
    padding: 3px 8px;
  }

  .pt-body {
    padding: 0 20px 0 20px;
  }

  .pt-row.pt-open .pt-body {
    padding: 0 20px 20px 20px;
  }

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

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

  .stat-bar-item {
    padding: 20px 12px;
  }

  .stat-bar-number {
    font-size: 1.6rem;
  }

  .stat-bar-label {
    font-size: 0.78rem;
  }

  .stat-bar-item:nth-child(2) {
    border-right: none;
  }

  .stat-bar-item:nth-child(3),
  .stat-bar-item:nth-child(4) {
    border-top: 1px solid var(--gray-200);
  }

  .section {
    padding: 64px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .car-showcase {
    gap: 32px;
  }
}

/* ===== Landscape telefoon (horizontaal gedraaid) ===== */
@media (orientation: landscape) and (max-height: 600px) {
  /* Hero */
  .hero {
    height: auto;
  }

  .hero-inner {
    padding: 75px 32px 0;
  }

  .hero-marquee {
    margin: 20px -32px 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    white-space: normal;
    margin-bottom: 8px;
  }

  .hero-bottom {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    margin-top: 8px;
  }

  .hero-stat-card {
    min-width: 220px;
    max-width: 260px;
    padding: 20px 24px;
  }

  .stat-card-number {
    font-size: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  /* Nav */
  .nav-container {
    padding: 0 32px;
  }

  /* Stats bar: 4 kolommen, compact */
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-bar-item {
    padding: 14px 12px;
  }

  .stat-bar-number {
    font-size: 1.4rem;
  }

  .stat-bar-item:nth-child(2) {
    border-right: 1px solid var(--gray-200);
  }

  .stat-bar-item:nth-child(3),
  .stat-bar-item:nth-child(4) {
    border-top: none;
  }

  /* Secties kleiner */
  .section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* Features grid: 3 kolommen in landscape */
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .feature-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .feature-card p {
    font-size: 0.82rem;
  }

  /* Theorie & lesauto side by side */
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .car-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Tarieven compacter */
  .pt-row-main {
    padding: 16px 24px;
  }

  .pt-value {
    font-size: 2rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer {
    padding: 40px 0 0;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
  }
}
