/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --antraciet: #2b2b2b;
    --wit: #ffffff;
    --groen: #00a878;
    --groen-dark: #008c65;
    --groen-light: #00c98f;
    --grijs: #f5f5f5;
    --grijs-dark: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-strong: rgba(0, 0, 0, 0.25);
    
    /* Typography Scale */
    --font-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.85rem);
    --font-sm: clamp(0.875rem, 0.825rem + 0.25vw, 0.95rem);
    --font-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --font-md: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
    --font-lg: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --font-xl: clamp(2rem, 1.6rem + 2vw, 3rem);
    --font-2xl: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);
    
    /* Line Heights */
    --lh-tight: 1.2;
    --lh-snug: 1.375;
    --lh-normal: 1.5;
    --lh-relaxed: 1.625;
    --lh-loose: 1.75;
    
    /* Letter Spacing */
    --ls-tight: -0.025em;
    --ls-normal: 0;
    --ls-wide: 0.025em;
    --ls-wider: 0.05em;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--antraciet);
    background-color: var(--wit);
    line-height: var(--lh-relaxed);
    overflow-x: hidden;
    font-size: var(--font-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    animation: fadeInUp 0.8s ease;
}

.section-header h2 {
    font-size: var(--font-xl);
    font-weight: 800;
    color: var(--antraciet);
    margin-bottom: 0.75rem;
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-tight);
}

/* Normalize subtitle text size across pages to match regular body text */
.section-header .section-subtitle {
  font-size: 1rem; /* match body text size */
  line-height: 1.6; /* consistent with body */
}

.divider {
    width: clamp(60px, 8vw, 80px);
    height: 4px;
    background: linear-gradient(90deg, var(--groen), var(--groen-light));
    margin: 1rem auto 1.25rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--font-md);
    color: #666;
    font-weight: 400;
    line-height: var(--lh-relaxed);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    backdrop-filter: saturate(140%) blur(8px);
    z-index: 1000;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    border-bottom: none; /* ensure no thin line under header */
}

.header:not(.solid) {
    background: transparent;
    box-shadow: none;
}

.header:not(.solid) .nav-menu a {
    color: var(--wit);
}

.header:not(.solid) .logo img {
    filter: brightness(0) invert(1);
}

.header.solid {
    background: rgba(43, 43, 43, 0.95);
    /* keep a subtle shadow but remove any harsh/line-like artifacts */
    box-shadow: 0 6px 18px rgba(0,0,0,0.06) !important;
    border-bottom: none !important;
}

.header.solid .logo img {
    filter: brightness(0) invert(1);
}

.header.solid .nav-menu a {
    color: var(--wit);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #2b2b2b;
    font-weight: 500;
    font-size: var(--font-sm);
    line-height: var(--lh-normal);
    letter-spacing: var(--ls-wide);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--groen);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--groen);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button-nav {
    background: var(--groen);
    color: var(--wit);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: var(--font-sm);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-wide);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 120, 0.3);
}

.cta-button-nav:hover {
    background: var(--groen-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 120, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--wit);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: clamp(72vh, 85vh, 92vh);
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.30) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-image,
.hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--wit);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2.25rem, 4vw + 0.5rem, 3.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    text-shadow: 0 6px 22px rgba(0,0,0,.35);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.35rem);
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: var(--lh-relaxed);
    max-width: 680px;
    margin-inline: auto;
    letter-spacing: var(--ls-normal);
}

.hero-benefits {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    max-width: 950px;
    margin-inline: auto;
}

.hero-benefits li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-benefits li:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-benefits svg {
    color: var(--groen-light);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.cta-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cta-button,
.btn {
    display: inline-block;
    border-radius: 999px;
    padding: clamp(0.85rem, 1vw + 0.5rem, 1.1rem) clamp(1.5rem, 2vw + 0.8rem, 2rem);
    font-weight: 700;
    font-size: clamp(0.95rem, 0.5vw + 0.8rem, 1.05rem);
    letter-spacing: var(--ls-wide);
    line-height: var(--lh-tight);
    transition: all 0.25s ease;
    text-decoration: none;
}

.cta-button,
.btn-primary {
    background: var(--groen);
    color: var(--wit);
    box-shadow: 0 10px 30px rgba(0, 168, 120, 0.25);
}

.cta-button:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 14px 40px rgba(0, 168, 120, 0.35);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

.trust-text {
    margin-top: 1rem;
    font-size: var(--font-sm);
    opacity: 0.92;
    font-weight: 500;
    letter-spacing: var(--ls-wide);
    line-height: var(--lh-normal);
}

.scroll-indicator {
    position: absolute;
    bottom: 18px;
    left: 50%;
    translate: -50% 0;
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    display: grid;
    place-items: center;
    opacity: 0.8;
    animation: float 2.2s ease-in-out infinite;
    z-index: 2;
}

.scroll-indicator::after {
    content: "";
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: #fff;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ==========================================
   WAAROM LISSERS SECTION
   ========================================== */
/* ==========================================
   WAAROM LISSERS SECTION (NEW STYLE)
   ========================================== */

/* Section container met zachte kaart-look en afgeronde bovenhoeken */
.why{
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  padding: clamp(60px, 8vw, 96px) 0;
  position: relative;
}
.why__shell{
  width: min(1140px, 94vw);
  margin-inline: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.03);
  padding: clamp(36px, 5vw, 56px);
  border: 1px solid rgba(0,168,120,.08);
}

/* Intro links / grid rechts op desktop */
.why__intro{
  max-width: 62ch;
  margin-bottom: 2.5rem;
}
.why__title{
  font-size: var(--font-xl);
  font-weight: 800;
  color: var(--antraciet);
  margin: 0 0 1.25rem 0;
  position: relative;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
}
.why__title::after{
  content: "";
  display: block;
  width: clamp(56px, 8vw, 72px); 
  height: 4px;
  background: linear-gradient(90deg, var(--groen), #02966f);
  border-radius: 2px;
  margin-top: 1rem;
}
.why__lead{ 
  color: #2d2d2d; 
  font-size: var(--font-md); 
  line-height: var(--lh-relaxed); 
  margin-bottom: 1.25rem;
  font-weight: 500;
  letter-spacing: var(--ls-normal);
}
.why__desc {
  color: #666;
  font-size: var(--font-base);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
  letter-spacing: var(--ls-normal);
}

/* Icon grid */
.why__grid{
  list-style: none; 
  padding: 0; 
  margin: 0;
  display: grid; 
  gap: clamp(16px, 2.5vw, 24px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px){
  .why__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .why__grid{ 
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .why__item {
    scroll-snap-align: center;
    flex: 0 0 85%;
    margin-right: 0;
  }
}

.why__item{
  background: linear-gradient(135deg, #f9fcfb 0%, #f5faf8 100%);
  border: 1px solid #e3ede9;
  border-radius: 16px;
  padding: 20px 18px;
  display: grid; 
  grid-template-columns: 44px 1fr; 
  column-gap: 14px;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.why__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--groen), #02966f);
  transition: height 0.3s ease;
}
.why__item:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 168, 120, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #d0e5dc;
  background: #fff;
}
.why__item:hover::before {
  height: 100%;
}

.why__icon{
  color: var(--groen);
  background: linear-gradient(135deg, #e8f7f2 0%, #daf2ea 100%);
  border: 1px solid #d0ebe2;
  border-radius: 12px;
  width: 44px; 
  height: 44px;
  display: grid; 
  place-items: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.why__item:hover .why__icon {
  transform: scale(1.08) rotate(-5deg);
  background: linear-gradient(135deg, var(--groen), #02966f);
  color: #fff;
  border-color: var(--groen);
}

.why__heading{
  margin: 2px 0 6px;
  font-weight: 700;
  font-size: var(--font-md);
  color: var(--antraciet);
  position: relative;
  padding-bottom: 8px;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
}
.why__heading::after{
  content: "";
  position: absolute; 
  left: 0; 
  bottom: 0;
  width: 32px; 
  height: 3px; 
  border-radius: 2px;
  background: linear-gradient(90deg, var(--groen), #02966f);
  opacity: 0.85;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.why__item:hover .why__heading::after {
  width: 48px;
  opacity: 1;
}
.why__text{ 
  margin: 0; 
  color: #5a5a5a; 
  font-size: var(--font-sm); 
  line-height: var(--lh-relaxed);
  letter-spacing: var(--ls-normal);
  grid-column: 2;
}

/* ==========================================
   LESPAKKETTEN SECTION
   ========================================== */
/* ==========================================
   LESPAKKETTEN SECTION
   ========================================== */
.pakketten {
    padding: clamp(60px, 8vw, 96px) 0;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.pakket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pakket-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(0, 168, 120, 0.08);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.pakket-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pakket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 168, 120, 0.3);
}

.pakket-card.featured {
    background: linear-gradient(135deg, #f9fcfb 0%, #f0f6f4 100%);
    border-color: var(--groen);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 168, 120, 0.15);
}

.pakket-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 56px rgba(0, 168, 120, 0.25);
}

.pakket-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--groen), #02966f);
    color: #fff;
    padding: 0.5rem 1.75rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 168, 120, 0.4);
}

.pakket-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.pakket-header h3 {
    font-size: var(--font-lg);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--antraciet);
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-tight);
}

.pakket-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: clamp(1.2rem, 1vw + 0.8rem, 1.4rem);
    font-weight: 700;
    color: var(--groen);
    vertical-align: super;
    letter-spacing: var(--ls-normal);
}

.amount {
    font-size: clamp(3rem, 3vw + 1.5rem, 3.75rem);
    font-weight: 800;
    color: var(--groen);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
}

.price-subtitle {
    font-size: var(--font-xs);
    color: #888;
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 400;
    letter-spacing: var(--ls-wide);
}

.pakket-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pakket-features li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0;
    font-size: var(--font-sm);
    line-height: var(--lh-relaxed);
    letter-spacing: var(--ls-normal);
    color: #555;
    font-weight: 500;
}

.pakket-features svg {
    color: var(--groen);
    flex-shrink: 0;
}

.pakket-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--groen), #02966f);
    color: #fff;
    padding: 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(0, 168, 120, 0.3);
}

.pakket-button:hover {
    background: linear-gradient(135deg, #02966f, var(--groen));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 168, 120, 0.5);
}

.pakket-extra-info {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    font-size: 1.05rem;
    background: #fff;
    border: 2px solid #e6eeec;
    border-radius: 16px;
}

.pakket-extra-info strong {
    color: var(--antraciet);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.pakket-extra-info p {
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .pakket-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    
    .pakket-card.featured {
        transform: scale(1);
    }
    
    .pakket-card.featured:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 640px) {
    .pakket-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   LESAUTO SECTION
   ========================================== */
/* ==========================================
   LESAUTO SECTION (DARK THEME)
   ========================================== */
.lesauto {
    padding: clamp(60px, 8vw, 96px) 0;
    background: linear-gradient(135deg, #2b2b2b 0%, #1f1f1f 100%);
    position: relative;
    overflow: hidden;
}

/* Decoratieve groene glows */
.lesauto::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 120, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.lesauto::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 120, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.lesauto .section-header h2 {
    color: #fff;
}

.lesauto .divider {
    background: var(--groen);
}

.lesauto .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.lesauto-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Lesauto Text */
.lesauto-text {
    animation: fadeInRight 0.8s ease;
}

.lesauto-text h3 {
    font-size: var(--font-lg);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-tight);
}

.lesauto-text p {
    font-size: var(--font-base);
    line-height: var(--lh-loose);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    letter-spacing: var(--ls-normal);
}

.lesauto-highlight {
    background: rgba(0, 168, 120, 0.1);
    border-left: 4px solid var(--groen);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    font-size: var(--font-sm) !important;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-top: 2rem !important;
    line-height: var(--lh-relaxed) !important;
    letter-spacing: var(--ls-normal);
}

.lesauto-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
    list-style: none;
    padding: 0;
}

.lesauto-specs li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-weight: 500;
    font-size: var(--font-sm);
    line-height: var(--lh-snug);
    letter-spacing: var(--ls-normal);
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lesauto-specs li:hover {
    background: var(--groen);
    color: #fff;
    border-color: var(--groen);
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 168, 120, 0.4);
}

.lesauto-specs svg {
    color: var(--groen);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.lesauto-specs li:hover svg {
    color: #fff;
}

/* Lesauto Images */
.lesauto-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInLeft 0.8s ease;
}

.lesauto-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 168, 120, 0.2);
    border: 1px solid rgba(0, 168, 120, 0.3);
    transition: all 0.4s ease;
}

.lesauto-image-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 8px 20px rgba(0, 168, 120, 0.2);
}

.lesauto-image-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lesauto-image-main:hover img {
    transform: scale(1.05);
}

.lesauto-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.lesauto-image-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 168, 120, 0.2);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.lesauto-image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 168, 120, 0.15);
}

.lesauto-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.lesauto-image-item:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 968px) {
    .lesauto-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .lesauto-text {
        order: 2;
    }
    
    .lesauto-images {
        order: 1;
    }
    
    .lesauto-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .lesauto-images {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        flex-direction: row;
    }
    
    .lesauto-image-main,
    .lesauto-image-item {
        scroll-snap-align: center;
        flex: 0 0 85%;
        margin-right: 0;
        height: 250px;
    }
    
    .lesauto-image-main img,
    .lesauto-image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .lesauto-image-grid {
        display: contents;
    }
}

.lesauto-specs li:hover svg {
    color: var(--wit);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: 5rem 0;
    background: var(--wit);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    animation: fadeInLeft 0.8s ease;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--antraciet);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--wit);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-item svg {
    color: var(--groen);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--antraciet);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--groen);
}

.contact-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--wit);
    border-radius: 10px;
    border-left: 4px solid var(--groen);
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.95rem;
}

.contact-form {
    background: var(--wit);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    animation: fadeInRight 0.8s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: var(--font-sm);
    line-height: var(--lh-normal);
    letter-spacing: var(--ls-wide);
    color: var(--antraciet);
}

.required {
    color: var(--groen);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--grijs-dark);
    border-radius: 10px;
    font-family: inherit;
    font-size: var(--font-sm);
    line-height: var(--lh-normal);
    letter-spacing: var(--ls-normal);
    transition: all 0.3s ease;
    background: var(--grijs);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--groen);
    background: var(--wit);
    box-shadow: 0 0 0 3px rgba(0, 168, 120, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    background: var(--groen);
    color: var(--wit);
    padding: clamp(0.9rem, 1vw + 0.5rem, 1.1rem) 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: var(--font-sm);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-wider);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-button:hover {
    background: var(--groen-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 120, 0.4);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(5px);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--antraciet);
    color: var(--wit);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-info p {
    opacity: 0.8;
    font-size: var(--font-sm);
    line-height: var(--lh-relaxed);
    letter-spacing: var(--ls-normal);
}

.footer-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: var(--font-md);
    font-weight: 700;
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-normal);
    color: var(--groen-light);
}

.footer-column p,
.footer-column a {
    font-size: var(--font-sm);
    line-height: var(--lh-normal);
    letter-spacing: var(--ls-normal);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--groen-light);
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--groen);
    color: var(--wit);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 168, 120, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--groen-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 168, 120, 0.5);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* ==========================================
   DISABLE HOVER ON TOUCH DEVICES
   ========================================== */
@media (hover: none) and (pointer: coarse) {
    .pakket-card:hover,
    .pakket-card.featured:hover,
    .why__item:hover,
    .lesauto-image-main:hover,
    .lesauto-image-item:hover {
        transform: none !important;
        box-shadow: inherit !important;
    }
    
    .lesauto-image-main:hover img,
    .lesauto-image-item:hover img {
        transform: none !important;
    }
    
    .why__item:hover::before {
        height: 0 !important;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--antraciet);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        color: var(--wit);
        font-size: var(--font-sm);
    }
    
    .logo img {
        width: 140px;
        height: auto;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .cta-button-nav {
        display: none;
    }

    .lesauto-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hide-on-mobile {
        display: none !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .footer-details {
        display: none;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        justify-content: center;
        text-align: center;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        width: 120px;
        height: auto;
        margin: 0 auto 0.75rem;
    }
    
    .footer-info p {
        font-size: var(--font-xs);
        opacity: 0.7;
    }
    
    /* Disable all hover effects on mobile/touch devices */
    .pakket-card:hover,
    .pakket-card.featured:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    .why__item:hover {
        transform: none;
        box-shadow: none;
        border-color: #e3ede9;
        background: linear-gradient(135deg, #f9fcfb 0%, #f5faf8 100%);
    }
    
    .why__item:hover::before {
        height: 0;
    }
    
    .lesauto-image-main:hover,
    .lesauto-image-item:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    .lesauto-image-main:hover img,
    .lesauto-image-item:hover img {
        transform: none;
    }
    
    .hero-benefits {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.25rem;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .hero-benefits li {
        scroll-snap-align: center;
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .pakket-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1.5rem 0 1rem 0;
        -webkit-overflow-scrolling: touch;
    }

    .pakket-card {
        scroll-snap-align: center;
        flex: 0 0 85%;
        margin-right: 0;
    }

    .pakket-card.featured {
        transform: scale(1);
    }
    
    .pakket-badge {
        top: -8px;
        white-space: nowrap;
    }

    .pakket-usp {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lesauto-image.main {
        height: 250px;
    }

    .lesauto-image.secondary {
        height: 200px;
    }
    
    .hide-mobile {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.65rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-image img {
        object-position: 30% 35%;
    }

    .cta-button {
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .btn-ghost {
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: var(--font-sm);
    }
    
    .logo img {
        width: 130px;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ==========================================
   CONTACT MODAL / POPUP
   ========================================== */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    display: flex;
    opacity: 1;
}

.contact-modal-content {
    background: var(--wit);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.contact-modal.active .contact-modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--antraciet);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--grijs);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--antraciet);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #666;
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--groen);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-group label a {
    color: var(--groen);
    text-decoration: underline;
}

.checkbox-group label a:hover {
    color: var(--groen-dark);
}

/* ==========================================
   LEGAL MODALS (PRIVACY & AV)
   ========================================== */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.legal-modal.active {
    display: flex;
    opacity: 1;
}

.legal-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.legal-modal-body {
    padding: 2.5rem;
}

.legal-modal-body h2 {
    font-size: var(--font-lg);
    color: var(--antraciet);
    margin: 0 0 0.5rem 0;
    font-weight: 800;
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
}

.legal-modal-body .last-updated {
    color: #888;
    font-size: var(--font-xs);
    line-height: var(--lh-normal);
    letter-spacing: var(--ls-wide);
    margin-bottom: 2rem;
}

.legal-modal-body h3 {
    font-size: var(--font-md);
    color: var(--antraciet);
    margin: 2rem 0 0.75rem 0;
    font-weight: 700;
    line-height: var(--lh-snug);
    letter-spacing: var(--ls-normal);
}

.legal-modal-body p {
    color: #555;
    font-size: var(--font-sm);
    line-height: var(--lh-loose);
    letter-spacing: var(--ls-normal);
    margin-bottom: 1rem;
}

.legal-modal-body ul {
    margin: 1rem 0 1rem 1.5rem;
    color: #555;
    font-size: var(--font-sm);
}

.legal-modal-body li {
    margin-bottom: 0.5rem;
    line-height: var(--lh-relaxed);
    letter-spacing: var(--ls-normal);
}

.legal-modal-body strong {
    color: var(--antraciet);
    font-weight: 600;
}

/* Scrollbar styling for modal */
.legal-modal-content::-webkit-scrollbar {
    width: 8px;
}

.legal-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.legal-modal-content::-webkit-scrollbar-thumb {
    background: var(--groen);
    border-radius: 10px;
}

.legal-modal-content::-webkit-scrollbar-thumb:hover {
    background: #02966f;
}

@media (max-width: 768px) {
    .legal-modal-content {
        max-height: 85vh;
    }
    
    .legal-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .legal-modal-body h2 {
        font-size: 1.75rem;
    }
    
    .legal-modal_body h3 {
        font-size: 1.15rem;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .header,
    .scroll-top,
    .cta-button,
    .pakket-button,
    .submit-button,
    .scroll-indicator,
    .contact-modal {
        display: none;
    }
}

/* ==========================================
   GESLAAGDEN SECTION
   ========================================== */

.geslaagden-section {
    background: #f8f9fb;
    padding: clamp(60px, 8vw, 96px) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: clamp(1.75rem, 2.2vw + 0.5rem, 2.25rem);
    font-weight: 800;
    color: var(--antraciet);
    margin: 0 0 1rem 0;
    position: relative;
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-tight);
}

.section-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--groen);
    border-radius: 2px;
}

.section-header p {
    font-size: var(--font-lg);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--lh-relaxed);
}

.geslaagden-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-top: 2rem;
}

@media (min-width: 900px) {
  .geslaagden-grid:not(.single) { grid-template-columns: 1fr 1fr; }
  .geslaagden-grid.single { max-width: 920px; margin: 2.5rem auto 0; }
}

/* Card */
.geslaagde-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: box-shadow .2s ease, transform .2s ease;
}
.geslaagde-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.12); transform: translateY(-2px); }

/* Image: 16:9, fully responsive */
.geslaagde-image { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.geslaagde-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Badge */
.geslaagde-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: #25c28c; color: #fff; font-weight: 600; font-size: .85rem;
  padding: .35rem .6rem; border-radius: 999px; box-shadow: 0 6px 16px rgba(37,194,140,.25);
}

/* Content */
.geslaagde-content { padding: 1.25rem 1.25rem 1.5rem; }
.review-header { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.review-header h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); }
.review-meta { display: inline-flex; gap: .5rem; align-items: center; color: #777; font-size: .95rem; }
.review-meta .stars { color: #ffb545; letter-spacing: .1em; }
.review-meta .source { background: #f1f3f5; padding: .3rem .5rem; border-radius: 999px; font-size: .85rem; }

/* Quote box */
.review-quote {
  background: #fff;
  border-left: 4px solid #2aa07b;
  padding: 1rem 1rem 1rem 1.15rem;
  margin: .75rem 0 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  color: #333;
  line-height: 1.7;
}

/* Actions */
.review-actions { display: flex; gap: .75rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.review-actions .btn-link { color: #333; text-decoration: none; font-weight: 500; }
.review-actions .btn-link:hover { text-decoration: underline; }
.review-actions .btn-primary { min-width: 180px; }

/* Mobile tuning */
@media (max-width: 768px) {
  .geslaagden-section .section-header { padding: 0 1rem; }
  .geslaagde-content { padding: 1rem; }
  .review-header { flex-direction: column; align-items: flex-start; }
  .review-actions { flex-direction: column; align-items: stretch; }
  .review-actions .btn-primary, .review-actions .btn-link { text-align: center; }
}

/* Geslaagden typografie: align with global site styles */
.geslaagden-section .section-header {
  text-align: center;
}
.geslaagden-section .section-header h1 {
  font-weight: 800; /* match hero/section titles */
  letter-spacing: -0.02em;
  color: #2b2b2b;
}
.geslaagden-section .section-header .section-subtitle {
  font-size: 1rem; /* same as body copy */
  line-height: 1.6;
  color: #666; /* global body-muted */
  margin-top: .5rem;
}
.geslaagden-section .section-header .trust-text {
  font-size: .95rem; /* small supporting line */
  line-height: 1.6;
  color: #2aa07b; /* green accent used sitewide */
  font-weight: 600;
  margin-top: .25rem;
}

/* Review card heading and body copy */
.geslaagde-content h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 700;
  color: #2b2b2b;
}
.geslaagde-content, .review-quote {
  font-size: 1rem; /* align with base paragraph */
  line-height: 1.7;
  color: #333;
}
.review-meta { color: #777; font-size: .95rem; }
.review-meta .source { font-size: .85rem; }

/* Reduce oversized headings on very small screens */
@media (max-width: 420px) {
  .geslaagden-section .section-header h1 { font-size: 1.5rem; }
}

/* Reduce white space between fixed menu and 'Onze Geslaagden' */
.header.solid + main { padding-top: 100px; }
@media (max-width: 1024px) {
  .header.solid + main { padding-top: 120px; }
}
@media (max-width: 768px) {
  .header.solid + main { padding-top: 140px; }
}

/* Fine-tune the geslaagden header spacing */
.geslaagden-section .section-header { margin-top: 0; margin-bottom: 1.25rem; }
.geslaagden-grid.single { margin-top: 1.5rem; }

/* Hide divider in geslaagden section (user requested fully removed) */
.geslaagden-section .divider { display: none !important; }
