/* ===========================================
   STARTRIJDEN.NL - BIOCLINICS STRUCTUUR
   Font: Garet (fallback: Inter)
   Kleuren: Geel, Wit, Zwart + Blauwe Buttons
   =========================================== */

:root {
    /* Brand Colors */
    --yellow: #FFD400;
    --yellow-light: #FFE666;
    --yellow-dark: #E5BF00;
    --blue: #303cde;
    --blue-dark: #2633b8;
    --blue-light: #5a64e8;
    --green: #10B981;
    --green-dark: #059669;
    --black: #000000;
    --gray-dark: #222222;
    --gray-medium: #666666;
    --gray-light: #999999;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--black);
}

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

/* ===========================================
   NAVIGATION
   =========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid #E5E5E5;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: var(--black);
    transition: var(--transition);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition);
}

.nav-logo:hover .logo-circle {
    transform: rotate(360deg);
}

.nav-logo:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--black);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-special {
    text-decoration: none;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    color: var(--black) !important;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link-special:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 212, 0, 0.4);
}

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

.nav-hamburger span {
    width: 28px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* ===========================================
   BUTTONS - CONSISTENTE STYLING
   =========================================== */

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(48, 60, 222, 0.25);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(48, 60, 222, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(48, 60, 222, 0.3);
    transform: translateY(-2px);
}

.btn-submit {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.25);
}

.btn-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.btn-large {
    padding: 18px 48px;
    font-size: 17px;
}

.btn-xl {
    padding: 20px 56px;
    font-size: 18px;
    font-weight: 800;
}

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

/* Gele button voor speciale secties (Max Verstappen) */
.btn-yellow {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 2px 12px rgba(255, 212, 0, 0.4);
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 212, 0, 0.6);
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hero {
    position: relative;
    padding: 140px 40px 80px;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(0, 0, 0, 0.55) 50%, 
        rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
}

.hero-title {
    margin-bottom: 30px;
}

.title-small {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.title-main {
    display: block;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px;
}

.title-accent {
    display: block;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--yellow);
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

.benefit-item i {
    width: 32px;
    height: 32px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--black);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Form */
.hero-form-wrapper {
    animation: slideInRight 0.8s ease-out;
}

.hero-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 25px;
    line-height: 1.6;
}

.intake-form .form-group {
    margin-bottom: 18px;
}

.intake-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.intake-form input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-note {
    font-size: 13px;
    color: var(--gray-medium);
    text-align: center;
    margin-top: 15px;
}

/* ===========================================
   TRUST BAR
   =========================================== */

.trust-section {
    padding: 40px;
    background: var(--white);
    border-bottom: 1px solid #E5E5E5;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-text {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-logo-wrapper {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: var(--transition);
}

.trust-logo-wrapper:hover {
    opacity: 1;
}

.trust-logo-img {
    max-height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.trust-logo-wrapper:hover .trust-logo-img {
    filter: grayscale(0%);
}

.trust-logo-text {
    color: var(--gray-medium);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* ===========================================
   SECTIONS
   =========================================== */

section {
    padding: 100px 40px;
}

/* ===========================================
   SECTION SPACING & CONSISTENCY
   =========================================== */

/* Alle secties krijgen consistente padding */
section {
    padding: 120px 40px;
    position: relative;
}

/* Section container voor max-width */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

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

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--blue) 100%);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-medium);
    line-height: 1.6;
    max-width: 700px;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

.section-header.center .section-title {
    display: block;
}

.section-header.center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-lead {
    font-size: 22px;
    color: var(--gray-dark);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.5;
}

.section-text {
    font-size: 17px;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===========================================
   PRIJZEN/PAKKETTEN SECTIE
   =========================================== */

.prijzen-section {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.prijzen-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.prijzen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.pakket-card {
    position: relative;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.pakket-card:nth-child(1) {
    animation-delay: 0.2s;
    border-color: var(--yellow);
    transform: scale(1.05);
}

.pakket-card:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pakket-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 212, 0, 0.3);
    border-color: var(--yellow);
}

.pakket-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    color: var(--black);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(255, 212, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pakket-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--black);
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 212, 0, 0.3);
    transition: var(--transition);
}

.pakket-card:hover .pakket-icon {
    transform: rotate(360deg) scale(1.1);
}

.pakket-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.pakket-description {
    font-size: 15px;
    color: var(--gray-medium);
    margin-bottom: 30px;
    line-height: 1.6;
}

.pakket-price {
    margin-bottom: 35px;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(255, 212, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.pakket-price::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--black);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.price-period {
    display: block;
    font-size: 16px;
    color: var(--gray-dark);
    margin-top: 5px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.pakket-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--gray-dark);
}

.feature-item i {
    width: 24px;
    height: 24px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.pakket-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray-medium);
    margin-top: 15px;
}

/* ===========================================
   PRIJZEN SECTIE - BIOCLINICS STIJL
   =========================================== */

.prijzen-section-bioclinics {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--gray-dark) 100%);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.prijzen-section-bioclinics .section-title {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.prijzen-section-bioclinics .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.prijzen-section-bioclinics .section-title::after {
    background: linear-gradient(90deg, var(--yellow) 0%, var(--white) 100%);
}

.prijzen-section-bioclinics::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.prijzen-section-bioclinics::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.prijzen-grid-bioclinics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.pakket-card-bio {
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 3px solid transparent;
    transition: var(--transition);
}

.pakket-card-bio:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 212, 0, 0.3);
    border-color: var(--yellow);
}

.pakket-header-bio {
    padding: 40px 40px 30px;
    text-align: center;
    position: relative;
}

.pakket-badge-bio {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    color: var(--black);
    box-shadow: 0 4px 12px rgba(255, 212, 0, 0.4);
}

.pakket-icon-bio {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--white);
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(48, 60, 222, 0.4);
}

.pakket-icon-bio.secondary {
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--gray-medium) 100%);
}

.pakket-title-bio {
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.pakket-subtitle-bio {
    font-size: 15px;
    color: var(--gray-medium);
}

.pakket-price-bio {
    background: linear-gradient(135deg, var(--off-white) 0%, #FFFEF5 100%);
    padding: 35px 40px;
    text-align: center;
    border-top: 2px solid #F0F0F0;
    border-bottom: 2px solid #F0F0F0;
}

.price-old {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.price-old .strikethrough {
    font-size: 32px;
    font-weight: 600;
    color: #999999;
    text-decoration: line-through;
    opacity: 0.6;
}

.discount-badge {
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.price-large {
    font-size: 64px;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

.price-label {
    font-size: 18px;
    color: var(--gray-medium);
    margin: 8px 0;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 12px;
}

.price-condition {
    font-size: 14px;
    color: var(--gray-medium);
    margin-top: 10px;
}

/* Savings Highlight Section */
.savings-highlight {
    margin: 50px auto 40px;
    max-width: 900px;
}

.savings-content {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE666 100%);
    border: 3px solid var(--yellow);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 24px rgba(255, 212, 0, 0.3);
    animation: glow 3s ease-in-out infinite;
}

.savings-icon {
    font-size: 64px;
    color: var(--yellow-dark);
    flex-shrink: 0;
}

.savings-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.savings-text p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
    margin: 0;
}

.savings-amount {
    display: block;
    margin-top: 15px;
    font-size: 20px;
    color: #059669;
}

.savings-amount strong {
    font-size: 28px;
    font-weight: 900;
}

@media (max-width: 768px) {
    .savings-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .savings-icon {
        font-size: 48px;
    }
    
    .savings-text h3 {
        font-size: 22px;
    }
}

.pakket-features-bio {
    padding: 35px 40px;
}

.pakket-features-bio h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pakket-features-bio ul {
    list-style: none;
}

.pakket-features-bio li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.6;
}

.pakket-features-bio i {
    font-size: 18px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.pakket-highlight-bio {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    color: var(--black);
    padding: 15px 40px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

.pakket-highlight-bio.secondary {
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--gray-medium) 100%);
    color: var(--white);
}

.pakket-card-bio .btn-full {
    margin: 25px 40px 40px;
}

.prijzen-extra-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.info-card i {
    font-size: 40px;
    color: var(--yellow);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ===========================================
   VERTROUWEN SECTIE (Was Over Ons - Nu Bioclinics-stijl)
   =========================================== */

.vertrouwen-section {
    background: var(--off-white);
    padding: 120px 40px;
    position: relative;
}

.vertrouwen-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.vertrouwen-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    color: var(--gray-dark);
    line-height: 1.8;
}

.vertrouwen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vertrouwen-card {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition);
}

.vertrouwen-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 212, 0, 0.2);
    border-color: var(--yellow);
}

.vertrouwen-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(255, 212, 0, 0.4);
}

.vertrouwen-card:nth-child(1) .vertrouwen-icon {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(48, 60, 222, 0.4);
}

.vertrouwen-card:nth-child(2) .vertrouwen-icon {
    background: linear-gradient(135deg, var(--green) 0%, #34d399 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.vertrouwen-card:nth-child(3) .vertrouwen-icon {
    background: linear-gradient(135deg, var(--yellow) 0%, #fbbf24 100%);
    color: var(--black);
    box-shadow: 0 6px 20px rgba(255, 212, 0, 0.4);
}

.vertrouwen-card:nth-child(4) .vertrouwen-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.vertrouwen-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.vertrouwen-card p {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.vertrouwen-bullets {
    list-style: none;
}

.vertrouwen-bullets li {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.vertrouwen-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
    font-size: 16px;
}

.over-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.over-story {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}

.story-text {
    font-size: 16px;
    color: var(--gray-medium);
    line-height: 1.8;
}

.over-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--white) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--yellow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(255, 212, 0, 0.3);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--black);
    margin: 0 auto 25px;
    box-shadow: 0 6px 20px rgba(255, 212, 0, 0.4);
    transition: var(--transition);
}

.mission-card:hover .mission-icon {
    transform: rotate(360deg) scale(1.1);
}

.mission-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.mission-text {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.7;
}

/* ===========================================
   STAPPENPLAN NAAR JE RIJBEWIJS
   =========================================== */

.stappenplan-section {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 120px 40px;
    position: relative;
}

.stappenplan-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(48, 60, 222, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.stappenplan-timeline {
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
}

.stappenplan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Verticale lijn tussen de kolommen */
.stappenplan-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue) 0%, var(--yellow) 50%, var(--green) 100%);
    border-radius: 3px;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    border: 2px solid #E5E5E5;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.timeline-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--yellow);
}

.timeline-item.highlight {
    background: linear-gradient(135deg, rgba(255, 212, 0, 0.08) 0%, var(--white) 100%);
    border-color: var(--yellow);
    border-width: 3px;
}

.timeline-item.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, var(--white) 100%);
    border-color: var(--green);
    border-width: 3px;
}

.timeline-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 3px solid var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.timeline-item.highlight .timeline-number {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
    box-shadow: 0 6px 20px rgba(255, 212, 0, 0.4);
}

.timeline-item.success .timeline-number {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    font-size: 24px;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-content h3 i {
    color: var(--blue);
    font-size: 24px;
}

.timeline-item.highlight .timeline-content h3 i {
    color: var(--yellow-dark);
}

.timeline-item.success .timeline-content h3 i {
    color: var(--green);
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.timeline-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-benefits li {
    font-size: 14px;
    color: var(--gray-medium);
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.timeline-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 968px) {
    .stappenplan-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .stappenplan-timeline::before {
        left: 24px;
        transform: none;
    }
    
    .timeline-number {
        left: 0;
    }
}

@media (max-width: 640px) {
    .timeline-item {
        padding: 24px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
}

/* ===========================================
   DENSE READABLE VERSION - absolute final overrides
   =========================================== */

html,
body {
    font-size: 13px !important;
}

.navbar,
.nav-container {
    min-height: 0 !important;
}

.nav-container {
    padding: 6px 22px !important;
}

.nav-menu {
    gap: 14px !important;
}

.nav-link,
.nav-link-special,
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-large,
.btn-xl,
.btn-yellow {
    font-size: 12.5px !important;
    line-height: 1.2 !important;
}

.btn-primary,
.btn-secondary,
.btn-submit,
.btn-large,
.btn-xl,
.btn-yellow {
    padding: 8px 14px !important;
    border-radius: 6px !important;
    gap: 6px !important;
}

.hero {
    padding: 68px 28px 28px !important;
}

.hero-container {
    max-width: 980px !important;
    grid-template-columns: minmax(0, 1fr) 300px !important;
    gap: 22px !important;
}

.hero-title {
    margin-bottom: 12px !important;
}

.title-small {
    font-size: 11px !important;
}

.title-main {
    font-size: clamp(26px, 2.6vw, 34px) !important;
    line-height: 1.05 !important;
}

.title-accent {
    font-size: clamp(19px, 2vw, 24px) !important;
}

.hero-description {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
}

.hero-benefits {
    gap: 6px !important;
    margin-bottom: 12px !important;
}

.benefit-item {
    font-size: 12.5px !important;
}

.benefit-item i {
    width: 22px !important;
    height: 22px !important;
    font-size: 10px !important;
}

.hero-form,
.contact-form-wrapper {
    padding: 14px !important;
    border-radius: 8px !important;
}

.form-title {
    font-size: 16px !important;
    margin-bottom: 4px !important;
}

.form-subtitle,
.form-note {
    font-size: 11.5px !important;
    margin-bottom: 10px !important;
}

.intake-form .form-group,
.contact-form .form-row,
.contact-form .form-group {
    margin-bottom: 7px !important;
}

.intake-form input,
.contact-form input,
.contact-form textarea {
    padding: 7px 9px !important;
    min-height: 0 !important;
    font-size: 12.5px !important;
    border-radius: 6px !important;
}

.trust-section {
    padding: 12px 28px !important;
}

section,
.prijzen-section,
.prijzen-section-bioclinics,
.vertrouwen-section,
.app-section,
.locaties-section,
.simulator-section,
.contact-section,
.referral-section {
    padding: 28px 28px !important;
}

.section-container {
    max-width: 960px !important;
}

.section-header {
    margin-bottom: 16px !important;
}

.section-title,
.prijzen-section-bioclinics .section-title,
.vergelijking-section-bio .section-title,
.professionals-section .section-title {
    font-size: clamp(20px, 2vw, 26px) !important;
    line-height: 1.15 !important;
    margin-bottom: 6px !important;
}

.section-title::after,
.prijzen-section-bioclinics .section-title::after,
.vergelijking-section-bio .section-title::after,
.professionals-section .section-title::after {
    width: 42px !important;
    height: 2px !important;
    margin-top: 8px !important;
}

.section-subtitle,
.section-lead,
.section-text {
    font-size: 13px !important;
    line-height: 1.4 !important;
}

.prijzen-grid,
.pricing-grid,
.steps-container,
.steps-container-4,
.voordelen-grid,
.steden-grid,
.prijzen-extra-info {
    gap: 12px !important;
}

.pakket-card,
.pakket-card-bio,
.step-card,
.voordeel-card,
.parent-card,
.stat-card,
.city-card,
.info-card,
.extra-info-card {
    padding: 14px !important;
    border-radius: 8px !important;
    border-width: 1px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
}

.pakket-header-bio,
.pakket-price-bio,
.pakket-features-bio,
.pakket-highlight-bio {
    padding: 12px 14px !important;
}

.pakket-icon,
.pakket-icon-bio,
.step-icon,
.card-icon,
.voordeel-icon,
.info-card i,
.savings-icon {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    font-size: 16px !important;
    margin: 0 auto 8px !important;
    border-radius: 8px !important;
}

.pakket-title,
.pakket-title-bio,
.step-card h3,
.voordeel-card h3,
.city-card h3,
.info-card h4,
.extra-info-card h3 {
    font-size: 15px !important;
    line-height: 1.2 !important;
    margin-bottom: 5px !important;
}

.pakket-subtitle-bio,
.pakket-description,
.pakket-description-bio,
.step-card p,
.voordeel-card p,
.city-card p,
.info-card p,
.extra-info-card p {
    font-size: 12.5px !important;
    line-height: 1.35 !important;
    margin-bottom: 7px !important;
}

.pakket-price,
.pakket-price-bio,
.price-display {
    padding: 10px !important;
    margin: 8px 0 !important;
    border-radius: 8px !important;
}

.price-large,
.price-amount,
.current-price,
.total-value,
.vergelijk-price,
.savings-amount strong {
    font-size: 26px !important;
    line-height: 1 !important;
}

.price-old .strikethrough {
    font-size: 18px !important;
}

.price-label,
.price-period,
.price-condition,
.original-price,
.discount-badge,
.pakket-badge,
.pakket-badge-bio {
    font-size: 10.5px !important;
}

.discount-badge,
.pakket-badge,
.pakket-badge-bio {
    padding: 3px 8px !important;
    border-radius: 12px !important;
}

.pakket-features,
.pakket-features-bio,
.features-list {
    margin: 8px 0 !important;
}

.pakket-features-bio h4 {
    font-size: 12px !important;
    margin-bottom: 8px !important;
}

.pakket-features li,
.pakket-features-bio li,
.features-list li {
    font-size: 12px !important;
    line-height: 1.28 !important;
    margin-bottom: 5px !important;
    gap: 7px !important;
}

.pakket-features-bio i,
.pakket-features i,
.features-list i {
    font-size: 12px !important;
    margin-top: 1px !important;
}

.pakket-card-bio .btn-full,
.pakket-card .btn-full {
    margin: 8px 14px 14px !important;
}

.savings-highlight {
    margin: 14px auto !important;
}

.savings-content {
    padding: 14px !important;
    gap: 12px !important;
    border-radius: 8px !important;
}

.savings-text h3 {
    font-size: 17px !important;
    margin-bottom: 6px !important;
}

.savings-text p {
    font-size: 12.5px !important;
    line-height: 1.35 !important;
}

.contact-grid {
    gap: 18px !important;
}

.contact-info h3 {
    font-size: 16px !important;
    margin-bottom: 12px !important;
}

.contact-item {
    gap: 10px !important;
    margin-bottom: 9px !important;
}

.contact-item i {
    width: 28px !important;
    height: 28px !important;
    font-size: 13px !important;
    border-radius: 7px !important;
}

.contact-item h4,
.contact-item p {
    font-size: 12px !important;
}

.video-container-large {
    max-width: 680px !important;
    padding: 8px !important;
}

.how-video {
    max-height: 300px !important;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .hero,
    section,
    .prijzen-section,
    .prijzen-section-bioclinics,
    .vertrouwen-section,
    .app-section,
    .locaties-section,
    .simulator-section,
    .contact-section,
    .referral-section {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

/* Extra compact pass */
.nav-container {
    padding: 9px 28px;
}

.nav-link,
.nav-link-special {
    font-size: 14px;
}

.nav-logo .logo-image {
    height: 36px;
}

.btn-primary,
.btn-secondary,
.btn-submit {
    padding: 10px 22px;
    font-size: 14px;
}

.btn-large,
.btn-xl {
    padding: 12px 26px;
    font-size: 15px;
}

.hero {
    padding: 86px 36px 42px;
}

.hero-container {
    max-width: 1080px;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
}

.title-small {
    font-size: 12px;
}

.title-main {
    font-size: clamp(30px, 3.4vw, 42px);
}

.title-accent {
    font-size: clamp(22px, 2.6vw, 30px);
}

.hero-description {
    font-size: 15px;
    margin-bottom: 18px;
}

.hero-benefits {
    gap: 8px;
    margin-bottom: 20px;
}

.hero-form {
    padding: 20px;
}

.form-title {
    font-size: 19px;
}

.form-subtitle {
    font-size: 13px;
    margin-bottom: 14px;
}

.intake-form .form-group {
    margin-bottom: 9px;
}

.intake-form input,
.contact-form input,
.contact-form textarea {
    padding: 9px 12px;
    font-size: 14px;
}

.trust-section {
    padding: 16px 36px;
}

section,
.prijzen-section-bioclinics,
.vertrouwen-section,
.app-section,
.locaties-section,
.simulator-section,
.contact-section,
.referral-section {
    padding: 48px 36px;
}

.section-container {
    max-width: 1040px;
}

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

.section-title {
    font-size: clamp(24px, 2.5vw, 34px);
}

.section-subtitle {
    font-size: 15px;
}

.section-lead {
    font-size: 16px;
}

.prijzen-grid,
.steps-container,
.steps-container-4,
.voordelen-grid,
.steden-grid,
.prijzen-extra-info {
    gap: 18px;
}

.pakket-card,
.step-card,
.voordeel-card,
.parent-card,
.stat-card,
.city-card,
.extra-info-card {
    padding: 22px;
}

.pakket-icon,
.step-icon,
.card-icon,
.voordeel-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    margin-bottom: 12px;
}

.pakket-title,
.step-card h3,
.voordeel-card h3 {
    font-size: 18px;
}

.pakket-description,
.step-card p,
.voordeel-card p,
.section-text {
    font-size: 14px;
}

.pakket-price {
    padding: 14px;
    margin-bottom: 16px;
}

.price-amount,
.total-value {
    font-size: 36px;
}

.contact-grid {
    gap: 28px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-form-wrapper {
    padding: 22px;
}

.contact-form .form-row,
.contact-form .form-group {
    margin-bottom: 10px;
}

.contact-item {
    margin-bottom: 16px;
}

.video-container-large {
    max-width: 840px;
}

.how-video {
    max-height: 440px;
}

@media (max-width: 968px) {
    .hero {
        padding: 78px 20px 34px;
    }

    .hero-container {
        gap: 20px;
    }

    section,
    .prijzen-section-bioclinics,
    .vertrouwen-section,
    .app-section,
    .locaties-section,
    .simulator-section,
    .contact-section,
    .referral-section {
        padding: 40px 20px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 74px 16px 30px;
    }

    .hero-form,
    .contact-form-wrapper,
    .pakket-card,
    .step-card,
    .voordeel-card,
    .parent-card,
    .stat-card,
    .city-card,
    .extra-info-card {
        padding: 18px;
    }

    section,
    .prijzen-section-bioclinics,
    .vertrouwen-section,
    .app-section,
    .locaties-section,
    .simulator-section,
    .contact-section,
    .referral-section {
        padding: 34px 16px;
    }
}

/* ===========================================
   VERGELIJKING SECTIE - BIOCLINICS TABEL STIJL
   =========================================== */

.vergelijking-section-bio {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 50%, var(--white) 100%);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.vergelijking-section-bio .section-title {
    color: var(--black);
}

.vergelijking-section-bio .section-subtitle {
    color: var(--gray-dark);
}

.vergelijking-section-bio .section-title::after {
    background: linear-gradient(90deg, var(--blue) 0%, var(--black) 100%);
}

.vergelijking-section-bio::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(48, 60, 222, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.vergelijking-table {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.vergelijking-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black) 100%);
    padding: 30px;
    gap: 20px;
}

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

.header-item.empty {
    visibility: hidden;
}

.header-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0;
}

.header-item.startrijden {
    position: relative;
}

.header-badge {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    margin-top: 10px;
    display: inline-block;
}

.vergelijking-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 20px 30px;
    gap: 20px;
    border-bottom: 1px solid #E5E5E5;
    align-items: center;
}

.vergelijking-row:hover {
    background: var(--off-white);
}

.row-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-dark);
}

.row-value {
    text-align: center;
    font-size: 15px;
    color: var(--gray-medium);
}

.row-value.highlight {
    font-weight: 700;
    color: var(--black);
}

.row-value.startrijden {
    color: var(--green);
    font-weight: 600;
}

.vergelijking-total {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    padding: 40px;
    text-align: center;
}

.total-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.total-value {
    font-size: 64px;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    margin-bottom: 10px;
}

.total-note {
    font-size: 16px;
    color: var(--gray-dark);
    font-weight: 500;
}

.vergelijking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.vergelijk-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    border: 3px solid transparent;
    transition: var(--transition);
}

.vergelijk-card.highlight {
    border-color: var(--yellow);
    box-shadow: 0 15px 50px rgba(255, 212, 0, 0.4);
    background: linear-gradient(135deg, var(--white) 0%, #FFFEF0 100%);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(255, 212, 0, 0.4);
    }
    50% {
        box-shadow: 0 20px 60px rgba(255, 212, 0, 0.6);
    }
}

.vergelijk-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--yellow);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.vergelijk-emoji {
    font-size: 64px;
    margin-bottom: 20px;
}

.vergelijk-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
}

.vergelijk-price {
    font-size: 52px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 5px;
}

.vergelijk-period {
    font-size: 16px;
    color: var(--gray-medium);
    margin-bottom: 35px;
}

.vergelijk-list {
    list-style: none;
    text-align: left;
}

.vergelijk-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--gray-dark);
}

.vergelijk-list i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vergelijk-list .fa-check {
    background: var(--green);
    color: var(--white);
}

.vergelijk-list .fa-times {
    background: #EF4444;
    color: var(--white);
}

.besparing-highlight {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.besparing-highlight i {
    font-size: 48px;
    color: var(--black);
    margin-bottom: 20px;
}

.besparing-highlight h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}

.besparing-amount {
    color: var(--blue);
}

.besparing-highlight p {
    font-size: 18px;
    color: var(--gray-dark);
}

/* ===========================================
   PROFESSIONALS SECTIE
   =========================================== */

.professionals-section {
    background: linear-gradient(135deg, #303cde 0%, #5a64e8 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.professionals-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.professionals-section .section-title {
    color: var(--white);
}

.professionals-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.professionals-section .section-lead {
    color: var(--yellow);
    font-weight: 700;
}

.professionals-section .section-text {
    color: rgba(255, 255, 255, 0.9);
}

.professionals-section .section-title::after {
    background: linear-gradient(90deg, var(--yellow) 0%, var(--white) 100%);
}

.professionals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.professionals-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px;
    color: var(--white);
}

.image-caption i {
    font-size: 24px;
    color: var(--yellow);
    margin-bottom: 10px;
}

.image-caption p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}

.image-caption span {
    font-size: 14px;
    color: var(--yellow);
    font-weight: 600;
}

.pro-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pro-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pro-feature i {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--black);
    flex-shrink: 0;
}

.pro-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.pro-feature p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================================
   HOE HET WERKT SECTIE (4 STAPPEN - MODERN)
   =========================================== */

.how-section {
    background: var(--white);
    padding: 120px 40px;
    position: relative;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.how-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(48, 60, 222, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.steps-container-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.step-card-modern {
    background: var(--white);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition);
}

.step-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 212, 0, 0.2);
    border-color: var(--yellow);
}

.step-card-modern .step-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.step-card-modern .step-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
}

.step-card-modern:hover .step-image img {
    transform: scale(1.1);
}

.step-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 212, 0, 0.5);
    z-index: 2;
}

.step-card-modern:nth-child(1) .step-badge {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    box-shadow: 0 4px 16px rgba(255, 212, 0, 0.5);
}

.step-card-modern:nth-child(2) .step-badge {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(48, 60, 222, 0.5);
}

.step-card-modern:nth-child(3) .step-badge {
    background: linear-gradient(135deg, var(--green) 0%, #34d399 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5);
}

.step-card-modern:nth-child(4) .step-badge {
    background: linear-gradient(135deg, var(--yellow) 0%, #fbbf24 100%);
    color: var(--black);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.5);
}

.step-card-modern .step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin: 20px 20px 12px;
}

.step-card-modern .step-description {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0 20px 15px;
}

.step-bullets {
    list-style: none;
    margin: 0 20px 20px;
    padding: 0;
}

.step-bullets li {
    font-size: 13px;
    color: var(--gray-dark);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.step-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.section-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 60px;
}

/* Video Sectie binnen Hoe het Werkt */
.video-section-how {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #F0F0F0;
}

.video-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.video-subtitle {
    font-size: 18px;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

.video-container-large {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.how-video {
    width: 100%;
    height: auto;
    min-height: 500px;
    border-radius: 16px;
    display: block;
    background: var(--black);
}

.video-caption {
    text-align: center;
    margin-top: 25px;
    font-size: 16px;
    color: var(--gray-medium);
    font-style: italic;
}

@media (max-width: 968px) {
    .video-container-large {
        padding: 15px;
    }
    
    .how-video {
        min-height: 300px;
    }
    
    .video-title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .video-section-how {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .how-video {
        min-height: 250px;
    }
    
    .video-title {
        font-size: 24px;
    }
}

.btn-xl {
    padding: 18px 40px;
    font-size: 18px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow);
}

.step-image {
    margin: -40px -30px 30px -30px;
    height: 200px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.step-card:hover .step-image img {
    transform: scale(1.1);
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--yellow);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -10px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 25px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.step-description {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Video Section */
.video-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #E5E5E5;
}

.video-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}

.video-subtitle {
    font-size: 18px;
    color: var(--gray-medium);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.main-video {
    width: 100%;
    border-radius: 12px;
    background: #000;
}

.video-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray-medium);
    margin-top: 15px;
}

/* ===========================================
   REFERRAL / NODIG JE VRIEND UIT SECTIE
   =========================================== */

.referral-section {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 50%, var(--yellow) 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.referral-section::before,
.referral-section::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.referral-section::before {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: floatSlow 8s ease-in-out infinite;
}

.referral-section::after {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
    animation: floatSlow 6s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(10deg); }
}

.referral-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.referral-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--yellow);
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.referral-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
}

.referral-description {
    font-size: 20px;
    color: var(--gray-dark);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.referral-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.referral-benefit {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.referral-benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.referral-benefit.highlight {
    background: var(--black);
    transform: scale(1.1);
}

.benefit-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 10px;
}

.referral-benefit.highlight .benefit-number {
    color: var(--yellow);
}

.referral-benefit p {
    font-size: 16px;
    color: var(--gray-medium);
    font-weight: 600;
}

.referral-benefit.highlight p {
    color: var(--white);
}

.referral-plus,
.referral-equals {
    font-size: 36px;
    font-weight: 900;
    color: var(--black);
}

.referral-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.referral-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--black);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.referral-step p {
    font-size: 15px;
    color: var(--gray-dark);
    font-weight: 600;
    max-width: 150px;
    text-align: center;
}

.step-arrow {
    font-size: 32px;
    color: var(--black);
    font-weight: 900;
}

.referral-note {
    margin-top: 30px;
    font-size: 16px;
    color: var(--gray-dark);
    font-weight: 500;
}

/* ===========================================
   LOCATIES SECTIE
   =========================================== */

.locaties-section {
    background: var(--off-white);
    padding: 120px 40px;
}

.locaties-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.locaties-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.locaties-steden h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 30px;
}

.steden-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stad-card {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: var(--transition);
}

.stad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 212, 0, 0.2);
    border-color: var(--yellow);
}

.stad-card i {
    font-size: 28px;
    color: var(--yellow);
    margin-bottom: 12px;
}

.stad-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.stad-card p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 10px;
}

.stad-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stad-status.open {
    background: var(--green);
    color: var(--white);
}

.stad-status.soon {
    background: var(--yellow);
    color: var(--black);
}

.locaties-cta {
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--yellow);
}

.locaties-cta p {
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.locaties-cta p:first-child {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

/* ===========================================
   CONTACT SECTIE
   =========================================== */

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--black);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 15px;
    color: var(--gray-medium);
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 40px;
    border-radius: 16px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

/* ===========================================
   FOOTER
   =========================================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--yellow);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--black);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===========================================
   MODAL
   =========================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: modalSlideUp 0.4s ease-out;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: var(--off-white);
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--yellow);
}

.modal-icon {
    font-size: 64px;
    color: var(--green);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.modal-content p {
    font-size: 16px;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 1200px) {
    .hero-container,
    .over-content,
    .professionals-grid,
    .contact-grid,
    .locaties-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .prijzen-grid,
    .prijzen-grid-bioclinics,
    .vergelijking-grid,
    .mission-vision,
    .vertrouwen-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-slow);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .steps-container,
    .steps-container-4,
    .steden-grid,
    .prijzen-extra-info {
        grid-template-columns: 1fr;
    }
    
    .vergelijking-header,
    .vergelijking-row {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 12px;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    section {
        padding: 60px 20px;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .vergelijking-header,
    .vergelijking-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 10px;
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .header-item h3 {
        font-size: 14px;
    }
    
    .total-value {
        font-size: 40px;
    }
    
    .section-cta {
        flex-direction: column;
    }
    
    .btn-xl {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================================
   COMPACT LIVE LAYOUT
   =========================================== */

.nav-container {
    padding: 12px 32px;
}

.nav-logo .logo-image {
    height: 40px;
}

.btn-primary,
.btn-secondary,
.btn-submit {
    padding: 12px 26px;
    font-size: 15px;
}

.btn-large,
.btn-xl {
    padding: 14px 32px;
    font-size: 16px;
}

.hero {
    min-height: auto;
    padding: 105px 40px 56px;
    background-attachment: scroll;
}

.hero-container {
    max-width: 1180px;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 42px;
}

.hero-title {
    margin-bottom: 20px;
}

.title-small {
    font-size: 13px;
    margin-bottom: 8px;
}

.title-main {
    font-size: clamp(34px, 4vw, 48px);
}

.title-accent {
    font-size: clamp(25px, 3vw, 34px);
}

.hero-description {
    max-width: 640px;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 22px;
}

.hero-benefits {
    gap: 10px;
    margin-bottom: 24px;
}

.benefit-item {
    font-size: 14px;
}

.benefit-item i {
    width: 26px;
    height: 26px;
    font-size: 12px;
}

.hero-form {
    padding: 26px;
    border-radius: 12px;
}

.form-title {
    font-size: 22px;
    line-height: 1.2;
}

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

.intake-form .form-group {
    margin-bottom: 12px;
}

.intake-form input,
.contact-form input,
.contact-form textarea {
    padding: 11px 14px;
    font-size: 15px;
}

.trust-section {
    padding: 24px 40px;
}

section,
.prijzen-section-bioclinics,
.vertrouwen-section,
.app-section,
.locaties-section,
.simulator-section,
.contact-section,
.referral-section {
    padding: 70px 40px;
}

.section-container {
    max-width: 1120px;
}

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

.section-title {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.5;
}

.section-lead {
    font-size: 18px;
}

.prijzen-grid,
.steps-container,
.steps-container-4,
.voordelen-grid,
.steden-grid,
.prijzen-extra-info {
    gap: 24px;
}

.pakket-card,
.step-card,
.voordeel-card,
.parent-card,
.stat-card,
.city-card,
.extra-info-card {
    border-radius: 12px;
    padding: 28px;
}

.pakket-card:nth-child(1) {
    transform: none;
}

.pakket-card:hover {
    transform: translateY(-6px);
}

.pakket-icon,
.step-icon,
.card-icon,
.voordeel-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    font-size: 26px;
    margin-bottom: 16px;
}

.pakket-title,
.step-card h3,
.voordeel-card h3 {
    font-size: 21px;
}

.pakket-description,
.step-card p,
.voordeel-card p,
.section-text {
    font-size: 15px;
    line-height: 1.6;
}

.pakket-price {
    margin-bottom: 22px;
    padding: 18px;
    border-radius: 12px;
}

.price-amount,
.total-value {
    font-size: 44px;
}

.contact-grid {
    gap: 36px;
}

.contact-form-wrapper {
    padding: 28px;
    border-radius: 12px;
}

.contact-form .form-row {
    gap: 14px;
    margin-bottom: 14px;
}

.contact-form .form-group {
    margin-bottom: 14px;
}

.contact-item {
    gap: 14px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.video-container-large {
    max-width: 960px;
    padding: 12px;
    border-radius: 14px;
}

.how-video {
    min-height: 0;
    max-height: 520px;
    object-fit: cover;
}

@media (max-width: 968px) {
    .hero {
        padding: 92px 24px 44px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hero-form-wrapper {
        max-width: 520px;
    }

    section,
    .prijzen-section-bioclinics,
    .vertrouwen-section,
    .app-section,
    .locaties-section,
    .simulator-section,
    .contact-section,
    .referral-section {
        padding: 52px 24px;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 12px 18px;
    }

    .hero {
        padding: 84px 18px 38px;
    }

    .hero-form {
        padding: 20px;
    }

    .title-main {
        font-size: 32px;
    }

    .title-accent {
        font-size: 24px;
    }

    section,
    .prijzen-section-bioclinics,
    .vertrouwen-section,
    .app-section,
    .locaties-section,
    .simulator-section,
    .contact-section,
    .referral-section {
        padding: 44px 18px;
    }

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

    .contact-form-wrapper,
    .pakket-card,
    .step-card,
    .voordeel-card,
    .parent-card,
    .stat-card,
    .city-card,
    .extra-info-card {
        padding: 22px;
    }
}

/* ===========================================
   ULTRA COMPACT OVERRIDES
   Keep this block last so price sections stay modest.
   =========================================== */

body {
    font-size: 14px;
    line-height: 1.5;
}

.nav-container {
    padding: 8px 24px;
}

.hero {
    padding: 78px 32px 34px;
}

.hero-container {
    max-width: 1020px;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
}

.title-main {
    font-size: clamp(28px, 3vw, 38px);
}

.title-accent {
    font-size: clamp(20px, 2.4vw, 27px);
}

.hero-description,
.section-subtitle,
.section-lead {
    font-size: 14px;
    line-height: 1.45;
}

.hero-benefits {
    margin-bottom: 16px;
}

.benefit-item {
    font-size: 13px;
}

.hero-form,
.contact-form-wrapper {
    padding: 18px;
}

.form-title {
    font-size: 18px;
}

.intake-form input,
.contact-form input,
.contact-form textarea {
    padding: 8px 11px;
    font-size: 13px;
}

.btn-primary,
.btn-secondary,
.btn-submit,
.btn-large,
.btn-xl,
.btn-yellow {
    padding: 9px 18px;
    font-size: 13px;
    min-height: 0;
}

section,
.prijzen-section,
.prijzen-section-bioclinics,
.vertrouwen-section,
.app-section,
.locaties-section,
.simulator-section,
.contact-section,
.referral-section {
    padding: 38px 32px;
}

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

.section-title,
.prijzen-section-bioclinics .section-title {
    font-size: clamp(22px, 2.2vw, 30px);
    margin-bottom: 8px;
}

.section-title::after {
    height: 3px;
    width: 54px;
}

.prijzen-grid,
.pricing-grid,
.steps-container,
.steps-container-4,
.voordelen-grid,
.steden-grid,
.prijzen-extra-info {
    gap: 16px;
}

.pakket-card,
.pakket-card-bio,
.step-card,
.voordeel-card,
.parent-card,
.stat-card,
.city-card,
.extra-info-card {
    padding: 18px;
    border-radius: 10px;
}

.pakket-card:nth-child(1),
.pakket-card-bio.featured {
    transform: none;
}

.pakket-card:hover,
.pakket-card-bio:hover {
    transform: translateY(-4px);
}

.pakket-header,
.pakket-content,
.pakket-card-bio .pakket-header,
.pakket-card-bio .pakket-content {
    padding: 18px;
}

.pakket-icon,
.step-icon,
.card-icon,
.voordeel-icon,
.pakket-card-bio .pakket-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 19px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.pakket-title,
.pakket-card-bio .pakket-title,
.step-card h3,
.voordeel-card h3,
.city-card h3,
.extra-info-card h3 {
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.pakket-description,
.pakket-card-bio .pakket-description,
.step-card p,
.voordeel-card p,
.city-card p,
.extra-info-card p,
.section-text {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 10px;
}

.pakket-price,
.price-display,
.pakket-card-bio .price-display {
    padding: 12px;
    margin: 12px 0;
    border-radius: 10px;
}

.price-amount,
.current-price,
.total-value,
.pakket-card-bio .current-price {
    font-size: 30px;
    line-height: 1;
}

.price-currency,
.price-period,
.old-price,
.discount-badge,
.pakket-badge {
    font-size: 11px;
}

.pakket-features,
.features-list {
    margin: 12px 0;
}

.pakket-features li,
.features-list li {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 7px;
}

.pakket-card-bio .btn-full,
.pakket-card .btn-full {
    margin: 12px 18px 18px;
}

.guarantee-box,
.savings-highlight,
.pricing-note {
    padding: 16px;
    margin: 20px auto;
    border-radius: 10px;
}

.contact-grid {
    gap: 24px;
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.contact-item {
    margin-bottom: 12px;
}

.contact-item i {
    width: 34px;
    height: 34px;
    font-size: 15px;
}

.video-container-large {
    max-width: 760px;
}

.how-video {
    max-height: 360px;
}

@media (max-width: 968px) {
    .hero {
        padding: 72px 18px 30px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    section,
    .prijzen-section,
    .prijzen-section-bioclinics,
    .vertrouwen-section,
    .app-section,
    .locaties-section,
    .simulator-section,
    .contact-section,
    .referral-section {
        padding: 32px 18px;
    }
}

@media (max-width: 640px) {
    .title-main {
        font-size: 28px;
    }

    .title-accent {
        font-size: 21px;
    }

    .pakket-card,
    .pakket-card-bio,
    .step-card,
    .voordeel-card,
    .parent-card,
    .stat-card,
    .city-card,
    .extra-info-card,
    .hero-form,
    .contact-form-wrapper {
        padding: 16px;
    }
}

/* FINAL SCALE DOWN - must stay at the very end */
body { font-size: 13px !important; }
.nav-container { padding: 6px 20px !important; }
.hero { padding: 64px 24px 24px !important; min-height: 0 !important; }
.hero-container { max-width: 940px !important; grid-template-columns: 1fr 280px !important; gap: 20px !important; }
.title-main { font-size: clamp(25px, 2.4vw, 32px) !important; }
.title-accent { font-size: clamp(18px, 1.8vw, 23px) !important; }
.hero-description, .section-subtitle, .section-lead, .section-text { font-size: 12.5px !important; line-height: 1.35 !important; }
.btn-primary, .btn-secondary, .btn-submit, .btn-large, .btn-xl, .btn-yellow { padding: 7px 13px !important; font-size: 12px !important; border-radius: 6px !important; min-height: 0 !important; }
section, .prijzen-section, .prijzen-section-bioclinics, .vertrouwen-section, .app-section, .locaties-section, .simulator-section, .contact-section, .referral-section { padding: 24px 24px !important; }
.section-container { max-width: 920px !important; }
.section-header { margin-bottom: 14px !important; }
.section-title, .prijzen-section-bioclinics .section-title, .vergelijking-section-bio .section-title, .professionals-section .section-title { font-size: clamp(19px, 1.8vw, 24px) !important; line-height: 1.12 !important; margin-bottom: 5px !important; }
.prijzen-grid, .steps-container, .steps-container-4, .voordelen-grid, .steden-grid, .prijzen-extra-info { gap: 10px !important; }
.pakket-card, .pakket-card-bio, .step-card, .voordeel-card, .parent-card, .stat-card, .city-card, .info-card, .extra-info-card, .hero-form, .contact-form-wrapper { padding: 12px !important; border-radius: 7px !important; }
.pakket-header-bio, .pakket-price-bio, .pakket-features-bio, .pakket-highlight-bio { padding: 9px 11px !important; }
.pakket-icon, .pakket-icon-bio, .step-icon, .card-icon, .voordeel-icon, .info-card i { width: 30px !important; height: 30px !important; min-width: 30px !important; font-size: 14px !important; margin-bottom: 6px !important; }
.pakket-title, .pakket-title-bio, .step-card h3, .voordeel-card h3, .city-card h3, .info-card h4, .extra-info-card h3 { font-size: 14px !important; line-height: 1.15 !important; margin-bottom: 4px !important; }
.pakket-description, .pakket-subtitle-bio, .pakket-description-bio, .step-card p, .voordeel-card p, .city-card p, .info-card p, .extra-info-card p { font-size: 11.5px !important; line-height: 1.3 !important; margin-bottom: 5px !important; }
.pakket-price, .pakket-price-bio, .price-display { padding: 8px !important; margin: 6px 0 !important; border-radius: 7px !important; }
.price-large, .price-amount, .current-price, .total-value, .vergelijk-price { font-size: 22px !important; line-height: 1 !important; }
.price-old .strikethrough { font-size: 16px !important; }
.price-label, .price-period, .price-condition, .original-price, .discount-badge, .pakket-badge, .pakket-badge-bio { font-size: 10px !important; }
.pakket-features, .pakket-features-bio, .features-list { margin: 6px 0 !important; }
.pakket-features-bio h4 { font-size: 11px !important; margin-bottom: 6px !important; }
.pakket-features li, .pakket-features-bio li, .features-list li { font-size: 11.5px !important; line-height: 1.25 !important; margin-bottom: 4px !important; gap: 6px !important; }
.pakket-card-bio .btn-full, .pakket-card .btn-full { margin: 7px 12px 12px !important; }
.intake-form input, .contact-form input, .contact-form textarea { padding: 6px 8px !important; font-size: 12px !important; border-radius: 5px !important; }
.savings-content { padding: 11px !important; gap: 10px !important; border-radius: 7px !important; }
.savings-icon { font-size: 24px !important; width: 28px !important; height: 28px !important; }
.savings-text h3 { font-size: 15px !important; margin-bottom: 4px !important; }
.savings-text p { font-size: 11.5px !important; line-height: 1.3 !important; }
@media (max-width: 968px) { .hero-container { grid-template-columns: 1fr !important; } }

/* Referral section requested layout */
.referral-section {
    background: var(--yellow) !important;
    padding: 24px !important;
}

/* Preview repair: readable spacing, clean headings and aligned highlights. */
.section-title::after,
.prijzen-section-bioclinics .section-title::after,
.vergelijking-section-bio .section-title::after,
.professionals-section .section-title::after {
    display: none !important;
}

.section-header {
    margin-bottom: 30px !important;
}

.section-title,
.prijzen-section-bioclinics .section-title,
.vergelijking-section-bio .section-title,
.professionals-section .section-title {
    font-size: clamp(26px, 3vw, 38px) !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
}

.section-subtitle,
.section-lead,
.section-text {
    font-size: 16px !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
}

section,
.prijzen-section,
.prijzen-section-bioclinics,
.vertrouwen-section,
.app-section,
.locaties-section,
.simulator-section,
.contact-section,
.referral-section {
    padding: 56px 32px !important;
}

.section-container {
    max-width: 1120px !important;
}

.steps-container-4,
.prijzen-grid,
.prijzen-grid-bioclinics,
.prijzen-extra-info {
    gap: 22px !important;
}

.savings-highlight {
    max-width: 860px !important;
    margin: 32px auto !important;
    padding: 0 !important;
}

.savings-content {
    display: grid !important;
    grid-template-columns: 76px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 28px 32px !important;
    border-radius: 14px !important;
    animation: none !important;
}

.savings-icon {
    width: 76px !important;
    height: 76px !important;
    display: grid !important;
    place-items: center !important;
    font-size: 38px !important;
    margin: 0 !important;
}

.savings-text {
    min-width: 0 !important;
    text-align: left !important;
}

.savings-text h3 {
    font-size: 22px !important;
    line-height: 1.25 !important;
    margin: 0 0 10px !important;
}

.savings-text p {
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.savings-amount,
.savings-amount strong {
    font-size: 24px !important;
}

@media (max-width: 720px) {
    section,
    .prijzen-section,
    .prijzen-section-bioclinics,
    .vertrouwen-section,
    .app-section,
    .locaties-section,
    .simulator-section,
    .contact-section,
    .referral-section {
        padding: 38px 18px !important;
    }

    .section-header {
        margin-bottom: 22px !important;
    }

    .section-title,
    .prijzen-section-bioclinics .section-title,
    .vergelijking-section-bio .section-title,
    .professionals-section .section-title {
        font-size: 25px !important;
    }

    .section-subtitle,
    .section-lead,
    .section-text {
        font-size: 14px !important;
    }

    .savings-content {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        padding: 24px 20px !important;
    }

    .savings-text {
        text-align: center !important;
    }
}

.referral-section::before,
.referral-section::after {
    display: none !important;
}

.referral-container {
    max-width: 920px !important;
    display: grid !important;
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 22px !important;
    align-items: center !important;
}

.referral-image {
    display: block !important;
}

.referral-image img {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14) !important;
}

.referral-content {
    text-align: left !important;
}

.referral-title {
    font-size: clamp(19px, 1.8vw, 24px) !important;
    line-height: 1.15 !important;
    margin-bottom: 8px !important;
}

.referral-description {
    max-width: none !important;
    font-size: 12.5px !important;
    line-height: 1.35 !important;
    margin: 0 0 10px !important;
}

.referral-benefits {
    justify-content: flex-start !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
}

.referral-benefit {
    padding: 8px 14px !important;
    border-radius: 7px !important;
}

.referral-benefit.highlight {
    transform: none !important;
}

.benefit-number {
    font-size: 22px !important;
    margin-bottom: 2px !important;
}

.referral-benefit p {
    font-size: 11px !important;
}

.referral-steps {
    justify-content: flex-start !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
}

.referral-step {
    gap: 5px !important;
}

.step-circle {
    width: 26px !important;
    height: 26px !important;
    font-size: 13px !important;
}

.referral-step p {
    max-width: 95px !important;
    font-size: 10.5px !important;
    line-height: 1.2 !important;
}

.step-arrow {
    font-size: 16px !important;
}

.referral-note {
    margin-top: 8px !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
}

@media (max-width: 760px) {
    .referral-container {
        grid-template-columns: 1fr !important;
    }

    .referral-image img {
        max-height: 220px !important;
    }
}

/* Temporary fictional locations, no map yet */
.locaties-content-simple {
    display: block !important;
}

.locaties-content-simple .locaties-steden {
    max-width: 920px !important;
    margin: 0 auto !important;
}

/* Main site reset after over-compression */
body {
    font-size: 16px !important;
}

.nav-container {
    padding: 14px 28px !important;
}

.hero {
    min-height: 92vh !important;
    padding: 132px 32px 76px !important;
    background-position: center center !important;
    background-attachment: scroll !important;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.6) 42%, rgba(0, 0, 0, 0.48) 100%) !important;
}

.hero-container {
    max-width: 1240px !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 430px) !important;
    gap: 54px !important;
    align-items: center !important;
}

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

.title-small {
    font-size: 15px !important;
    margin-bottom: 14px !important;
}

.title-main {
    font-size: clamp(42px, 5vw, 64px) !important;
    line-height: 1.06 !important;
    margin-bottom: 12px !important;
}

.title-accent {
    font-size: clamp(22px, 2.9vw, 34px) !important;
    line-height: 1.22 !important;
}

.hero-description {
    font-size: 18px !important;
    line-height: 1.72 !important;
    max-width: 640px !important;
    margin-bottom: 30px !important;
}

.hero-benefits {
    gap: 16px !important;
    margin-bottom: 32px !important;
}

.benefit-item {
    font-size: 16px !important;
    line-height: 1.45 !important;
}

.benefit-item i {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    font-size: 14px !important;
    margin-bottom: 0 !important;
    border-radius: 50% !important;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary,
.btn-submit,
.btn-large,
.btn-xl,
.btn-yellow {
    padding: 14px 22px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
}

.hero-form-wrapper {
    width: 100% !important;
}

.hero-form {
    padding: 32px !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24) !important;
}

.form-title {
    font-size: 27px !important;
    line-height: 1.18 !important;
}

.form-subtitle,
.form-note {
    font-size: 14px !important;
}

.intake-form input,
.contact-form input,
.contact-form textarea {
    padding: 14px 16px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
}

section,
.prijzen-section,
.prijzen-section-bioclinics,
.vertrouwen-section,
.app-section,
.locaties-section,
.simulator-section,
.contact-section,
.referral-section {
    padding: 72px 32px !important;
}

.section-container {
    max-width: 1240px !important;
}

.section-header {
    margin-bottom: 34px !important;
}

.section-title,
.prijzen-section-bioclinics .section-title,
.vergelijking-section-bio .section-title,
.professionals-section .section-title {
    font-size: clamp(34px, 4vw, 48px) !important;
    line-height: 1.08 !important;
    margin-bottom: 10px !important;
}

.section-subtitle,
.section-lead,
.section-text {
    font-size: 18px !important;
    line-height: 1.6 !important;
}

.prijzen-grid,
.pricing-grid,
.steps-container,
.steps-container-4,
.voordelen-grid,
.steden-grid,
.prijzen-extra-info {
    gap: 24px !important;
}

.pakket-card,
.pakket-card-bio,
.step-card,
.voordeel-card,
.parent-card,
.stat-card,
.city-card,
.info-card,
.extra-info-card {
    padding: 26px !important;
    border-radius: 18px !important;
}

.savings-content {
    display: grid !important;
    grid-template-columns: 120px 1fr !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 26px 30px !important;
    border-radius: 18px !important;
}

.savings-icon {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    font-size: 32px !important;
    margin: 0 auto !important;
}

.savings-text h3 {
    font-size: 20px !important;
    margin-bottom: 8px !important;
}

.savings-text p {
    font-size: 17px !important;
    line-height: 1.55 !important;
}

.referral-section {
    background: linear-gradient(135deg, #ffd84f 0%, #ffe885 48%, #ffd84f 100%) !important;
    padding: 84px 32px !important;
}

.referral-container {
    max-width: 1180px !important;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
    gap: 36px !important;
    align-items: center !important;
}

.referral-image img {
    aspect-ratio: 4 / 3 !important;
    min-height: 320px !important;
    border-radius: 20px !important;
}

.referral-title {
    font-size: clamp(32px, 3.4vw, 44px) !important;
    line-height: 1.1 !important;
    margin-bottom: 14px !important;
}

.referral-description {
    font-size: 18px !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
}

.referral-benefits {
    gap: 14px !important;
    margin-bottom: 24px !important;
}

.referral-benefit {
    padding: 14px 18px !important;
    border-radius: 14px !important;
}

.benefit-number {
    font-size: 34px !important;
    margin-bottom: 6px !important;
}

.referral-benefit p {
    font-size: 14px !important;
}

.referral-steps {
    gap: 18px !important;
    margin-bottom: 24px !important;
}

.step-circle {
    width: 42px !important;
    height: 42px !important;
    font-size: 18px !important;
}

.referral-step p {
    max-width: 130px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
}

.step-arrow {
    font-size: 24px !important;
}

.referral-note {
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.footer {
    padding: 72px 32px 28px !important;
}

.footer-container {
    max-width: 1240px !important;
}

.footer-grid {
    gap: 34px !important;
    margin-bottom: 36px !important;
}

.footer-col h4 {
    font-size: 18px !important;
}

.footer-col p,
.footer-col ul li a,
.footer-bottom {
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.footer-referral-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 216, 79, 0.26);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 216, 79, 0.18), rgba(255, 255, 255, 0.03));
}

.footer-referral-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-referral-copy strong {
    font-size: 18px;
    color: var(--white);
}

.footer-referral-copy span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-referral-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--yellow);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .hero-content {
        max-width: none !important;
    }

    .referral-container {
        grid-template-columns: 1fr !important;
    }

    .footer-referral-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .nav-container {
        padding: 10px 18px !important;
    }

    .hero {
        min-height: auto !important;
        padding: 112px 18px 42px !important;
    }

    section,
    .prijzen-section,
    .prijzen-section-bioclinics,
    .vertrouwen-section,
    .app-section,
    .locaties-section,
    .simulator-section,
    .contact-section,
    .referral-section {
        padding: 48px 18px !important;
    }

    .section-title,
    .prijzen-section-bioclinics .section-title,
    .vergelijking-section-bio .section-title,
    .professionals-section .section-title {
        font-size: clamp(28px, 8vw, 36px) !important;
    }

    .section-subtitle,
    .section-lead,
    .section-text,
    .hero-description,
    .referral-description {
        font-size: 16px !important;
    }

    .hero-form,
    .pakket-card,
    .pakket-card-bio,
    .step-card,
    .voordeel-card,
    .parent-card,
    .stat-card,
    .city-card,
    .info-card,
    .extra-info-card {
        padding: 20px !important;
    }

    .savings-content {
        grid-template-columns: 1fr !important;
        justify-items: start !important;
        padding: 22px 20px !important;
    }

    .referral-image img {
        min-height: 240px !important;
    }
}

.locaties-content-simple .locaties-steden h3 {
    font-size: 17px !important;
    margin-bottom: 12px !important;
}

.locaties-content-simple .steden-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
}

.locaties-content-simple .stad-card {
    padding: 12px !important;
    border-radius: 7px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06) !important;
}

.locaties-content-simple .stad-card i {
    font-size: 15px !important;
    margin-bottom: 6px !important;
}

.locaties-content-simple .stad-card h4 {
    font-size: 13px !important;
    line-height: 1.2 !important;
}

.locaties-content-simple .stad-card p {
    font-size: 11px !important;
    line-height: 1.25 !important;
    margin-bottom: 7px !important;
}

.locaties-content-simple .stad-status {
    padding: 3px 7px !important;
    font-size: 9.5px !important;
    border-radius: 9px !important;
}

.locaties-content-simple .locaties-cta {
    max-width: 520px !important;
    margin: 0 auto !important;
    padding: 12px !important;
    border-radius: 7px !important;
}

.locaties-content-simple .locaties-cta p {
    font-size: 11.5px !important;
    margin-bottom: 6px !important;
}

@media (max-width: 760px) {
    .locaties-content-simple .steden-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    .locaties-content-simple .steden-grid {
        grid-template-columns: 1fr !important;
    }
}
