/* ==========================================================================
   SPECIFIEKE STIJLEN VOOR GEBRUIKER & AUTHENTICATIE
   ========================================================================== */

/* --- 4. Stijlen voor Inlog/Registratie Pagina's --- */
.auth-page { display: flex; justify-content: flex-start; align-items: center; min-height: calc(100vh - 92px); padding: 2rem 4rem; box-sizing: border-box; }
.auth-page__layout { display: flex; align-items: flex-start; gap: 4rem; width: 100%; max-width: 800px; }
.auth-page__figure-wrapper { flex-shrink: 0; }
.auth-figure { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); width: 200px; height: 200px; font-size: 1.8rem; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; color: var(--kleur-wit); }
.auth-page__form-wrapper { flex-grow: 1; width: 100%; }
.auth-form__header h2 { font-family: var(--font-titel); font-size: 4.5rem; color: var(--kleur-tekst); margin: 0 0 1.5rem 0; text-align: left; }



.message { padding: 10px; border-radius: var(--radius-klein); margin-bottom: 1rem; }
.message--error { color: #D8000C; background-color: #FFD2D2; }
.message--success { color: #4F8A10; background-color: #DFF2BF; }

.radio-card {
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: var(--radius-groot);
    text-align: center;
    font-weight: 600;
    transition: all 0.2s ease;
    flex: 1;
}

.radio-card:hover {
    border-color: var(--kleur-accent);
    
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card input[type="radio"]:checked + span {
    color: var(--kleur-wit);
    background-color: var(--kleur-primair);
    border-radius: var(--radius-klein);
    display: block;
    padding: 2px 5px;
    margin: -2px -5px;
}

.radio-card input[type="radio"]:checked {
    border-color: var(--kleur-primair);
    box-shadow: 0 0 0 3px rgba(26, 83, 92, 0.2);
}

.radio-card input[type="radio"]:checked + span {
    border-color: var(--kleur-primair);
    background-color: var(--kleur-primair);
}

.radio-card[data-plan="introductie"] input[type="radio"]:checked ~ span { background-color: #5bc0de; }
.radio-card[data-plan="jaarkorting"] input[type="radio"]:checked ~ span { background-color: #4CAF50; }
.radio-card[data-plan="lifetime"] input[type="radio"]:checked ~ span { background-color: #FFC400; }
.radio-card[data-plan="gratis"] input[type="radio"]:checked ~ span { background-color: #888; }


/* --- 13. Stijlen voor Registratie/Abonnement --- */
.registration-page-wrapper {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
    text-align: center;
}
.auth-page__header h1 {
    font-family: var(--font-titel);
    font-size: 5rem;
    color: var(--kleur-primair);
    margin-bottom: 0.5rem;
}
.auth-page__header p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 3rem;
}

.subscriptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.subscription-card {
    background-color: var(--kleur-wit);
    border-radius: var(--radius-groot);
    box-shadow: var(--schaduw);
    padding: 25px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.subscription-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.subscription-card--intro { border-color: #f6d365; }
.subscription-card--year { border-color: #84FAB0; }
.subscription-card--lifetime { border-color: #a18cd1; }

.subscription-card__title {
    font-family: var(--font-titel);
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--kleur-primair);
}

.subscription-card__figure {
    height: 150px;
    background-color: #f0f2f5;
    border-radius: var(--radius-klein);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.subscription-card__placeholder-text {
    font-style: italic;
    color: #999;
}

.subscription-card__features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}
.subscription-card__features li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
    font-weight: 600;
}
.subscription-card__features li:last-child {
    border-bottom: none;
}

.subscription-card__cta {
    background-color: var(--kleur-accent);
    color: var(--kleur-wit);
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    font-size: 1.1em;
}
.subscription-card__cta:hover:not(:disabled) {
    background-color: #ff9d63;
    transform: translateY(-2px);
}
.subscription-card__cta:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.registration-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    border-top: 5px solid var(--kleur-achtergrond);
    padding-top: 4rem;
}

.free-plan-info {
    flex-basis: 40%;
    text-align: left;
    padding: 20px;
}
.free-plan-info h2 {
    font-family: var(--font-titel);
    font-size: 3.5rem;
    color: var(--kleur-accent);
    margin-top: 0;
    margin-bottom: 2rem;
}
.free-plan-info__features {
    display: flex;
    gap: 40px;
}
.free-plan-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1em;
}
.free-plan-info ul li {
    padding: 5px 0;
    color: var(--kleur-primair);
    font-weight: 600;
}

.auth-form__wrapper {
    flex-basis: 60%;
    text-align: left;
}
.auth-form__wrapper h3 {
    font-size: 2rem;
    color: var(--kleur-tekst);
    margin-top: 0;
    margin-bottom: 1rem;
}

.form-card--registration {
    border: 3px solid #E9ECEF; 
}
.form-card--registration .form-card__submit {
    margin-top: 1.5rem;
    background-color: var(--kleur-primair);
    color: var(--kleur-wit);
    border: 2px solid var(--kleur-primair);
}
.form-card--registration .form-card__submit:hover {
    background-color: #11363c;
}

.top-plan-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.subscription-card--large {
    padding: 35px;
    min-height: 500px;
}
.subscription-card--free {
    display: flex;
    flex-direction: column;
}
.subscription-card--paid {
    border-color: var(--kleur-accent);
}
.subscription-card__features--pro li {
    font-weight: 700;
    color: var(--kleur-primair);
}
.subscription-card__text {
    margin-top: 1.5rem;
    font-size: 1.1em;
    color: #555;
}
.placeholder-footer {
    height: 48px;
}
.registration-form-toggle {
    margin-top: auto;
    padding-top: 15px;
}
.hidden-by-default {
    display: none;
}
.auth-form__wrapper h3 {
    display: none;
}
.form-card--registration {
    border: none;
    box-shadow: none;
    padding: 0;
}

.pricing-options-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 4rem;
}
.pricing-card {
    background-color: #f0f2f5;
    border-radius: var(--radius-klein);
    padding: 20px;
    width: 300px;
    text-align: center;
    border: 1px solid #ddd;
}
.pricing-card--highlight {
    background-color: var(--kleur-accent);
    color: var(--kleur-wit);
    transform: scale(1.05);
    box-shadow: var(--schaduw);
    border-color: var(--kleur-accent);
}
.pricing-card--highlight .pricing-card__title,
.pricing-card--highlight .pricing-card__description,
.pricing-card--highlight .pricing-card__price {
    color: var(--kleur-wit);
}
.pricing-card__title {
    font-size: 1.5rem;
    color: var(--kleur-primair);
    margin-top: 0;
}
.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--kleur-primair);
    margin: 10px 0 5px 0;
}
.pricing-card__period {
    font-size: 0.8em;
    font-weight: 400;
}
.pricing-card__description {
    font-size: 0.9em;
    color: #666;
    min-height: 25px;
}
.pricing-card__cta {
    background-color: var(--kleur-primair);
    color: var(--kleur-wit);
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: not-allowed;
    width: 100%;
    margin-top: 15px;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .registration-section {
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
    }
    .free-plan-info {
        flex-basis: 100%;
        text-align: center;
    }
    .free-plan-info h2 {
        font-size: 3rem;
    }
    .free-plan-info__features {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .auth-form__wrapper {
        flex-basis: 100%;
        width: 100%;
        max-width: 500px;
    }
    .subscriptions-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1000px) {
    .top-plan-comparison {
        grid-template-columns: 1fr;
    }
    .pricing-options-grid {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 90%;
        max-width: 400px;
    }
}
@media (max-width: 600px) {
    .auth-page__header h1 {
        font-size: 4rem;
    }
}

/* ==========================================================================
   ACCOUNT PAGINA STYLING (Gecentreerd)
   ========================================================================== */

/* Algemene layout container */
.account-page-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Dit centreert alles horizontaal */
    padding: 40px 20px;
    width: 100%;
    max-width: 100%; /* Voorkom overflow */
    min-height: calc(100vh - 200px);
    box-sizing: border-box;
}

.account-header { 
    text-align: center; 
    margin-bottom: 40px; 
    max-width: 800px;
}
.account-header h1 { color: var(--kleur-primair); font-size: 3rem; margin-bottom: 10px; }
.account-header p { color: #666; font-size: 1.1rem; }

.account-messages { 
    width: 100%; 
    max-width: 900px; /* Even breed als de grid */
    margin-bottom: 20px; 
}

/* GRID SYSTEEM */
.account-grid {
    display: grid;
    /* Mobiel: 1 kolom */
    grid-template-columns: 1fr; 
    gap: 30px;
    width: 100%;
    max-width: 900px; /* Zorgt dat de kaarten niet te breed worden */
}

/* DESKTOP (Vanaf 900px) */
@media (min-width: 900px) {
    .account-grid {
        /* Desktop: 2 kolommen, maar iets meer in balans (60% - 40%) */
        grid-template-columns: 1.5fr 1fr; 
        align-items: start;
    }
}

/* CARDS */
.content-card {
    background: var(--kleur-wit);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    height: 100%; /* Zorgt dat kaarten even hoog lijken als de inhoud dat toelaat */
    box-sizing: border-box;
}

.card-header { 
    border-bottom: 1px solid #eee; 
    padding-bottom: 15px; 
    margin-bottom: 25px; 
}
.card-header h3 { 
    margin: 0; 
    color: var(--kleur-primair); 
    font-size: 1.4rem; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

/* FORMULIEREN */
.form-row { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
@media (min-width: 600px) {
    .form-row { flex-direction: row; }
}

.form-group { flex: 1; display: flex; flex-direction: column; text-align: left; }
.form-group label { font-weight: 600; color: #555; margin-bottom: 8px; }

.form-input {
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}
.form-input:focus { border-color: var(--kleur-primair); outline: none; }
.form-input:disabled { background-color: #f9f9f9; color: #999; }

/* KNOPPEN */
.btn-primary-action {
    background-color: var(--kleur-primair);
    color: var(--kleur-wit);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: transform 0.2s;
}
.btn-primary-action:hover { transform: translateY(-2px); }

/* SUBSCRIPTION WIDGETS */
.sub-status-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.text-success { color: #2e7d32; font-weight: 800; }
.text-gray { color: #666; }

.btn-manage, .btn-upgrade {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-upgrade { background-color: var(--kleur-accent); color: var(--kleur-primair); }
.btn-upgrade:hover { transform: translateY(-2px); }

.btn-manage { 
    background-color: transparent; 
    border: 2px solid var(--kleur-primair); 
    color: var(--kleur-primair); 
}
.btn-manage:hover { background-color: var(--kleur-primair); color: var(--kleur-wit); }

/* GEVARENZONE */
.danger-zone { margin-top: 30px; border-top: 4px solid #ffebee; }
.btn-danger {
    background: white;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}
.btn-danger:hover { background: #ffebee; }

/* ==========================================================================
   GEBRUIKER.CSS - Definitieve Versie (Met Mobile Blob)
   ========================================================================== */

/* --- 1. Authenticatie Pagina (Wrapper) --- */
.auth-page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Mobiel: start boven */
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    background-color: var(--kleur-achtergrond); /* Lichte pagina achtergrond */
}

/* --- 2. De Modal Kaart --- */
.modal-dialog--blob {
    /* Structuur (width, margin, position) wordt nu geregeld door modals.css */
    /* Hier alleen visuele styling specifiek voor de login */
    background-color: #fff; /* Wit, zoals we besproken hadden */
    
    /* Zorgt dat de blob vorm niet buiten de kaart komt */
    overflow: hidden; 
    
    /* Dit mag blijven als je de specifieke ronde hoeken wilt behouden */
    border-radius: 60px;
    box-shadow: none; /* Of var(--schaduw) als je diepte wilt */
}

.modal__blob-background {
    border-radius: 70% 53% 75% 78% / 47% 61% 61% 42%;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    
    /* ORIGINELE BLAUWE VERSIE: */
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    
    z-index: 0;
    pointer-events: none;
    /* Opacity mag hier waarschijnlijk weg of op 1, omdat deze kleuren heel licht zijn */
    opacity: 1; 
}

/* De wrapper die nu de padding opvangt */
.modal__content-wrapper {
    position: relative;
    z-index: 1; /* Bovenop de blob */
    display: flex;
    flex-direction: column;
    height: 100%;
    
    /* HIER IS DE VERPLAATSTE PADDING */
    padding: 10px 30px 40px 30px; 
}

/* Kleine cleanup voor de footer tekst */
.form-card__footer {
    margin-top: 20px; 
    font-size: 0.9em; 
    text-align: center;
    color: #666;
}

/* Kleine helper voor de magic link knop */
.btn-outline {
    display: flex; /* Zorg dat dit flex blijft */
    justify-content: center; 
    background-color: transparent; 
    border: 2px solid var(--kleur-primair); 
    color: var(--kleur-primair);
}

.modal-dialog--blob .modal__header {
    background-color: transparent;
    text-align: center;
    /* Minder padding nodig omdat de wrapper eromheen nu padding heeft */
    padding-top: 20px; 
    padding-bottom: 20px;
    flex-shrink: 0;
}



/* --- 3. Knoppen in Header (Sluit & Terug) --- */
.modal-circle-btn, 
.modal__close-button { 
    position: absolute;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    
    /* Iets wittere achtergrond voor contrast op de blob */
    background-color: rgba(255,255,255, 0.9) !important; 
    border: 1px solid rgba(0,0,0,0.05) !important;
    
    color: var(--kleur-tekst) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem !important;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
}

.modal-circle-btn:hover, 
.modal__close-button:hover {
    background-color: var(--kleur-primair) !important;
    color: var(--kleur-wit) !important;
    transform: scale(1.1);
    border-color: var(--kleur-primair) !important;
}

.modal__close-button { right: 20px; } 
.modal-back-button { left: 20px; }

/* --- 4. Typografie --- */
.modal-header-logo {
    display: block;
    margin: 0 auto 10px auto;
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 5px;
}

.login-modal__title {
    font-family: var(--font-titel);
    font-size: 2.2rem;
    color: var(--kleur-primair);
    margin: 0 0 5px 0;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    /* De golf */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0,5 Q25,0 50,5 T100,5' stroke='%231A535C' stroke-width='2.5' fill='none' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 8px;
}

.modal__subtitle {
    color: #666;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

/* --- 5. Formulieren (Compact & Strak) --- */
.form-card__group { margin-bottom: 1rem; text-align: left; }
.form-card__label { display: block; margin-bottom: 0.4rem; font-weight: 600; color: #555; font-size: 0.95rem; }

.form-card__input {
    width: 100%;
    
    border-radius: 30px;
    border: 2px solid #E0E0E0; /* Standaard rand */
    font-size: 1rem;
    background-color: rgba(255,255,255, 0.9); /* Bijna wit */
    box-sizing: border-box;
    transition: all 0.2s;
     padding: 8px 15px !important; /* Iets plattere velden */
    height: 40px; /* Vaste hoogte */
}
.form-card__input:focus {
    outline: none;
    border-color: var(--kleur-primair);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(26, 83, 92, 0.1); /* Mooie focus ring */
}
.form-card__input:disabled {
    background-color: rgba(0,0,0,0.03);
    color: #888;
    cursor: not-allowed;
    border-color: transparent;
}

.form-card__submit {
    width: 100%;
    background-color: var(--kleur-primair);
    color: var(--kleur-wit);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid var(--kleur-primair);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: background 0.2s;
}
.form-card__submit:hover { background-color: #133b42; border-color: #133b42; }

/* --- 6. Google / Alternatief --- */
.login-modal__google-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 12px 20px; margin-top: 10px;
    border: 1px solid #ddd; border-radius: 50px;
    background-color: #fff; color: var(--kleur-tekst); font-weight: 600;
    text-decoration: none; box-sizing: border-box; transition: all 0.2s;
}
.login-modal__google-btn:hover { background-color: #f9f9f9; border-color: #bbb; transform: translateY(-1px); }

.login-modal__divider {
    display: flex; align-items: center; justify-content: center;
    margin: 20px 0; color: #999; width: 100%;
}
.login-modal__divider::before, 
.login-modal__divider::after { content: ''; flex: 1; height: 1px; background-color: #e0e0e0; }
.login-modal__divider span { padding: 0 15px; font-size: 0.9rem; font-weight: 600; }

.message { padding: 12px; border-radius: 10px; margin-bottom: 20px; font-size: 0.95rem; text-align: center; }
.message--error { background-color: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
.message--success { background-color: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }

/* --- 7. Account & Pricing --- */
.account-page-container { padding: 20px; max-width: 1200px; margin: 0 auto; }
.account-header { text-align: center; margin-bottom: 30px; }
.account-grid, .pricing-grid { display: flex; flex-direction: column; gap: 20px; }

.content-card, .pricing-card {
    background: #fff; border-radius: 20px; padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid #f0f0f0; position: relative;
}
.pricing-card { cursor: pointer; border: 2px solid #eee; transition: all 0.2s; }
.pricing-card:hover { border-color: var(--kleur-primair); transform: translateY(-2px); }
.pricing-card.is-selected { border-color: var(--kleur-primair); background-color: #f0fdf4; }
.pricing-card--lifetime { border-color: var(--kleur-accent); }
.pricing-card .badge { 
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--kleur-accent); color: var(--kleur-primair);
    padding: 4px 12px; border-radius: 15px; font-size: 0.75rem; font-weight: 700;
}

/* --- 8. DESKTOP STIJLEN (Vanaf 800px) --- */
@media (min-width: 800px) {
    /* Pagina achtergrond */
    .auth-page {
        justify-content: center; 
        padding: 40px !important;
        background-color: var(--kleur-achtergrond);
        min-height: calc(100vh - 92px);
    }

    /* Modal Kaart */
   /* Modal Kaart (Alleen visuele styling, positie komt uit modals.css) */
    .modal-dialog--blob {
        border-radius: 60px !important;
        box-shadow: var(--schaduw) !important;
        background-color: var(--kleur-wit); 
        /* GEEN margin of width hier! */
    }

    /* Titel groter */
    .login-modal__title { font-size: 2.5rem; }

    /* Login Grid (2 kolommen) */
    .login-grid-container {
        display: grid; grid-template-columns: 1fr auto 1fr;
        align-items: center; gap: 40px;
    }
    .login-grid-item--divider { grid-column: 2; height: 100%; display: flex; align-items: center; }
    .login-modal__divider { flex-direction: column; width: auto; min-height: 200px; margin: 0; }
    .login-modal__divider::before, .login-modal__divider::after { width: 1px; height: auto; border-bottom: 0; border-left: 1px solid #e0e0e0; }
    .login-modal__divider span { padding: 15px 0; }

    /* Registratie Grid (2 kolommen voor naam/ww etc) */
    .register-grid-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        row-gap: 10px !important; /* Minder ruimte tussen rijen */
    }
    .form-group--full-width { grid-column: 1 / -1; }

    /* Account & Pricing Grid */
    .account-grid, .pricing-grid { flexDirection: row; alignItems: stretch; }
    .pricing-card { flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: center; }
}

.modal-shake {
    animation: shake-modal 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

/* Animatie */
@keyframes shake-modal {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}
/* ==========================================================================
   COMPACTE REGISTRATIE MODAL (Anti-Scroll Fixes)
   ========================================================================== */

/* 1. Email Badge (Vervangt het grote input veld) */
.email-badge {
    background-color: #f0f4f8;
    color: #555;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border: 1px solid #e1e8ed;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
}
.email-badge i { color: var(--kleur-primair); }




/* 3. Formulier strakker op elkaar */


/* --- Styling voor de Abonnementen Modal --- */

/* Maak deze variant breder op desktop */
.modal-dialog--wide {
    width: 100%;
    max-width: 500px; /* Standaard mobiel */
}

@media (min-width: 900px) {
    .modal-dialog--wide {
        max-width: 950px; /* Breed genoeg voor 3 kaarten */
    }
}

/* De 'Nee bedankt' link styling */
.free-option-link {
    display: block;
    width: 100%;
    background: none;
    border: none;
    margin-top: 20px;
    color: #999;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}
.free-option-link:hover {
    color: var(--kleur-primair);
}

/* --- Styling voor Alternatieven in Premium Modal --- */

.premium-alternatives {
    margin-top: 25px;
    width: 100%;
}

.premium-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.premium-divider::before,
.premium-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}
.premium-divider span {
    padding: 0 10px;
}

.premium-actions-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* Voor kleine schermpjes */
}

/* De knoppen onderin */
.premium-alt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    padding: 12px 20px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1; /* Gelijke breedte */
    min-width: 140px;
}

/* Variant: Bibliotheek (Blauw/Neutraal) */
.premium-alt-btn--library {
    background-color: #f0f8ff;
    color: var(--kleur-primair);
    border: 1px solid #dbeafe;
}
.premium-alt-btn--library:hover {
    background-color: #dbeafe;
    transform: translateY(-2px);
}

/* Variant: Terug (Simpel Grijs) */
.premium-alt-btn--back {
    background-color: transparent;
    color: #888;
    border: 1px solid #e0e0e0;
}
.premium-alt-btn--back:hover {
    background-color: #f9f9f9;
    color: #555;
}

/* ==========================================================================
   STYLING VOOR ABONNEMENTEN GRID (Naast elkaar)
   ========================================================================== */

/* 1. De Modal Breedte op Desktop */
@media (min-width: 900px) {
    .modal-dialog--wide {
        max-width: 1050px !important; /* Breed genoeg voor 3 kaarten + padding */
        width: 95%; /* Zorg voor marge op kleinere desktops */
    }
    
    /* Zorg dat de inner-content de breedte benut */
    .modal-dialog--wide .modal__content-wrapper {
        max-width: none !important; 
    }
}

/* 2. De Grid Container */
.pricing-grid {
    display: grid;
    gap: 20px; /* Ruimte tussen de kaarten */
    width: 100%;
    margin-bottom: 25px;
}

/* --- Mobiel (Standaard): Onder elkaar --- */
.pricing-grid {
    grid-template-columns: 1fr;
}

/* --- Desktop (> 768px): 3 Kolommen naast elkaar --- */
@media (min-width: 768px) {
    .pricing-grid {
        /* Maak 3 exact gelijke kolommen */
        grid-template-columns: repeat(3, 1fr); 
        align-items: stretch; /* Zorg dat alle kaarten even hoog worden */
    }
}

/* 3. De Kaart Zelf (Flexbox voor uitlijning inhoud) */
.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Spreid titel en prijs */
    align-items: center; /* Centreer inhoud */
    
    /* Zorg dat de kaart de hoogte van de grid-cel vult */
    height: 100%; 
    min-height: 200px; /* Minimale hoogte voor consistentie */
    
    padding: 25px 20px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px; /* Mooie ronde hoeken */
    cursor: pointer;
    position: relative; /* Voor de badge positionering */
    transition: all 0.2s ease;
    box-sizing: border-box;
}

/* Hover effect */
.pricing-card:hover {
    border-color: var(--kleur-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Geselecteerde staat */
.pricing-card.is-selected {
    border-color: var(--kleur-accent);
    background-color: #fffdf0; /* Heel licht geel */
    box-shadow: 0 0 0 1px var(--kleur-accent);
}

/* Verberg de standaard radio button (optioneel, als je het netjes wilt) */
.pricing-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* 4. Inhoud van de kaart */
.pricing-info {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pricing-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-family: var(--font-titel); /* Jouw speelse font */
    font-size: 2.2rem;
    color: var(--kleur-primair);
    margin: 10px 0;
}

.pricing-period {
    font-size: 0.9rem;
    color: #999;
}

/* 5. Het Vinkje (Rechtsboven of gecentreerd bij selectie) */
.pricing-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #eee;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    transition: all 0.2s;
}

.pricing-card.is-selected .pricing-check {
    background-color: #4F8A10; /* Groen vinkje */
    transform: scale(1.1);
}

/* 6. De Badge (bv. "Meest gekozen" of "Beste deal") */
.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    
    background-color: var(--kleur-accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 2;
}
/* ==========================================================================
   GRATIS OPTIE "SOFT LANDING" STYLING
   ========================================================================== */

.premium-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    margin: 20px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.premium-divider::before,
.premium-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}
.premium-divider span {
    padding: 0 15px;
}

/* De Kaart Container */
.free-option-card {
    display: flex;
    align-items: center;
    gap: 15px;
    
    background-color: #f0f8ff; /* AliceBlue: Heel zacht vriendelijk blauw */
    border: 1px solid #dbeafe;
    border-radius: 15px;
    padding: 15px 20px;
    
    text-align: left;
    transition: all 0.2s ease;
    margin-bottom: 15px;
}

.free-option-card:hover {
    background-color: #e0f2fe;
    border-color: #badaff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Het Icoon (Cadeautje) */
.free-option-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    
    background-color: #fff;
    border-radius: 50%;
    color: var(--kleur-primair); /* Of een leuke accentkleur */
    font-size: 1.2rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* De Tekst */
.free-option-content {
    flex-grow: 1;
}

.free-option-content strong {
    display: block;
    color: var(--kleur-primair);
    font-size: 1rem;
    margin-bottom: 2px;
}

.free-option-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.3;
}

/* De Knop binnen de kaart */
.free-option-btn {
    white-space: nowrap;
    padding: 8px 16px;
    background-color: var(--kleur-primair);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.free-option-btn:hover {
    background-color: var(--kleur-accent); /* Geel accent bij hover */
    color: #fff;
}

/* Mobiele aanpassing: Als het scherm smal is, stapel de kaart */
@media (max-width: 500px) {
    .free-option-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .free-option-btn {
        width: 100%;
        display: block;
        text-align: center;
        margin-top: 5px;
    }
}

/* De simpele link eronder */
.simple-back-link {
    background: none;
    border: none;
    color: #aaa;
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 5px;
}
.simple-back-link:hover {
    color: #666;
}
.terms-consent-text {
    text-align: center;
    font-size: 0.75rem; /* Klein maar leesbaar */
    color: #999;
    margin-top: 15px;
    margin-bottom: 5px;
    line-height: 1.4;
}
.terms-consent-text a {
    color: #888;
    text-decoration: underline;
}
.terms-consent-text a:hover {
    color: var(--kleur-primair);
}

/* ==========================================================================
   MARKETING MANNETJE: ABONNEMENTEN PAGINA (MASTER CSS)
   ========================================================================== */

/* --- 1. ALGEMENE WRAPPER & TYPOGRAFIE --- */
.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.titel-lijn {
    font-family: var(--font-titel);
    line-height: 1.2;
}

/* De 'Marker' Titel (Gele Streep) */
.titel-met-highlight {
    font-family: var(--font-titel);
    font-size: 3rem;
    text-align: center;
    color: var(--kleur-primair);
    margin-top: 80px;
    margin-bottom: 40px;
}
.titel-met-highlight span {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.titel-met-highlight span::after {
    content: '';
    position: absolute;
    left: -5px; bottom: 5px;
    width: calc(100% + 10px); height: 35%;
    background-color: #fbc02d; /* Goud/Geel */
    opacity: 0.4;
    z-index: -1;
    transform: rotate(-2deg);
    border-radius: 4px;
}


/* --- 2. DE HERO & INTRO --- */
.abo-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}
.abo-hero-title {
    font-family: var(--font-titel);
    font-size: 2.5rem;
    color: var(--kleur-primair);
    margin-bottom: 20px;
    line-height: 1.2;
    /* De Gele Underline */
    text-decoration: underline;
    text-decoration-color: var(--kleur-accent); /* Geel/Goud */
    text-decoration-thickness: 4px; /* Iets dikker voor zichtbaarheid */
    text-underline-offset: 6px; /* Iets ruimte tussen te*/
}
.abo-intro-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.abo-hero-kicker {
    display: inline-block;
    background: #fff8e1; color: #b58900;
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 6px 16px; border-radius: 50px;
    margin-bottom: 20px;
}


/* --- 3. KIES JE PAD (DE KAARTEN) --- */
.choose-path-container {
    max-width: 900px;
    margin: 60px auto 80px auto;
}
.choose-path-title {
    text-align: center; font-size: 1.1rem;
    margin-bottom: 0px; color: #999;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.cards-wrapper {
    display: flex; flex-wrap: wrap; gap: 40px; justify-content: center;
}
.benefit-card {
    flex: 1; min-width: 280px;
    background: #fff;
    padding: 0 30px 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    position: relative; margin-top: 40px;
    transition: transform 0.3s ease;
}
.benefit-card:hover { transform: translateY(-5px); }

/* Iconen op de kaart */
.benefit-icon {
    width: 90px; height: 90px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: -45px auto 25px auto;
    font-size: 2.2rem;
    position: relative; z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border: 4px solid #fff;
}
.benefit-icon--blue { background-color: #e0f2fe; color: #0284c7; }
.benefit-icon--green { background-color: #dcfce7; color: var(--kleur-primair); }

.benefit-card h3 {
    font-family: var(--font-titel); font-size: 1.35rem;
    margin-bottom: 15px; color: #333; font-weight: 700;
}
.benefit-card p {
    color: #666; line-height: 1.6; font-size: 1rem; margin: 0;
}
.bridge-text-wrapper { text-align: center; margin-top: 20px; }
.bridge-text { font-family:var(--font-subtitel); font-size:1.15rem; font-weight: 600; color: var(--kleur-primair); margin-bottom: 10px; }


/* --- 4. TRANSFORMATIE (VOOR vs NA) --- */
.transformation-container {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; max-width: 1000px;
    margin: 60px auto 80px auto;
}
.trans-card {
    flex: 1; border-radius: 24px; padding: 35px 30px;
    display: flex; flex-direction: column;
}
.trans-card--before {
    background: #fafafa; border: 1px dashed #ccc; color: #888;
}
.trans-title-before {
    font-size: 1.2rem; color: #777; margin-bottom: 20px;
    font-weight: 600; display: flex; align-items: center; gap: 10px;
}
.trans-list-bad {
    list-style: none; padding: 0; margin: 0;
    font-size: 0.95rem; line-height: 1.6;
}
.trans-list-bad li {
    margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; opacity: 0.8;
}
.trans-list-bad i { color: #e57373; margin-top: 4px; }

.trans-arrow-wrapper {
    flex-shrink: 0; width: 50px; height: 50px;
    background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--kleur-primair); font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); z-index: 10;
    border: 2px solid #f0f0f0;
}

.trans-card--after {
    background: #fff; border: 2px solid var(--kleur-primair);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative; transform: scale(1.03);
}
.trans-title-after {
    font-size: 1.4rem; color: var(--kleur-primair);
    margin-bottom: 20px; font-weight: 700;
    display: flex; align-items: center; gap: 10px;
}
.trans-badge {
    position: absolute; top: -14px; right: 20px;
    background: var(--kleur-accent); color: var(--kleur-primair);
    font-size: 0.75rem; font-weight: 700;
    padding: 6px 14px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.trans-list-good {
    list-style: none; padding: 0; margin: 0;
    font-size: 1rem; line-height: 1.7; font-weight: 500; color: #333;
}
.trans-list-good li {
    margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px;
}
.trans-list-good i {
    color: var(--kleur-primair);
    background: #dcfce7; width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; margin-top: 2px; flex-shrink: 0;
}
.btn-trans-card {
    display: block; width: 100%; text-align: center;
    background-color: var(--kleur-primair); color: #fff;
    font-weight: 700; padding: 12px 20px; border-radius: 50px;
    text-decoration: none; margin-top: 25px;
    transition: all 0.2s ease; border: 2px solid var(--kleur-primair);
    box-sizing: border-box;
}
.btn-trans-card:hover {
    background-color: var(--kleur-accent); border-color: var(--kleur-accent);
    color: var(--kleur-primair); transform: translateY(-2px);
}


/* --- 5. PRICING CARDS (ONTBRAK NOG!) --- */
.pricing-grid {
    display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 30px;
}
.pricing-card {
    flex: 1; min-width: 280px; max-width: 350px;
    background: #fff; border: 1px solid #e0e0e0;
    border-radius: 16px; padding: 25px;
    position: relative; cursor: pointer; transition: all 0.2s;
}
.pricing-card:hover { border-color: #ccc; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.pricing-card.is-selected {
    border: 2px solid var(--kleur-primair); background: #f0fdf4;
}
.pricing-card--lifetime {
    border: 2px solid var(--kleur-accent);
}
.badge {
    position: absolute; top: -10px; right: 20px;
    background: var(--kleur-primair); color: #fff;
    font-size: 0.75rem; padding: 4px 10px; border-radius: 10px; font-weight: 700;
}
.pricing-info { text-align: center; }
.pricing-title { display: block; font-size: 1.1rem; font-weight: 700; color: #333; }
.pricing-price { display: block; font-size: 1.8rem; font-weight: 800; color: var(--kleur-primair); margin: 5px 0; }
.pricing-period { display: block; font-size: 0.9rem; color: #777; margin-bottom: 10px; }
.pricing-desc { font-size: 0.85rem; color: #666; margin-top: 10px; line-height: 1.4; }
.pricing-check {
    position: absolute; top: 15px; left: 15px;
    width: 24px; height: 24px; border-radius: 50%;
    border: 2px solid #ddd; color: transparent;
    display: flex; align-items: center; justify-content: center;
}
.pricing-card.is-selected .pricing-check {
    background: var(--kleur-primair); border-color: var(--kleur-primair); color: #fff;
}


/* --- 6. VERGELIJKINGSTABEL (MET KROONTJES) --- */
.abo-comparison {
    max-width: 850px; margin: 60px auto;
    background: #fff; border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden; border: 1px solid #f0f0f0;
}
.cmp-row {
    display: grid; grid-template-columns: 1fr 90px 90px;
    padding: 20px 30px; border-bottom: 1px solid #f5f5f5;
    align-items: center; gap: 15px;
}
.cmp-header { background-color: #fafafa; padding: 20px 30px; border-bottom: 2px solid #eee; }
.cmp-col-header { font-family: var(--font-titel); font-weight: 700; text-align: center; font-size: 1.1rem; color: #333; }
.cmp-col-header.is-premium { color: var(--kleur-primair); }
.desktop-text { display: inline; }

.cmp-section-title {
    background-color: #f0fdf4; color: var(--kleur-primair);
    font-weight: 700; text-transform: uppercase; font-size: 0.85rem;
    letter-spacing: 1.5px; padding: 12px 30px;
    border-bottom: 1px solid #e0f2fe; text-align: center;
}
.cmp-feature-title { font-size: 1rem; font-weight: 600; color: #333; display: block; }
.cmp-feature-desc { font-size: 0.85rem; color: #888; margin-top: 4px; display: block; line-height: 1.4; }
.cmp-status { text-align: center; display: flex; justify-content: center; align-items: center; }
.cmp-check {
    color: #4F8A10; background: #edf7ed;
    width: 32px; height: 32px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.cmp-check--gold {
    background-color: #fff9c4; color: #fbc02d; border: 1px solid #fff59d;
}
.cmp-cross { color: #e0e0e0; font-size: 1rem; }

/* Inline lijst */
.cmp-basics-container { background-color: #f9f9f9; padding: 30px; text-align: center; border-top: 2px solid #eee; }
.cmp-basics-title { font-family: var(--font-titel); color: #888; font-size: 1rem; margin: 0 0 20px 0; text-transform: uppercase; letter-spacing: 1px; }
.cmp-basics-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.cmp-basic-item {
    background: #fff; padding: 8px 16px; border-radius: 50px;
    border: 1px solid #e0e0e0; color: #555;
    font-weight: 600; font-size: 0.9rem;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.cmp-basic-item i { color: var(--kleur-primair); }


/* --- 7. VALUE PROPS (DE GERUSTSTELLING) --- */
.value-props-container {
    max-width: 1000px; margin: 80px auto 60px auto; text-align: center;
}
.vp-section-title { font-family: var(--font-titel); font-size: 1.8rem; color: #333; margin-bottom: 15px; }
.vp-section-intro {
    max-width: 700px; margin: 0 auto 50px auto;
    font-size: 1.1rem; line-height: 1.6; color: #555;
}
/* --- FIX: Value Props Kaarten --- */
.vp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.vp-item {
    background-color: #fff !important; /* Geforceerd wit */
    border: 1px solid #f0f0f0;
    border-radius: 20px !important;    /* Geforceerd rond */
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Schaduw voor diepte */
    text-align: left;
    transition: transform 0.3s ease;
    height: 100%; /* Zorgt dat ze even hoog zijn */
    box-sizing: border-box;
}

.vp-item:hover {
    transform: translateY(-5px);
}

/* Zorg dat de iconen ook goed staan */
.vp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    background: #f0fdf4;
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--kleur-primair);
    font-size: 2rem;
}
.vp-title { font-size: 1.2rem; font-weight: 700; color: #333; margin-bottom: 10px; display: block; }
.vp-desc { color: #666; font-size: 1rem; line-height: 1.6; margin: 0; }


/* --- 8. FINAL CTA & FAQ --- */
.final-cta-wrapper {
    text-align: center; padding: 60px 40px;
    background: linear-gradient(135deg, #fff9c4 0%, #fff 100%);
    border-radius: 30px; margin-top: 80px; margin-bottom: 40px;
    border: 2px solid #fbc02d;
    box-shadow: 0 10px 30px rgba(251, 192, 45, 0.15);
}
.final-cta-title { font-family: var(--font-titel); font-size: 2rem; color: var(--kleur-primair); margin-bottom: 15px; }
.final-cta-text { font-size: 1.1rem; color: #555; max-width: 600px; margin: 0 auto 30px auto; line-height: 1.6; }
.btn-final-cta {
    background-color: var(--kleur-primair); color: #fff;
    font-size: 1.1rem; font-weight: 700; padding: 15px 40px;
    border-radius: 50px; border: none; cursor: pointer;
    box-shadow: 0 5px 15px rgba(26, 83, 92, 0.2);
    transition: transform 0.2s, background-color 0.2s;
    display: inline-flex; align-items: center; gap: 10px;
}
.btn-final-cta:hover { background-color: var(--kleur-accent); color: var(--kleur-primair); transform: translateY(-3px); }

/* --- FIX: FAQ Accordion --- */
.abo-faq { max-width: 800px; margin: 60px auto; padding: 0 20px; }
.faq-container { display: flex; flex-direction: column; gap: 15px; }

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

/* Verwijder het standaard driehoekje van de browser */
.faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

/* DE GELE CHEVRON */
.faq-item summary i,
.faq-item summary .fa-chevron-down {
    
    font-size: 1.1rem;
    transition: transform 0.3s ease-in-out; /* De animatie */
}

/* ANIMATIE: Draaien als hij open is */
.faq-item[open] summary i,
.faq-item[open] summary .fa-chevron-down {
    transform: rotate(180deg);
}

/* De tekst inhoud */
.faq-content {
    padding: 0 20px 20px 20px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid transparent;
}

/* --- 9. MOBIELE AANPASSINGEN (DEFINITIEF) --- */

/* ==========================================================================
   DEFINITIEVE BANNER: ILLUSTRATIE LINKS - TEKST RECHTS & ONDER (MOBIEL)
   ========================================================================== */

.abo-image-banner {
    /* 1. De Achtergrond */
    background-image: url('../../assets/img/banner-abo.webp'); 
    background-size: cover;
    
    /* BELANGRIJK: Links vastpinnen, zodat het poppetje blijft staan */
    background-position: left center; 
    background-repeat: no-repeat;

    /* 2. De Afmetingen & Layout */
    height: 320px;
    width: 100%;
    
    display: flex;
    
    /* VERTICAAL (Desktop): In het midden */
    align-items: center; 
    
    /* HORIZONTAAL: Alles naar rechts duwen (weg van het poppetje) */
    justify-content: flex-end; 
    
    margin-bottom: 50px;
    
    /* Alle hoeken netjes afgerond */
    border-radius: 30px; 
    overflow: hidden;
    
    /* Ruimte aan de rechterkant */
    padding-right: 10%; 
    box-sizing: border-box; 
}

/* De Container voor de tekst */
.banner-content {
    text-align: right; 
    max-width: 600px;
}

/* De Tekst Styling */
.banner-content h1 {
    font-family: var(--font-subtitel); /* Comfortaa font */
    font-size: 3rem;
    font-weight: 700; 
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    
    color: var(--kleur-primair); 
    text-shadow: 2px 2px 0px #fff; 
}

.banner-highlight {
    color: var(--kleur-accent);
    text-shadow: 1px 1px 0px var(--kleur-primair);
}

/* --- MOBIELE AANPASSINGEN --- */
@media (max-width: 768px) {
    .abo-image-banner {
        height: 250px; 
        padding-right: 20px; 
        
        /* Achtergrond: Poppetje blijft links, maar mag zakken naar onderkant */
        background-position: left bottom; 
        
        /* TEKST POSITIE MOBIEL: NAAR BENEDEN */
        align-items: flex-end; 
        
        /* Zorg voor ruimte aan de onderkant zodat tekst niet op de rand staat */
        padding-bottom: 30px; 
    }

    .banner-content h1 {
        font-size: 1.6rem; 
        background: rgba(255,255,255,0.6); 
        padding: 10px 15px;
        border-radius: 15px;
        backdrop-filter: blur(2px);
    }
}

/* ==========================================================================
   ANCHOR LINK STYLING (CALL TO SCROLL)
   ========================================================================== */

.link-met-actie {
    display: inline-flex;       /* Zorgt dat icoon en tekst netjes lijnen */
    align-items: center;
    gap: 8px;                   /* Ruimte tussen tekst en pijltje */
    
    color: var(--kleur-accent2); /* Jouw donkergroen */
    font-weight: 400;           /* Lekker dikgedrukt */
    font-size: 1rem;            /* Iets groter dan kleine lettertjes */
    text-decoration: none;      /* Standaard streep weg (doen we zelf mooier) */
    
    border-bottom: 2px solid rgba(26, 83, 92, 0.2); /* Subtiel lijntje (semi-transparant) */
    padding-bottom: 2px;        /* Ruimte tussen tekst en lijn */
    transition: all 0.3s ease;  /* Soepele overgang */
}

/* De Hover Staat (Als je muis erop staat) */
.link-met-actie:hover {
    color: var(--kleur-primair);    /* Kleur blijft (of maak var(--kleur-accent)) */
    border-bottom-color: var(--kleur-accent); /* Lijn wordt Goud/Geel! */
    gap: 12px;                      /* Pijltje schuift iets naar rechts/beneden */
}

/* Het pijltje animeren */
.link-met-actie i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.link-met-actie:hover i {
    transform: translateY(3px); /* Pijltje zakt naar beneden ("Kijk daar!") */
}
/* --- HERO CTA BUTTON (VOOR IN DE BANNER) --- */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    
    margin-top: 25px; /* Afstand tot de tekst */
    padding: 14px 40px;
    
    background-color: var(--kleur-primair); /* Donkergroen */
    color: #fff;
    
    font-family: var(--font-subtitel); /* Comfortaa (Vriendelijk) */
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    border-radius: 50px; /* Mooie ronde pil-vorm */
    border: 2px solid var(--kleur-primair); /* Randje voor stevigheid */
    
    box-shadow: 0 5px 20px rgba(26, 83, 92, 0.25); /* Zwevend effect */
    transition: all 0.3s ease;
}

/* Hover Effect: Kleuren draaien om */
.btn-hero:hover {
    background-color: var(--kleur-accent); /* Goud/Geel */
    border-color: var(--kleur-accent);
    color: var(--kleur-primair); /* Donkere tekst */
    transform: translateY(-3px); /* Komt iets omhoog */
    box-shadow: 0 8px 25px rgba(251, 192, 45, 0.4); /* Gouden gloed */
}

/* Mobiele aanpassing */
@media (max-width: 768px) {
    .btn-hero {
        padding: 12px 30px;
        font-size: 0.95rem;
        margin-top: 15px;
    }
}

/* ==========================================================================
   PRICING CARDS (DE KASSA)
   ========================================================================== */

.abo-pricing-section {
    max-width: 850px;
    margin: 0 auto 60px auto;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

/* De kaart fungeert als een Label voor de radiobutton */
.pricing-card-label {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease;
}

.pricing-card-label:hover {
    transform: translateY(-3px);
}

/* Verberg de standaard radio button */
.pricing-card-label input[type="radio"] {
    display: none;
}

/* DE KAART ZELF */
.pricing-card-content {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* STIJL WANNEER GESELECTEERD (Via de radio button) */
.pricing-card-label input:checked + .pricing-card-content {
    border-color: var(--kleur-primair);
    background-color: #f0fdf4; /* Heel licht groen */
    box-shadow: 0 10px 25px rgba(26, 83, 92, 0.15);
    transform: scale(1.02);
}

/* SPECIFIEK: DE POPULAIRE OPTIE (JAAR) */
.pricing-card-label.popular input:checked + .pricing-card-content {
    border-color: var(--kleur-accent); /* Goud randje */
    background-color: #fffde7; /* Heel licht geel */
}

/* Badge (Meest Gekozen) */
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kleur-accent);
    color: var(--kleur-primair);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
}

/* TYPOGRAFIE */
.pricing-title {
    font-family: var(--font-titel);
    font-size: 1.4rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.pricing-price {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--kleur-primair);
    margin: 10px 0 5px 0;
}

.pricing-period {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

/* DE RISK KILLER (7 dagen gratis) */
.risk-killer {
    display: inline-block;
    background: #e8f5e9; /* Groen labeltje */
    color: #2e7d32;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.risk-killer i { margin-right: 5px; }

/* De opsomming (Vinkjes) */
.pricing-features {
    list-style: none; padding: 0; margin: 0;
    text-align: left;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}
.pricing-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
    display: flex; align-items: start; gap: 10px;
}
.pricing-features i {
    color: var(--kleur-primair);
    margin-top: 4px;
}

/* HET RONDE VINKJE (Radio indicator) */
.radio-indicator {
    width: 24px; height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.radio-indicator::after {
    content: '\f00c'; /* FontAwesome Check */
    font-family: "Font Awesome 7 Free"; font-weight: 900;
    color: #fff; font-size: 14px;
    display: none; /* Standaard verborgen */
}

/* Als geselecteerd, kleur het bolletje */
.pricing-card-label input:checked + .pricing-card-content .radio-indicator {
    background: var(--kleur-primair);
    border-color: var(--kleur-primair);
}
.pricing-card-label input:checked + .pricing-card-content .radio-indicator::after {
    display: block;
}

/* --- BEWAREN ALS JE DIT ELDERS GEBRUIKT --- */

/* Styling voor 'Lees meer' linkjes (vaak in popups) */
.read-more-link {
    font-size: 0.9rem;
    color: var(--kleur-primair);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.read-more-link:hover {
    color: var(--kleur-accent);
    text-decoration: underline;
}

/* Slotje icoon voor premium content */
.premium-feature {
    position: relative;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    gap: 10px; 
}

/* --- NIEUWE ROBUUSTE GRID STYLING --- */

.pricing-grid-triplet {
    display: flex;
    flex-wrap: wrap; /* Mag breken naar volgende regel als het écht te smal is */
    justify-content: center;
    gap: 20px;
    max-width: 1200px; /* Iets breder voor 3 kaarten */
    margin: 40px auto 40px auto; /* EXTRA MARGE BOVENAAN VOOR DE BADGES! */
    padding: 0 10px; /* Voorkomt plakken aan rand */
    box-sizing: border-box;
}

.pricing-card-label {
    flex: 1; /* Iedereen even breed */
    min-width: 260px; /* Iets smaller zodat ze sneller naast elkaar passen */
    max-width: 360px; /* Niet te breed worden */
    cursor: pointer;
    position: relative;
    
    /* BELANGRIJK VOOR BADGE: */
    overflow: visible !important; /* Zorg dat de badge die uitsteekt zichtbaar blijft */
    z-index: 1;
}

/* De Badge Styling (Extra Zekerheid) */
.pricing-badge {
    position: absolute;
    top: -15px; /* Iets hoger */
    left: 50%;
    transform: translateX(-50%);
    
    background: var(--kleur-accent); 
    color: var(--kleur-primair);
    
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    white-space: nowrap;
    
    /* Zorg dat hij ALTIJD bovenop ligt */
    z-index: 999; 
}

/* Zwarte badge voor Lifetime */
.badge-black { background: #333; color: #fff; }

/* Mobiele layout fix */
@media (max-width: 900px) {
    .pricing-grid-triplet {
        flex-direction: column; /* Stapelen op tablet/mobiel */
        align-items: center;
    }
    .pricing-card-label {
        width: 100%;
        max-width: 450px; /* Op mobiel mag hij iets breder */
        margin-bottom: 30px; /* Ruimte tussen gestapelde kaarten */
    }
}
/* Logo in de pricing card */
.pricing-card-logo {
    display: block;
    height: 35px; /* Pas aan naar smaak (30-40px is vaak mooi) */
    width: auto;
    margin: 0 auto 10px auto; /* Centreren en ruimte onder het logo */
    object-fit: contain;
}

/* De titel eronder mag nu ietsje kleiner of strakker omdat het logo de "hero" is */
.pricing-title {
    margin-top: 5px;
    font-size: 1.3rem; 
    
}

/* Knop binnen de kaart */
.btn-card-action {
    width: 100%;
    padding: 12px 15px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Stijl voor Maand/Jaar (Groen) */
.btn-card-action.btn-green {
    background-color: var(--kleur-primair);
    color: #fff;
}
.btn-card-action.btn-green:hover {
    background-color: var(--kleur-accent);
    color: var(--kleur-primair);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Stijl voor Lifetime (Zwart/Chique) */
.btn-card-action.btn-black {
    background-color: #333;
    color: #fff;
}
.btn-card-action.btn-black:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Kleine tekst onder de knop */
.card-terms {
    font-size: 0.75rem;
    color: #999;
    margin-top: 10px;
    text-align: center;
}
/* 1. De Kaart-inhoud moet een Flex-kolom worden */
.pricing-card-content {
    /* Bestaande stijlen behouden... */
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px 20px;
    height: 100%;         /* Zorgt dat hij de volledige hoogte pakt */
    box-sizing: border-box;
    position: relative;
    
    /* NIEUW: Zorgt voor de uitlijning */
    display: flex;
    flex-direction: column; 
}

/* 2. De Knop duwt zichzelf naar de bodem */
.btn-card-action {
    /* Bestaande stijlen... */
    width: 100%;
    padding: 12px 15px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    
    /* NIEUW: De magie voor uitlijning */
    margin-top: auto; /* Duwt alles wat hierboven staat omhoog, en zichzelf naar beneden */
    margin-bottom: 0;
    
    /* Cosmetisch */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Zorg dat het lijstje met vinkjes ook netjes ruimte houdt */
.pricing-features {
    margin-bottom: 20px; /* Minimale ruimte onder de vinkjes */
    flex-grow: 0;        /* Voorkom gekke uitrekking */
}
/* ==========================================================================
   LIFETIME STYLING (The Magic Touch)
   ========================================================================== */

/* 1. De Badge (Bovenop) */
.badge-gradient {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%); /* Paars naar Roze */
    color: #fff;
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3); /* Zachte roze gloed */
}

/* 2. De Knop (Onderaan) */
.btn-card-action.btn-gradient {
    background: linear-gradient(135deg, #9333ea 0%, #db2777 100%); /* Iets diepere kleuren */
    color: #fff;
    border: none;
}

/* Hover Effect: Glow wordt sterker & knop komt omhoog */
.btn-card-action.btn-gradient:hover {
    background: linear-gradient(135deg, #7e22ce 0%, #be185d 100%); /* Iets intenser */
    box-shadow: 0 8px 25px rgba(219, 39, 119, 0.45); /* "Magische" gloed */
    transform: translateY(-2px);
}

/* ==========================================================================
   FULL WIDTH BACKGROUND TRUC (BREAK-OUT)
   ========================================================================== */
.bg-breakout-light {
    background-color: #DAE3E0; /* Of een lichte tint van je steunkleur */
    
    /* De Magie: Een gigantische schaduw in dezelfde kleur */
    box-shadow: 0 0 0 100vmax #DAE3E0;
    
    /* De Begrenzing: Zorg dat de schaduw niet over de sectie erboven/eronder heen valt */
    clip-path: inset(0 -100vmax);
    
    /* Zorg dat de padding prettig is */
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 0; /* Geen ronde hoeken aan de zijkant bij full-width */
}

/* Een variant met een heel licht kleurtje (bijv. voor transformatie) */
.bg-breakout-color {
    background-color: #f0fdf4; /* Heel licht groen, passend bij je thema */
    box-shadow: 0 0 0 100vmax #f0fdf4;
    clip-path: inset(0 -100vmax);
    padding: 60px 0;
    margin: 60px 0;
}

/* ==========================================================================
   VERTICAL FADE BACKGROUNDS (ZACHTE BOVEN- EN ONDERKANT)
   ========================================================================== */

.section-vertical-fade {
    position: relative;
    padding: 80px 0; /* Iets meer padding om de fade ruimte te geven */
    margin: 20px 0;
    z-index: 1;
}

.section-vertical-fade::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Centreren */
    
    width: 100vw; /* Schermbreedte forceren */
    height: 100%;
    
    z-index: -1; /* Achter de tekst */
    pointer-events: none;
}

/* VARIANT 1: Lichtgrijs (Subtiel) */
.fade-v-groen::before {
    background: linear-gradient(
        to bottom, 
        rgba(218, 227, 224, 0) 0%,   /* Transparant (0% dekking) */
        #DAE3E0 15%,                 /* Jouw kleur (100% dekking) */
        #DAE3E0 85%,                 /* Jouw kleur blijft */
        rgba(218, 227, 224, 0) 100%  /* Weer transparant */
    );
}

/* VARIANT 2: Accentkleur (Lichtgroen/Mint) */
.fade-v-geel::before {
    background: linear-gradient(
        to bottom, 
        rgba(247, 247, 235, 0) 0%,   /* Transparant start */
        #F7F7EB 15%,                 /* Volledig crème */
        #F7F7EB 85%,                 /* Blijft crème */
        rgba(247, 247, 235, 0) 100%  /* Transparant einde */
    );
}

/* De 'Marker' Titel (Gele Streep) */
.titel-abo-modal {
    font-family: var(--font-titel);
    font-size: 3rem;
    text-align: center;
    color: var(--kleur-primair);
    margin-top: 0px;
    margin-bottom: 40px;
}
.titel-abo-modal span {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.titel-abo-modal span::after {
    content: '';
    position: absolute;
    left: -5px; bottom: 5px;
    width: calc(100% + 10px); height: 35%;
    background-color: #fbc02d; /* Goud/Geel */
    opacity: 0.4;
    z-index: -1;
    transform: rotate(-2deg);
    border-radius: 4px;
}

/* De USP Balk */
.premium-benefits-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.benefit-item {
    font-size: 0.9rem;
    color: var(--kleur-primair); /* Jouw groen */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Footer Styling */
.modal-footer-actions {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 10px;
}

.text-link-bold {
    color: var(--kleur-primair);
    font-weight: 700;
    text-decoration: none;
}
.text-link-bold:hover { text-decoration: underline; }

.link-button-subtle {
    background: none;
    border: none;
    color: #999;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s;
}
.link-button-subtle:hover { color: #666; }

/* Mobiele fix voor de benefits */
@media (max-width: 600px) {
    .premium-benefits-bar { flex-direction: column; gap: 8px; align-items: center; }
}


/* ==========================================================================
   FIX VOOR PREMIUM LOCK OVERLAY (Desktop & Mobile Scroll)
   ========================================================================== */

/* 1. De Overlay Container (Wordt de scroll-bak) */
#premium-lock-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 5000; 
    background-color: rgba(0, 0, 0, 0.5);
    
    /* ZICHTBAARHEID */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0s 0.3s;
    pointer-events: none;

    /* LAYOUT & SCROLL FIX */
    /* We gebruiken flex-column zodat margin: auto werkt voor verticaal scrollen */
    display: flex;
    flex-direction: column; 
    
    /* BELANGRIJK: Scrollbar op de overlay zelf activeren */
    overflow-y: auto !important; 
    -webkit-overflow-scrolling: touch;
    
    padding: 20px 10px; /* Beetje ruimte rondom */
    box-sizing: border-box;
}

/* Actieve staat */
#premium-lock-overlay.overlay--visible {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    pointer-events: auto;
}

/* 2. De Modal/Kaart binnen deze specifieke overlay */
/* We targeten de classes die jij gebruikt (.modal-dialog of .split-card-wrapper) */
#premium-lock-overlay .modal-dialog,
#premium-lock-overlay .split-card-wrapper {
    position: relative;
    
    /* DE MAGIE: */
    /* margin: auto in een flex-column container doet twee dingen: */
    /* 1. Als er ruimte is: Centreert hij perfect (Horizontaal & Verticaal). */
    /* 2. Als er GEEN ruimte is (scherm te klein): Lijnt hij bovenaan uit en wordt scrollbaar. */
    margin: auto !important; 
    
    /* Reset hoogtes zodat de inhoud de lengte bepaalt */
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    
    /* Zorg dat de kaart zelf niet scrollt, maar de overlay */
    overflow: auto !important; 
    
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

/* 3. Desktop Specifieke Breedte */
@media (min-width: 800px) {
    #premium-lock-overlay .modal-dialog,
    #premium-lock-overlay .split-card-wrapper {
        max-width: 950px !important; /* Mooie breedte voor desktop */
        
        /* Extra ademruimte boven en onder zodat hij niet strak tegen de rand plakt bij scrollen */
       
    
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    
    /* Geen margin: 40px auto meer zoals je aangaf, 
       maar wel centreren op desktop */
    margin-left: auto !important;
    margin-right: auto !important;
    }
}

/* 4. Mobiele Fullscreen Reset (Zoals je wilde) */
@media (max-width: 768px) {
    #premium-lock-overlay {
        padding: 0 !important; /* Geen randjes op mobiel */
        align-items: flex-start !important; /* Start bovenaan */
    }
    
    #premium-lock-overlay .split-card-wrapper {
        border-radius: 0 !important;
        min-height: 100vh !important; /* Vul scherm */
        margin: 0 !important;
    }
}



.layout-left .text-link-small-abo:hover {
    color: #fff !important;
    gap: 12px;
}

/* Zorg dat de left-footer-link niet wordt afgesneden op mobiel */
@media (max-width: 768px) {
    .left-footer-link {
        margin-top: 30px !important;
        padding-bottom: 10px;
    }
}
/* Kleine tekst linkjes (zoals wachtwoord vergeten) */
.text-link-small {
    font-size: 0.85rem;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.text-link-small:hover {
    color: var(--kleur-primair);
}

/* Wisselwerking voor de footer acties in de abonnements-modal */
@media (max-width: 768px) {
    /* Op mobiel: Verberg de desktop versie, toon de mobiele versie */
    .abo-view-desktop {
        display: none !important;
    }
    .abo-view-mobile {
        display: block !important;
    }
     /* NIEUW: Verberg het kruisje rechtsboven in de witte kaart op mobiel 
       (De gebruiker moet een keuze maken of 'terug' klikken in de browser/app header) */
    .layout-right .modal-back-btn {
        display: none !important;
    }
}

@media (min-width: 769px) {
    /* Op desktop: Zorg zeker dat de mobiele versie weg is */
    .abo-view-mobile {
        display: none !important;
    }
    .abo-view-desktop {
        display: block !important;

    }
   
}
/* --- Mobiele Premium Trigger Knop (Gele knop) --- */
.btn-mobile-premium-trigger {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 20px;
    
    /* Gele accentkleur */
    background-color: var(--kleur-accent);
    border: 2px solid var(--kleur-accent);
    color: #1a1a1a; /* Donkere tekst voor contrast op geel */
    
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-mobile-premium-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 196, 0, 0.3);
}

.btn-mobile-premium-trigger i {
    font-size: 0.9rem;
}
/* ==========================================================================
   ABO MODAL: CENTERED DESIGN (ZON + STREEP)
   ========================================================================== */

/* 1. De Zon (Gecentreerd & Groter) */
.abo-sun-centered {
    display: block;
    margin: 0 auto 15px auto; /* Centreren + ruimte onder */
    width: 60px; /* Iets groter dan de vorige versie */
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
     /* De 'Magische' Glow (net als de kleine iconen) */
    filter: drop-shadow(0 0 10px rgba(255, 196, 0, 0.5));
    
    /* Optioneel: Een kleine animatie om de aandacht te trekken */
    animation: lockPulse 2s infinite ease-in-out;
}
@keyframes lockPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
/* 2. De Titel (Strak & Wit) */
.abo-hero-title-centered {
    font-family: var(--font-titel);
    font-size: 2.2rem;
    line-height: 1.1;
    color: #fff !important;
    text-align: center;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 3. De Gele Streep (Onder de titel) */
.abo-title-divider {
    width: 70%; /* Niet te breed, subtiel */
    height: 4px; /* Dikte van de streep */
    background-color: var(--kleur-accent); /* Geel */
    margin: 0 auto 25px auto; /* Centreren + ruimte naar beschrijving */
    border-radius: 2px; /* Zachte randjes */
}

/* 4. De Beschrijving ("Grijs"/Zacht) */
.left-desc-soft {
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0px;
    
    /* "Grijs" effect op donkere achtergrond: Wit met 75% dekking */
    color: var(--kleur-accent);
    font-weight: 400;
}
.left-desc-soft {
    display: none !important;
}
/* Witte Pill Knop (Voor Gratis optie) */
.btn-white-subtle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    width: 100%; /* Op mobiel de volle breedte */
    padding: 14px 20px;
    margin-top: 5px;
    
    background-color: #ffffff;
    color: var(--kleur-primair); /* De donkergroene huisstijlkleur */
    
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid #ffffff;
    
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-white-subtle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    /* Optioneel: bij hover tekst geel maken? */
    /* color: var(--kleur-accent); */
}
/* "Lees alle voordelen" linkje */
/* Linkje iets subtieler en meer ruimte geven */
.link-read-more {
    display: inline-block;
    font-size: 0.85rem; /* Iets kleiner */
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 20px; /* Ruimte tot de footer/knop */
    transition: all 0.2s ease;
}

.link-read-more:hover {
    color: #fff !important;
    transform: translateX(3px);
}

.link-read-more i {
    font-size: 0.75em;
    margin-left: 5px;
}
.lock-context-desc {
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: center;
    color: rgba(255, 255, 255, 0.85); /* Zacht wit */
    
    /* Positionering: Dicht op de streep, ruimte naar de iconen */
    margin-top: -15px; /* Trek hem naar de gele streep toe */
    margin-bottom: 30px; /* Duw de iconen naar beneden */
    
    max-width: 280px; /* Smal houden voor leesbaarheid */
    margin-left: auto;
    margin-right: auto;
    
    font-weight: 400;
    animation: fadeIn 0.5s ease;
}

/* ==========================================================================
   INLINE FEATURE ICONS (Gecorrigeerd)
   ========================================================================== */

.usp-list-inline {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 20px 0 0 0;
    list-style: none;
    width: 100%;
}

.usp-list-inline li {
    display: flex;
    flex-direction: column;
    align-items: center; /* Dit centreert het icoon en de tekst */
    justify-content: flex-start;
    gap: 6px;
    width: 75px; 
    position: relative;
}

/* 1. Icoon */
.usp-inline-icon {
    font-size: 1.4rem;
    color: var(--kleur-accent);
    filter: drop-shadow(0 0 8px rgba(255, 196, 0, 0.4));
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. Tekst */
.usp-inline-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
}

/* 3. Wrapper voor de Info knop (FIX VOOR UITLIJNING) */
.usp-list-inline .info-icon-wrapper {
    width: 100%; /* Pak de volle breedte van de li */
    display: flex; /* Maak dit ook een flex container */
    justify-content: center; /* Forceer de knop naar het absolute midden */
    position: relative;
    margin-top: 2px;
}

/* De knop zelf */
.usp-list-inline .info-icon-btn {
    width: 18px; 
    height: 18px;
    font-size: 0.65rem;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.5);
    border-radius: 50%;
    
    /* Flex eigenschappen voor de 'i' letter in het rondje */
    display: flex;
    align-items: center;
    justify-content: center;
    
    cursor: help;
    transition: all 0.2s ease;
}

.usp-list-inline .info-icon-btn:hover {
    background: #fff;
    color: var(--kleur-primair);
    border-color: #fff;
    transform: scale(1.1);
}

/* --- TOOLTIP STYLING --- */
.usp-list-inline .tooltip-popup {
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    width: 200px;
    text-align: center;
    z-index: 1000;
}

.usp-list-inline .info-icon-wrapper:hover .tooltip-popup {
    transform: translateX(-50%) translateY(0) scale(1);
}

.usp-list-inline .tooltip-popup::after {
    left: 50%;
    right: auto;
    margin-left: -8px; 
}

.info-icon-btn, .info-icon-wrapper {
    margin-left: 0 !important
}
/* ==========================================================================
   MOBILE FIXES ABONNEMENTEN PAGINA (Sticky, Transformatie, Tabel)
   ========================================================================== */


/* --- 2. Mobiele Aanpassing Transformatie Sectie (Voor vs Na) --- */
@media (max-width: 900px) {
    .transformation-container {
        flex-direction: column; /* Onder elkaar ipv naast elkaar */
        padding: 0 15px; /* Voorkom dat kaarten tegen de rand plakken */
    }

    .trans-card {
        width: 100%; /* Volle breedte */
        box-sizing: border-box;
    }

    .trans-arrow-wrapper {
        transform: rotate(90deg); /* Pijl naar beneden laten wijzen */
        margin: 10px 0; /* Beetje ruimte */
    }
    
    /* Zorg dat de lijsten niet te breed worden */
    .trans-list-bad, .trans-list-good {
        width: 100%;
    }
}

/* --- 3. Mobiele Aanpassing Vergelijkingstabel --- */
@media (max-width: 600px) {
    /* Container padding fix */
    .abo-comparison {
        margin: 40px 10px; /* Iets meer ruimte aan zijkanten */
        border-radius: 15px;
    }

    /* Grid verhoudingen aanpassen voor kleine schermen */
    .cmp-row {
        /* Was: 1fr 90px 90px -> Te breed voor mobiel */
        /* Nieuw: Tekst pakt ruimte, kolommen pakken minimaal nodig */
        grid-template-columns: 1fr 60px 60px; 
        padding: 15px 10px; /* Minder padding aan zijkant */
        gap: 5px; /* Minder witruimte tussen kolommen */
    }
    
    .cmp-header {
        padding: 15px 10px;
    }

    /* Tekst verkleinen in de tabel headers */
    .cmp-col-header {
        font-size: 0.8rem; /* Kleiner font */
        word-wrap: break-word; /* Voorkom uitbreken */
    }
    
    /* Iconen in de feature lijst iets kleiner */
    .feature-icon-prefix {
        margin-right: 5px !important;
    }
    
    .cmp-feature-title {
        font-size: 0.9rem;
    }
    
    .cmp-feature-desc {
        font-size: 0.75rem;
    }
}