/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Text:wght@200..700&display=swap');

/* --- Kleurvariabelen --- */
:root {
    --kleur-primair: #001932;
    --kleur-primair-licht: #334a61; /* Nieuwe, lichtere kleur voor de progress bar */
    --kleur-secundair: #0c74ff; /* Actiekleur */
    --kleur-tertiair: #f0f0f0;
    --kleur-wit: #ffffff;
}

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

/* --- Algemene Stijlen --- */
body {
    margin: 0;
    font-family: "Stack Sans Text", sans-serif;
    color: var(--kleur-primair);
}

/* --- Header / Navigatie (Fixed) --- */
/* --- Header / Navigatie (Fixed) --- */
.main-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1500px;
    z-index: 1000;
    
    /* Standaard (top) staat: transparant en full-width */
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    
    /* Soepele overgang */
    transition: all 0.3s ease;
}

/* Stijl die wordt toegevoegd na het scrollen (via JavaScript) */
.main-header.scrolled {
    top: 12px;
    width: 95%;
    max-width: 1100px;
    
    /* Frosted glass effect */
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Rand en schaduw voor diepte */
    border-radius: 20px; /* Maakt er een pil-vorm van */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 6px 6px; /* Padding iets verlaagd voor de pil-vorm */
    font-size: 16px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: var(--kleur-wit);
    border-radius: 12px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 48px;
}

.main-nav a {
    color: var(--kleur-primair);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--kleur-secundair);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-actions .btn {
    font-size: 14px;
    padding: 10px 20px;
}

/* --- Hamburger Menu & Mobiele Navigatie --- */
.hamburger-menu {
    display: none; 
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001; /* Zorgt dat het boven de mobiele nav blijft */
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background-color: var(--kleur-primair);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Animaties voor de hamburger naar een 'X' */
.hamburger-menu.is-active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
    display: none; /* Standaard verborgen */
    position: fixed;
    top: 0;
    left: 0; /* Startpunt voor transformatie */
    width: 100%;
    height: 100vh; /* Gebruik vh voor volledige viewport hoogte */
    background-color: var(--kleur-wit); /* WITTE achtergrond */
    z-index: 2000;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Alleen transform animeren */
    flex-direction: column;
    justify-content: center;
    /* Start verborgen (buiten het scherm, rechts) */
    transform: translateX(100%); 
}

.mobile-nav.is-active {
    /* Actieve staat (schuif in beeld) */
    transform: translateX(0%);
}

.mobile-nav nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.mobile-nav nav a {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--kleur-primair); /* DONKERE tekst voor op de witte achtergrond */
    text-decoration: none;
    padding: 12px 0;
    display: block;
    transition: color 0.2s ease;
}

.mobile-nav nav a:hover {
    color: var(--kleur-secundair);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
    padding: 0 24px;
}

.mobile-nav-actions .btn {
    text-align: center;
    padding: 14px;
    font-size: 16px;
}

/* Media Query voor Mobiele Header Aanpassingen */
@media (max-width: 992px) {
    /* Verberg desktop navigatie en toon hamburger */
    .main-nav, .header-actions {
        display: none;
    }
    .hamburger-menu {
        display: flex;
    }
    
    /* Mobiele header stijl aanpassen */
    .main-header {
        /* Verwijder frosted glass op mobiel */
        background-color: transparent; 
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        
        /* Zorg dat het de volledige breedte pakt */
        width: 100%;
        top: 0;
        border-radius: 0;
    }
    
    .header-container {
        padding: 0;
    }

    .logo {
        margin: 12px;
    }

    .hamburger-menu {
        margin-right: 12px;
    }

    .mobile-nav{
        display: flex;
    }
}

/* --- Hero Sectie Stijlen --- */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: calc(100vh - 124px); /* Zorgt dat het altijd het scherm vult */
    padding: 120px 4rem 4rem 4rem; /* Meer padding boven voor de header */
    gap: 4rem;
    box-sizing: border-box;
}

.hero-content {
    flex-basis: 45%;
    max-width: 550px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* --- Hero Checklist Stijlen --- */
.hero-checklist {
    list-style: none; /* Verwijder standaard bolletjes */
    padding-left: 0;
    margin-bottom: 2.5rem; /* Zelfde marge als de oude paragraaf */
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Ruimte tussen de checklist items */
}

.hero-checklist li {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--kleur-primair);
    line-height: 1.5;
}

.hero-checklist li::before {
    content: '\f058'; /* Font Awesome check-circle (standaard) */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--kleur-secundair); /* Gebruik de accentkleur */
    font-size: 1.2rem;
    margin-right: 0.75rem; /* Ruimte tussen icoon en tekst */
    width: 24px; /* Zorgt voor gelijke uitlijning */
    text-align: center;
}

/* Icoon voor het tweede item (globe) */
.hero-checklist li:nth-child(2)::before {
    content: '\f0ac'; /* Font Awesome globe icoon */
}

/* Icoon voor het derde item (klok) */
.hero-checklist li:nth-child(3)::before {
    content: '\f017'; /* Font Awesome clock icoon */
    font-weight: 400; /* Dit icoon ziet er beter uit in 'regular' gewicht */
}


/* --- Algemene Knop Stijlen --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn:hover{
    cursor: pointer;
}

/* --- Primaire Knop --- */
.btn-primary {
    background-color: var(--kleur-secundair);
    color: var(--kleur-wit);
}

.btn-primary:hover {
    background-color: #006ce8;
}

/* --- Secundaire Knop --- */
.btn-secondary {
    background-color: var(--kleur-tertiair);
    color: var(--kleur-primair);
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}


/* --- Hero Afbeelding Stijlen --- */
.hero-image-container {
    flex-basis: 55%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 600px; /* Pas dit eventueel aan */
    height: auto;
    border-radius: 16px; /* Optioneel: afgeronde hoeken */
}

/* --- Hero Mockup Stijlen --- */
.mockup-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: clamp(6px, 1.8vw, 24px);
    color: var(--kleur-primair);
    font-weight: 200;
    transition: all 0.3s ease;
}

.mockup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                inset 0 5px 5px -2px rgba(255, 255, 255, 0.3);
}

.chat-mockup {
    bottom: 10%;
    left: -5%;
    width: clamp(150px, 18vw, 250px);
}

.chat-bubble {
    padding: clamp(8px, 1vw, 12px) clamp(12px, 1.2vw, 16px);
    border-radius: 18px;
    margin-bottom: 10px;
    max-width: 85%;
    line-height: 1.5;
    font-size: clamp(10px, 1vw, 13px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.chat-bubble.user {
    background-color: var(--kleur-wit);
    color: var(--kleur-primair);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    margin-left: auto;
}

.chat-bubble.bot {
    background: rgba(255, 255, 255, 0.15);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    backdrop-filter: blur(8px);
}

/* --- Stats Mockup Stijlen --- */
.stats-mockup {
    top: 5%;
    right: -5%;
    width: clamp(100px, 13vw, 180px);
    padding: clamp(16px, 1.5vw, 20px);
    text-align: center;
}

.stats-mockup h4 {
    margin: 0 0 16px 0;
    font-weight: 500;
    text-align: center;
    font-size: clamp(14px, 1.2vw, 16px);
}

.stat-item {
    margin: 12px 0;
}

.stat-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: clamp(12px, 1.1vw, 14px);
    margin-bottom: 8px;
}

.stat-label .fa-comments { color: #0ca4ff; }
.stat-label .fa-bullseye { color: #4dd7a3; }

.stat-number {
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1;
}

.stat-divider {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    margin: 16px auto;
    width: 70%;
}

.ai-analysis-mockup {
    bottom: -5%;
    right: 15%;
    width: clamp(150px, 17vw, 240px);
    display: flex;
    gap: clamp(10px, 1.3vw, 16px);
    align-items: flex-start;
}

.ai-analysis-mockup .icon {
    font-size: clamp(22px, 2vw, 26px); /* Iets groter voor betere zichtbaarheid */
    color: var(--kleur-secundair);
    flex-shrink: 0;
    margin-top: 0; /* Kan meestal op 0 voor betere verticale centrering */
    width: 30px; /* Vaste breedte voor consistentie */
    text-align: center; /* Centreer het icoon binnen de div */
}

.ai-analysis-mockup h4 {
    margin: 0 0 6px 0;
    font-weight: 500;
    font-size: clamp(14px, 1.2vw, 16px);
}

.ai-analysis-mockup p {
    margin: 0;
    font-size: clamp(12px, 1vw, 13px);
    line-height: 1.5;
}

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

.mockup-card {
    animation: fadeInUp 0.8s ease-out;
}

/* --- Logo Strip Stijlen --- */
.logo-strip {
    background-color: var(--kleur-wit);
    width: 100%;
    padding: 48px 4rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    flex-shrink: 0; /* Voorkomt dat de strip krimpt */
}

.logo-strip-text {
    color: var(--kleur-primair);
    opacity: 0.4;
    font-weight: 200;
    white-space: nowrap;
    margin: 0;
}

.logos {
    display: flex;
    align-items: center;
    gap: 48px;
}

.logos img {
    height: 30px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}



/* --- Media Query voor Mobiele Apparaten --- */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 1.5rem 4rem 1.5rem; /* Padding aanpassen */
    }

    .hero-content {
        order: 1; 
        margin-top: 0;
    }

    .hero-image-container {
        order: 2; 
        width: 100%;
        position: relative; /* Noodzakelijk om mockups hierbinnen te positioneren */
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-checklist li {
        font-size: 1rem;
    }

    .hero-checklist li::before {
        font-size: 1rem;
    }

    /* --- Mockup Aanpassingen voor Mobiel --- */
    .mockup-card {
        text-align: left;
        position: absolute;
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); /* Iets subtielere schaduw */
    }

    .chat-mockup {
        bottom: 5%;
        left: 0%;
        background: none;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
    }
    
    .chat-bubble {
        padding: 8px 12px;
    }

    .chat-bubble.bot {
        background: rgba(255, 255, 255, 0.5);
    }

    .stats-mockup {
        text-align: center;
        right: -2%;
    }
    .ai-analysis-mockup {
        right: 0%;
    }

    .logo-strip {
        /* Verander de layout naar verticaal */
        flex-direction: column;
        
        /* Pas de padding aan voor mobiele schermen */
        padding: 48px 1.5rem; 
        
        /* Pas de ruimte tussen de tekst en de logo's aan */
        gap: 32px; 
    }

    .logo-strip-text {
        /* Zorgt ervoor dat de tekst netjes in het midden staat */
        white-space: normal;
        text-align: center;
    }

    .logos {
        /* Sta toe dat logo's naar de volgende regel gaan */
        flex-wrap: wrap; 
        
        /* Centreer de logo's als ze wrappen */
        justify-content: center; 
        
        /* Pas de ruimte tussen de logo's aan */
        gap: 40px; 
    }
}

@media (max-width: 550px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .stats-mockup {
        display: none;;
    }
    .ai-analysis-mockup {
        display: none;
    }
}

/* --- Hoe Het Werkt Sectie --- */
#hoe-het-werkt {
    padding: 100px 4rem;
    background-color: #f9f9f9; /* Een lichte achtergrond om de sectie te onderscheiden */
    text-align: center;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

#hoe-het-werkt h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #555;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.stappen-container {
    display: flex;
    flex-direction: column;
    gap: 5rem; /* Ruimte tussen de stappen */
}

.stap-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

/* Reverse layout voor de even stappen */
.stap-item.reverse {
    flex-direction: row-reverse;
}

.stap-tekst, .stap-video {
    flex: 1; /* Zorgt ervoor dat beide kolommen even breed zijn */
}

.stap-tekst {
    position: relative;
    padding-left: 20px;
}

.stap-nummer {
    position: absolute;
    left: -40px;
    top: -40px;
    font-size: 6rem;
    font-weight: 700;
    color: var(--kleur-tertiair);
    z-index: 0;
}

.stap-tekst h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.stap-tekst p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.stap-video video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* --- Video Play/Pause Toggle Stijlen --- */
.video-container {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.video-controls {
    opacity: 0.5;
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.play-pause-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    padding: 0;
    font-size: 14px;
}

.video-controls:hover{
    transform: scale(1.1);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg); /* Start de voortgangsbalk bovenaan */
    z-index: 2;
}

.progress-ring__circle {
    stroke-linecap: round;
}

/* Media Query voor Mobiel */
@media (max-width: 992px) {
    #hoe-het-werkt {
        padding: 80px 1.5rem;
    }

    .stap-item, .stap-item.reverse {
        flex-direction: column; /* Alles onder elkaar op mobiel */
        gap: 2rem;
    }

    #hoe-het-werkt h2 {
        font-size: 2.2rem;
    }

    .section-subtitle {
        margin-bottom: 3rem;
    }

    .stap-tekst {
        padding-left: 0;
        text-align: center;
    }

    .stap-nummer {
        /* Verberg het grote nummer op mobiel voor een schonere look */
        display: none;
    }
    
    .stap-tekst h3 {
        font-size: 1.8rem;
    }
}

/* --- Functionaliteiten Sectie (VOLLEDIG VERVANGEN) --- */
#functionaliteiten {
    padding: 100px 4rem;
    background-color: var(--kleur-wit);
}

#functionaliteiten h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* Pill Navigatie */
.pill-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-btn {
    position: relative; /* Noodzakelijk voor het ::before pseudo-element */
    z-index: 1; /* Zorgt dat de knop 'boven' de vulling blijft */
    overflow: hidden; /* Zorgt dat de vulling binnen de ronde randen blijft */
    background-color: var(--kleur-tertiair);
    color: var(--kleur-primair);
    border: none;
    padding: 12px 24px;
    border-radius: 99px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pill-btn:hover {
    background-color: #e0e0e0;
}

.pill-btn.active {
    background-color: var(--kleur-primair);
    color: var(--kleur-wit);
}

/* De progressiebalk-animatie */
.pill-btn.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; /* Start op 100% voor de animatie */
    background-color: var(--kleur-primair-licht);
    z-index: -1; /* Achter de tekst en het icoon */
    
    /* Koppel de animatie */
    animation: fillPill 5s linear forwards;
}

@keyframes fillPill {
    from { width: 0%; }
    to { width: 100%; }
}

/* Pauzeer de animatie wanneer deze class wordt toegevoegd */
.pill-btn.active.animation-paused::before {
    animation-play-state: paused;
}

.pill-btn i {
    opacity: 0;
    margin-left: -25px;
    transition: all 0.2s ease;
}

.pill-btn.active i {
    opacity: 1;
    margin-left: 0;
}

/* Content Stijlen */
.content-item {
    min-height: 500px;
    display: none; /* Standaard verborgen */
    align-items: center;
    gap: 5rem;
    animation: fadeIn 0.5s ease;
}

.content-item.active {
    display: flex; /* Alleen de actieve wordt getoond */
}

.content-tekst, .content-afbeelding {
    flex: 1;
}

.content-icoon {
    font-size: 1.5rem;
    color: var(--kleur-secundair);
    background-color: #e7f1ff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.content-tekst h3 {
    text-align: left;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-tekst p {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 2rem;
}

.content-afbeelding img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Checklist binnen de features */
.feature-checklist {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-checklist li {
    font-weight: 300;
    display: flex;
    align-items: center;
}

.feature-checklist li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--kleur-secundair);
    margin-right: 0.75rem;
}

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

/* Verberg de nieuwe elementen standaard op desktop */
.indicator-container,
.nav-arrow {
    display: none;
}

/* De media query die alles activeert voor mobiel */
@media (max-width: 992px) {
    /* Toon de nieuwe containers op mobiel */
    .functionaliteiten-nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem; /* Ruimte voor de indicator */
    }

    .indicator-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-bottom: 3rem; /* Ruimte onder de indicator */
    }

    /* Wrapper om de overflow te verbergen */
    .pill-nav-wrapper {
        flex-grow: 1;
        overflow: hidden;
    }

    /* Pas de pill-nav aan voor de sliding animatie */
    #functionaliteiten .pill-nav {
        display: flex;
        flex-wrap: nowrap; /* Zorgt dat de knoppen op één lijn blijven */
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 0; /* Margin wordt nu door de indicator-container afgehandeld */
        transition: transform 0.4s ease-in-out; /* De animatie! */
    }

    /* Zorg dat knoppen de juiste grootte behouden */
    #functionaliteiten .pill-btn {
        flex-shrink: 0; /* Voorkomt dat knoppen krimpen */
        width: auto;
        height: auto;
        padding: 12px 24px;
        font-size: 1rem;
    }

    /* Styling voor de pijltjes */
    .nav-arrow {
        display: block; /* Maak de pijltjes zichtbaar */
        flex-shrink: 0;
        background-color: var(--kleur-tertiair);
        border: none;
        color: var(--kleur-primair);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }
    .nav-arrow:hover {
        background-color: #e0e0e0;
    }
    .nav-arrow.prev {
        margin-right: 12px;
    }
    .nav-arrow.next {
        margin-left: 12px;
    }

    /* Styling voor de indicator */
    .indicator-dot {
        width: 10px;
        height: 10px;
        background-color: #d0d0d0;
        border-radius: 50%;
        transition: all 0.4s ease;
    }
    .indicator-dot.active {
        background-color: var(--kleur-primair);
        width: 30px; /* De actieve 'pil' vorm */
        border-radius: 99px;
    }
}

/* Media Query voor Mobiel (AANGEPAST) */
@media (max-width: 992px) {
    #functionaliteiten {
        padding: 80px 1.5rem;
    }

    #functionaliteiten h2 {
        font-size: 2.2rem;
    }

    .content-item, .content-item.active {
        flex-direction: column;
        gap: 2.5rem;
    }

    .content-afbeelding {
        order: 1;
        width: 100%;
    }

    .content-tekst h3 {
        font-size: 1.8rem;
    }

    /* Schakel animatie uit op mobiel */
    .pill-btn.active::before {
        animation: none;
    }
}

/* START: Te vervangen code in style.css */

/* --- Voordelen Sectie --- */
#voordelen {
    padding: 100px 4rem;
    background-color: var(--kleur-wit);
    overflow-x: clip; 
        position: relative; /* Voeg dit toe */
}

#voordelen::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 40%; /* Past zich aan aan de schermgrootte */
    background: var(--kleur-wit);
    z-index: 4;
    pointer-events: none;
}

#voordelen .section-container {
    flex: 0 0 30%; /* Iets minder ruimte voor de tekst */
    max-width: 400px;
    margin-top: -50px;
    text-align: left;
    z-index: 5; /* Zorgt dat de tekst boven de overlay blijft */
}

.benefits-layout-container {
    position: relative; /* Nodig voor het pseudo-element */
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}

#voordelen h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

#voordelen .section-subtitle {
    margin: 0;
}

/* --- De wrapper voor de carrousel --- */
.carousel-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Verwijder of pas de bestaande :before aan */
.carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 100px; /* Vergroot de breedte voor betere dekking */
    left: 0;
    background: linear-gradient(to right, var(--kleur-wit) 40%, transparent);
    pointer-events: none;
}


.benefits-carousel-container {
    position: relative;
}

.benefits-track {
    display: flex;
    gap: 1rem;
}

.benefit-slide {
    flex: 0 0 60%;
    min-width: 0;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
}

.benefit-slide.spacer-slide {
  flex: 0 0 20%; /* Kleiner dan normale slides (60%) */
  min-width: 0;
  pointer-events: none; /* Niet klikbaar */
  visibility: hidden; /* Volledig onzichtbaar */
}


/* De kaart-styling zelf (ongewijzigd) */
.benefit-card {
    border-radius: 16px; display: flex; flex-direction: column;
    height: 100%; transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden;
}
.benefit-card h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 1rem; margin-top: 0; line-height: 1.3; }
.benefit-card p { font-size: 1rem; font-weight: 300; line-height: 1.6; margin-bottom: 0; }
.benefit-content { flex-grow: 1; padding: 24px;}
.benefit-image { height: 300px;}
.benefit-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.benefit-card-beige { background: linear-gradient(135deg, #d4c4b0 0%, #e8ddd0 100%); color: var(--kleur-primair); }
.benefit-card-purple { background: linear-gradient(135deg, #d8d4e8 0%, #e6e3f0 100%); color: var(--kleur-primair); }
.benefit-card-light { background: linear-gradient(135deg, #f8f8f8 0%, #dfdfdf 100%); color: var(--kleur-primair); }
.benefit-card-blue { background: linear-gradient(135deg, #6b9ff5 0%, #8ab4f8 100%); color: white; }

/* Pijltjes (aangepaste positionering) */
.benefits-carousel-container .nav-arrow {
    display: block; position: absolute; top: 50%; transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05); color: var(--kleur-primair);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 50px; height: 50px; border-radius: 50%; font-size: 1.2rem;
    cursor: pointer; transition: all 0.2s ease; z-index: 10;
}
.benefits-carousel-container .nav-arrow:hover { background-color: white; transform: translateY(-50%) scale(1.1); }
.benefits-carousel-container .nav-arrow.prev { left: 1rem; /* Binnen de zichtbare ruimte */ }
.benefits-carousel-container .nav-arrow.next { right: 1rem; /* Binnen de zichtbare ruimte */ }

/* Indicator Stijl (ongewijzigd) */
#voordelen .indicator-container {
    display: flex; justify-content: center; align-items: center;
    gap: 8px; margin-top: 2rem; width: 100%;
}
#voordelen .indicator-dot {
  position: relative;
  overflow: hidden;
  background-color: #d0d0d0;
  border: none;
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
}
#voordelen .indicator-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--kleur-primair);
  border-radius: 50%;
  transition: width 0.2s ease;
}
#voordelen .indicator-dot.active {
  width: 30px;
  border-radius: 99px;
  background-color: #d0d0d0; /* Behoud de lichte achtergrond */
}
/* Animatie voor de actieve indicator */
#voordelen .indicator-dot.active::before {
  border-radius: 99px; /* Past zich aan aan de pill-vorm */
  animation: fillIndicator 5s linear forwards;
}

/* --- PAARSE KAART: Content onderaan --- */
#voordelen .benefit-card-purple {
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Content naar beneden */
  min-height: 450px;
  height: 100%; /* Zorgt dat de kaart de volledige hoogte van de slide inneemt */
}

#voordelen .benefit-card-purple .benefit-content {
  position: relative;
  z-index: 2;
  background: none;
  padding: 24px;
  flex: 0 0 auto; /* BELANGRIJK: Laat het NIET groeien */
  margin-top: auto; /* Extra zekerheid: duwt het naar beneden */
}

#voordelen .benefit-card-purple .benefit-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 1;
  border-radius: 16px;
}

#voordelen .benefit-card-purple .benefit-image img {
  object-position: top;
  border-radius: 16px;
}

/* Gradient van onder naar boven */
#voordelen .benefit-card-purple .benefit-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: 2;
  background: linear-gradient(to top, #e6e3f0 30%, rgba(230, 227, 240, 0) 100%);
  pointer-events: none;
  border-radius: 0 0 16px 16px;
}

/* --- BEIGE KAART: Content onderaan --- */
#voordelen .benefit-card-beige {
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 450px;
  height: 100%;
}

#voordelen .benefit-card-beige .benefit-content {
  position: relative;
  z-index: 2;
  background: none;
  padding: 24px;
  flex: 0 0 auto; /* BELANGRIJK: Laat het NIET groeien */
  margin-top: auto; /* Extra zekerheid */
}

#voordelen .benefit-card-beige .benefit-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 1;
  border-radius: 16px;
}

#voordelen .benefit-card-beige .benefit-image img {
  object-position: top;
  border-radius: 16px;
}

/* Gradient van onder naar boven */
#voordelen .benefit-card-beige .benefit-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: 2;
  background: linear-gradient(to top, #e8ddd0 30%, rgba(232, 221, 208, 0) 100%);
  pointer-events: none;
  border-radius: 0 0 16px 16px;
}

.benefit-card:not(.benefit-card-purple):not(.benefit-card-beige) .benefit-image {
    padding: 24px; /* Voegt ruimte toe binnen de afbeelding-container */
    box-sizing: border-box; /* Zorgt ervoor dat de padding de totale hoogte niet beïnvloedt */
}

.benefit-card:not(.benefit-card-purple):not(.benefit-card-beige) .benefit-image img {
    border-radius: 12px; /* Afronding voor de afbeelding */
    height: 100%; /* Zorgt dat de afbeelding de overgebleven ruimte vult */
    width: 100%;
}


@keyframes fillIndicator {
  from { width: 0%; }
  to { width: 100%; }
}

/* --- Mobiele aanpassingen --- */
@media (max-width: 1000px) {
    .benefits-layout-container {
        flex-direction: column;
        gap: 0;
    }
    #voordelen .section-container {
        text-align: center; max-width: 1100px; margin: 0 1.5rem;
    }
    #voordelen::before {
        display: none;
    }
    .carousel-wrapper {
        width: 100vw; margin-top: 3rem;
    }
    .carousel-wrapper::before {
        display: none; /* Geen gradient op tablet/mobiel */
    }
    .benefit-slide {
        flex: 0 0 80%; /* Iets smaller op tablet */
        padding: 0 0.5rem;
    }
    .carousel-wrapper::before {
        display: none;
    }
}

@media (max-width: 992px) {
    #voordelen { padding: 80px 0; }
    #voordelen h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .benefit-slide { flex: 0 0 90%; /* Bijna volledig op mobiel */ }
}

/* START: Nieuwe CSS voor de Dashboard Sectie (Light Theme) */

#dashboard-features {
    padding: 100px 4rem;
    background-color: #f9f9f9;
}

#dashboard-features h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-align: center;
}

#dashboard-features .section-subtitle {
    margin-bottom: 4rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#dashboard-features .section-container {
    max-width: 1100px;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    grid-template-areas:
        "large small-top"
        "large small-bottom"
        "wide wide";
}

.card {
    background-color: var(--kleur-wit);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Specifieke styling per kaarttype */
.card-large {
    grid-area: large;
    position: relative;
    justify-content: flex-end;
    min-height: 200px;
}

.card-small {
    justify-content: space-between;
}
.card-small:nth-of-type(2) { grid-area: small-top; }
.card-small:nth-of-type(3) { grid-area: small-bottom; }

.card-wide {
    grid-area: wide;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.card-content {
    flex-grow: 1;
    text-align: left; /* Zorgt voor linkse uitlijning */
}

.card-large .card-content {
    position: relative;
    z-index: 2;
}

.card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--kleur-primair);
}

.card p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    color: #555;
    max-width: 500px;
}

/* Afbeeldingen styling */
.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 16px;
}

/* Witte gradient overlay voor leesbaarheid op de grote kaart */
.card-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0));
    z-index: 1;
    border-radius: 0 0 16px 16px;
}

.card-image-container {
    height: 200px;
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.card-wide .card-image-container {
    margin-top: 0;
    flex-shrink: 0;
    width: 60%;
    background-color: #f0f0f0;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.report-bubbles-container {
    position: absolute;
    top: 55%; /* Start lager om onder de gradient te beginnen */
    left: 2rem;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.report-bubble {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.report-bubble p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--kleur-primair);
}

.report-bubble strong {
    font-weight: 500; /* Maakt de titel iets zwaarder */
}


/* --- Media Queries voor Mobiel --- */
@media (max-width: 992px) {
    #dashboard-features {
        padding: 80px 1.5rem;
    }

    #dashboard-features h2 {
        font-size: 2.2rem;
    }

    .main-grid {
        grid-template-columns: 1fr; /* Eén kolom */
        grid-template-areas:
            "large"
            "small-top"
            "small-bottom"
            "wide"; /* Alles onder elkaar */
    }

    .card-wide {
        flex-direction: column; /* Stapel content en afbeelding */
    }
    
    .card-wide .card-image-container {
        width: 100%;
        margin-top: 2rem;
    }

    .report-bubbles-container {
        display: none;
    }
}

/* START: CTA Sectie */

#cta-section {
    padding: 100px 4rem;
}

.cta-container {
    max-width: 1000px;
    margin: auto;
    padding: 5rem 3rem;
    border-radius: 24px;
    text-align: center;
    color: var(--kleur-wit);
    background: linear-gradient(145deg, #001932 0%, #0c3d6e 100%); /* Standaard gradient */
    overflow: hidden;
    position: relative; /* CRUCIAAL: Dit zorgt ervoor dat ::before binnen de container blijft. */
    z-index: 1; /* Zorgt dat de content (tekst, knop) altijd 'boven' blijft. */

    /* Let op: 'background' is hier bewust weggelaten uit de transitie. */
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* De onzichtbare laag met de hover-gradient */
.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(325deg, #001932 0%, #0c3d6e 100%); /* De 'hover' gradient */
    opacity: 0; /* Begint volledig onzichtbaar */
    transition: opacity 0.5s ease-in-out; /* DIT is de animatie die we zien */
    z-index: -1; /* Plaatst deze laag ACHTER de content maar BINNEN de container */
    border-radius: inherit; /* Neemt de afronding over */
}

/* Maak de onzichtbare laag zichtbaar bij hover */
.cta-container:hover::before {
    opacity: 1;
}

.cta-brand {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--kleur-wit);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

.cta-container h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.8;
}
.cta-container .btn-primary:hover {
    transform: scale(1.05);
}

/* --- Media Queries voor Mobiel --- */
@media (max-width: 992px) {
    #cta-section {
        padding: 80px 1.5rem;
    }
    .cta-container h2 {
        font-size: 2.2rem;
    }
}

/* EINDE: CTA Sectie */

/* START: Nieuwe CSS voor de Resources Sectie */

#resources-section {
    padding: 100px 4rem;
    background-color: var(--kleur-wit);
}

#resources-section .section-container {
    max-width: 1100px; /* Maak de container iets smaller voor een betere leesbaarheid */
}

#resources-section h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem; /* Meer ruimte onder de titel */
    letter-spacing: -0.02em;
    text-align: left; /* Titel links uitlijnen */
}

.resources-list {
    display: flex;
    flex-direction: column; /* Items onder elkaar */
}

.resource-item {
    text-decoration: none;
    color: var(--kleur-primair);
    display: flex;
    justify-content: space-between; /* Verdeelt de tekst en de link */
    align-items: center;
    padding: 2rem 0; /* Alleen verticale padding */
    border-bottom: 1px solid #e0e0e0; /* Lijn tussen de items */
    transition: background-color 0.2s ease;
}

.resource-item:hover {
    background-color: #f9f9f9; /* Lichte achtergrond bij hover */
}

.resource-item:first-child {
    border-top: 1px solid #e0e0e0; /* Ook een lijn boven het eerste item */
}

.resource-text-content {
    flex-basis: 65%; /* Geef de tekst wat meer ruimte */
}

.resource-text-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.resource-text-content p {
    font-size: 1rem;
    font-weight: 300;
    text-align: left;
    line-height: 1.6;
    margin: 0;
    color: #555;
}

.resource-link {
    font-weight: 500;
    color: var(--kleur-primair);
    display: flex; /* Maakt het mogelijk om icoon en tekst naast elkaar te zetten */
    align-items: center;
    gap: 8px; /* Ruimte tussen icoon en tekst */
    white-space: nowrap; /* Voorkom dat de link afbreekt */
}

/* --- Media Queries voor Mobiel --- */
@media (max-width: 992px) {
    #resources-section {
        padding: 80px 1.5rem;
    }

    #resources-section h2 {
        font-size: 2.2rem;
        text-align: center; /* Titel centreren op mobiel */
    }
}

@media (max-width: 768px) {
    .resource-item {
        flex-direction: column; /* Alles onder elkaar op kleine schermen */
        align-items: flex-start; /* Alles links uitlijnen */
        gap: 1.5rem; /* Ruimte tussen tekst en link */
        padding: 1.5rem 0;
    }

    .resource-text-content {
        flex-basis: auto; /* Reset de basisbreedte */
    }
}

/* EINDE: Nieuwe CSS voor de Resources Sectie */

/* --- Footer Sectie --- */
.main-footer {
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 1px solid #f0f0f0;
    font-size: 15px;
    background-color: #ffffff;
}

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

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-column a {
    color: #555;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-socials a {
    color: #555;
    transition: color 0.2s ease;
}

.footer-socials a:hover {
    color: #000;
}

.copyright-text,
.kvk-text {
    color: #666;
    font-size: 14px;
}

/* --- Responsive Footer --- */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: center;
    }
}

/* --- Cookie Consent Banner Styling (Compact Toast Style) --- */

/* Verberg de standaard grote banner */
[id^="termsfeed-com"] {
  font-family: 'Reddit Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* Banner wrapper - compact toast onderaan links */
.cc-nb-main-container,
[class*="cc-nb-main-container"] {
  background-color: rgba(255,255,255,0.5) !important;
  backdrop-filter: blur(25px) !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.15) !important;
  padding: 20px 24px !important;
  max-width: 420px !important;
  width: calc(100vw - 32px) !important;
  margin: 0 !important;
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  right: auto !important;
  z-index: 9999 !important;
}

/* Banner titel - kleiner en compacter */
.cc-nb-title,
#cc-nb-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  margin-bottom: 8px !important;
  font-family: inherit !important;
}

/* Banner titel container */
.cc-nb-title-container {
  margin-bottom: 8px !important;
}

/* Banner tekst - compacter */
.cc-nb-text,
#cc-nb-text,
.cc-nb-text-container {
  font-size: 13px !important;
  color: #555 !important;
  line-height: 1.5 !important;
  margin-bottom: 16px !important;
}

/* Privacy policy link styling */
.cc-nb-text a,
.cc-nb-text-content a {
  color: #1a1a1a !important;
  font-weight: 500 !important;
  text-decoration: underline !important;
}

.cc-nb-text a:hover,
.cc-nb-text-content a:hover {
  color: #333 !important;
}

/* Button container - horizontaal naast elkaar */
.cc-nb-buttons-container,
[class*="cc-nb-buttons"] {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}

/* Alle buttons - compacter */
.cc-nb-okagree,
.cc-nb-reject,
.cc-nb-changep,
button.cc-nb-okagree,
button.cc-nb-reject,
button.cc-nb-changep {
  border-radius: 6px !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

/* Primaire accepteer knop - "Ik ga akkoord" (zwart) */
.cc-nb-okagree,
button.cc-nb-okagree,
[class*="cc-nb-okagree"] {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border: 1px solid #1a1a1a !important;
}

.cc-nb-okagree:hover,
button.cc-nb-okagree:hover {
  background-color: #333 !important;
  border-color: #333 !important;
}

/* Secundaire weiger knop - "Ik weiger" (licht grijs) */
.cc-nb-reject,
button.cc-nb-reject,
[class*="cc-nb-reject"] {
  background-color: #f0f0f0 !important;
  color: #1a1a1a !important;
  border: 1px solid #f0f0f0 !important;
}

.cc-nb-reject:hover,
button.cc-nb-reject:hover {
  background-color: #e0e0e0 !important;
  border-color: #e0e0e0 !important;
}

/* Customize/Beheer voorkeuren knop - "Wijzig mijn voorkeuren" - kleinere text link stijl */
.cc-nb-changep,
button.cc-nb-changep,
[class*="cc-nb-changep"] {
  background-color: transparent !important;
  color: #555 !important;
  border: none !important;
  padding: 8px 12px !important;
  text-decoration: underline !important;
}

.cc-nb-changep:hover,
button.cc-nb-changep:hover {
  color: #1a1a1a !important;
  background-color: transparent !important;
}

/* Preferences Center header */
.cc-cp-head {
  padding: 32px 32px 24px !important;
}

.cc-cp-head-title {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  font-family: inherit !important;
}

/* Preferences Center body */
.cc-cp-body {
  padding: 24px 32px !important;
  gap: 24px;
  max-height: 500px !important;
  overflow-y: auto !important;
}

/* Preferences Center tabs */
.cc-cp-body-tabs button {
  font-family: inherit !important;
  font-size: 15px !important;
  color: #555 !important;
  padding: 12px 16px !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
}

.cc-cp-body-tabs button:hover {
  color: #1a1a1a !important;
}

.cc-cp-body-tabs button[class*="active"] {
  color: #1a1a1a !important;
  border-bottom-color: #1a1a1a !important;
}

/* Save preferences button in modal */
.cc-cp-foot-save,
button[class*="cc-cp-foot-save"] {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 8px !important;
  padding: 12px 24px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.cc-cp-foot-save:hover {
  background-color: #333 !important;
  border-color: #333 !important;
}

/* Toggle switches in preferences */
.termsfeed-com---pc-dialog input[type=checkbox].cc-custom-checkbox:checked+label:before{
    background: #007aff !important;
}

/* Preferences Center footer */
.cc-cp-foot {
  padding: 24px 32px 32px !important;
  border-top: 1px solid #f0f0f0 !important;
  display: flex !important;
  gap: 12px !important;
  justify-content: flex-end !important;
}

/* Verberg "Cookie Consent by TermsFeed" branding - FORCE */
.termsfeed-com---palette-light .cc-cp-foot-byline,
.cc-cp-foot-byline,
[class*="cc-cp-foot-byline"],
.cc-cp-foot a[href*="termsfeed"],
a[href*="termsfeed.com"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
}

/* Close button (X) */
.cc-cp-head-close {
  width: 32px !important;
  height: 32px !important;
}

.cc-cp-head-close:hover {
  background-color: #f0f0f0 !important;
}

/* Overlay achter de modal */
.cc-cp-overlay {
  background-color: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(4px) !important;
}

/* Mobile responsive aanpassingen */
@media (max-width: 768px) {
  .cc-nb-main-container {
    left: 16px !important;
    bottom: 16px !important;
    padding: 16px 20px !important;
  }
  
  .cc-nb-buttons-container {
    flex-direction: column !important;
    gap: 8px !important;
  }
  
  .cc-nb-okagree,
  .cc-nb-reject,
  .cc-nb-changep {
    width: 100% !important;
    text-align: center !important;
  }
  
  .cc-cp {
    max-width: calc(100% - 32px) !important;
    margin: 16px !important;
  }
  
  .cc-cp-head,
  .cc-cp-body,
  .cc-cp-foot {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Extra kleine schermen */
@media (max-width: 480px) {
  .cc-nb-main-container {
    max-width: calc(100vw - 24px) !important;
    width: calc(100vw - 24px) !important;
    left: 12px !important;
    bottom: 12px !important;
  }
}