/* =============================================================================
   sportcity.css
   Pagina-specifieke stijlen voor /partner-sportcity/
   Globale basis:            style.css
   Gedeelde partner-stijlen: style.css (partner-step-badge, bento-card.partner-card
                              worden aangestuurd via --partner-accent hieronder)
   ============================================================================= */

/* --- Paginakleur: SportCity geel/oranje ---
   Stuurt automatisch alle globale partner-regels aan in style.css,
   zoals .partner-step-badge en .bento-card.partner-card border-top.       */
:root {
    --partner-accent: #f4b52c;
}

/* =============================================================================
   WAVE OVERRIDES — herstel waves die door style.css worden verborgen op mobiel
   ============================================================================= */

/* Herstel bento-wave-divider (journey → about) op mobiel */
@media (max-width: 1023px) {
    .partner-page .bento-wave-divider {
        display: block !important;
    }
}

/* Wave boven pijnspiegel: alleen op mobiel (hero-wave-divider neemt het op desktop over) */
.sc-pijnspiegel-wave-top {
    display: none;
}

@media (max-width: 1023px) {
    .sc-pijnspiegel-wave-top {
        display: block;
        position: absolute;
        top: -1px;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        z-index: 2;
        pointer-events: none;
    }

    .sc-pijnspiegel-wave-top svg {
        display: block;
        width: calc(100% + 2px);
        height: clamp(40px, 6vw, 70px);
        margin-left: -1px;
    }
}

/* =============================================================================
   PIJNSPIEGEL SECTIE
   ============================================================================= */

.sc-pijnspiegel {
    background-color: #2e2e2e;
    padding: clamp(80px, 10vw, 130px) 20px;
    position: relative;
}

/* Subtiele achtergrondtextuur */
.sc-pijnspiegel::before {
    content: '';
    position: absolute;
    top: 5%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 181, 44, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.sc-pijnspiegel__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

/* --- Tekstkolom --- */
.sc-pijnspiegel__text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sc-pijnspiegel__text h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 40px;
}

/* --- Nieuwe, Rustige Klachten Grid --- */
.sc-complaint-grid {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Iets compacter, toont meer als een eenheid */
    margin: 0 0 40px 0;
}

.sc-complaint-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02); /* Nog subtieler */
    border: 1px solid rgba(255, 255, 255, 0.04); /* Bijna onzichtbare border in rust */
    border-radius: 10px;
    padding: 16px 20px;
    transition: all 0.3s ease; /* Rustige ease */
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Subtiele, luxe lift op hover */
.sc-complaint-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15); /* Zacht wit in plaats van schreeuwerig geel */
    transform: translateY(-2px); /* Lift in plaats van slide */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Accent balkje aan de linkerkant - dunner en eleganter */
.sc-complaint-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--partner-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.sc-complaint-item:hover::before {
    transform: scaleY(1);
}

/* Icoontjes: veel rustiger, geen harde gele bolletjes meer */
.sc-complaint-icon {
    width: 36px;
    height: 36px;
    background: rgba(244, 181, 44, 0.08); /* Heel transparant */
    border-radius: 8px; /* Slightly rounded square i.p.v. ronde bol past beter bij een strak design */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--partner-accent);
    font-size: 1rem;
    transition: background 0.3s ease; /* Geen rotatie of schaal meer */
}

.sc-complaint-item:hover .sc-complaint-icon {
    background: rgba(244, 181, 44, 0.15); /* Licht subtiel op, kleur blijft geel */
}

.sc-complaint-text {
    color: rgba(255, 255, 255, 0.75); /* Iets gedimd voor leesbaarheid */
    font-size: clamp(0.95rem, 1.2vw, 1rem);
    font-weight: 400; /* Medium/bold voelt zwaar, regular is mooier hier */
    line-height: 1.5;
    transition: color 0.3s ease;
}

.sc-complaint-item:hover .sc-complaint-text {
    color: #ffffff;
}
/* --- Brug-zin --- */
.sc-pijnspiegel__bridge {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 35px 0;
    font-style: italic;
}

/* --- CTA knop --- */
.sc-pijnspiegel__cta {
    background: var(--partner-accent);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 16px 32px;
    border-radius: 6px;
    align-self: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    /* De standaard shadow is verwijderd, de animatie neemt dit nu over */
    animation: pulse-partner 2.5s infinite;
}

.sc-pijnspiegel__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 181, 44, 0.45);
    color: var(--primary);
    /* Zet de pulse op pauze als de muis erop staat, dat geeft rust tijdens het klikken */
    animation-play-state: paused; 
}
@keyframes pulse-partner {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 181, 44, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(244, 181, 44, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 181, 44, 0);
    }
}
.sc-pijnspiegel__action-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* De wrapper is inline-block, zodat hij precies zo breed is als de knop */
.sc-cta-wrapper {
    position: relative;
    display: inline-block;
    align-self: flex-start; /* Zorgt dat de knop links blijft uitgelijnd */
}

/* Basisregels die voor BEIDE pijlen gelden */
.sc-accent-conversie {
    position: absolute;
    opacity: 0.9;
    pointer-events: none;
    z-index: 5;
}

/* Specifieke regels voor DESKTOP pijl */
.sc-accent-desktop {
    display: block; /* Zichtbaar op desktop */
    top: 100%;
    left: calc(100% + 20px);
    transform: translateY(-50%);
    width: 270px; 
}

/* Specifieke regels voor MOBIELE pijl (verborgen op desktop) */
.sc-accent-mobile {
    display: none; 
}

/* Op mobiel is er vaak geen ruimte rechts naast de knop, 
   dus plaatsen we hem er netjes onder */
   @media (max-width: 768px) {
    .sc-cta-wrapper {
        align-self: center;
        width: 100%;
        text-align: center;
    }
    
    .sc-pijnspiegel__cta {
        width: 100%;
        justify-content: center;
    }

    /* Verberg de desktop pijl */
    .sc-accent-desktop {
        display: none;
    }
    .sc-hidden-break {
        display: none;
    }

    /* Toon en finetune de mobiele pijl */
    .sc-accent-mobile {
        display: block;
        top: calc(100% + 15px); /* Bepaalt de afstand onder de knop. Maak groter/kleiner indien nodig */
        left: 60%; /* Zet het startpunt in het midden */
        
        /* Met translateX kun je hem naar links of rechts schuiven. 
           -50% is exact gecentreerd. Maak het -40% of -60% om de 
           punt van de pijl perfect uit te lijnen! */
        transform: translateX(-50%); 
        
        width: 200px; /* Pas deze breedte aan tot hij goed leesbaar is op je telefoon */
    }
}

/* --- Afbeelding --- */
.sc-pijnspiegel__image {
    position: relative;
    align-self: center;
}

.sc-pijnspiegel__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    
}

/* =============================================================================
   PIJNSPIEGEL — RESPONSIVE
   ============================================================================= */

@media (max-width: 1024px) {
    .sc-pijnspiegel__inner {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .sc-pijnspiegel__inner {
        grid-template-columns: 1fr;
    }

    /* Illustratie verbergen op mobiel — tekst domineert */
    .sc-pijnspiegel__image {
        display: none;
    }

    .sc-pijnspiegel__item {
        font-size: 1rem;
    }

    .sc-pijnspiegel__cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}



.hero-sportcity {
    background-image: url('/img/heroes/hero-sc-partner.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 768px) {
    .hero-sportcity {
        background-image: url('/img/heroes/hero-sc-partner-mobile.jpg');
        background-size: 100% auto;
        background-position: top center;
        padding-top: 85vw;
    }
}
/* =============================================================================
   OVERGANG WAVES
   ============================================================================= */
   .sc-spreekuur-wave-top {
    position: absolute;
    top: -1px; /* Trekt hem strak tegen de rand zonder naadjes */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;

}

.sc-spreekuur-wave-top svg {
    display: block;
    width: calc(100% + 2px); /* +2px voorkomt kieren */
    height: clamp(40px, 6vw, 90px);
    margin-left: -1px;
}
/* =============================================================================
   SPREEKUUR SECTIE
   ============================================================================= */

   .sc-spreekuur {
    background-color: var(--light);
    /* AANGEPAST: De laatste clamp() is aanzienlijk kleiner gemaakt (was 80-130px) */
    padding: clamp(60px, 8vw, 110px) 20px clamp(30px, 4vw, 50px);
    position: relative;
}

.sc-spreekuur__inner {
    display: grid;
    grid-template-columns: minmax(0, 420px) 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

/* --- Afbeelding --- */
.sc-spreekuur__image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* --- Tekst --- */
.sc-spreekuur__intro {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* --- Info card --- */
.sc-spreekuur__card {
    background: white;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--partner-accent);
    padding: 8px 0;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sc-spreekuur__card-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
}

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

.sc-spreekuur__icon {
    color: var(--partner-accent);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.sc-spreekuur__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 3px;
}

.sc-spreekuur__value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

/* --- Nudge zin --- */
.sc-spreekuur__nudge {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* --- Knoppen --- */
.sc-spreekuur__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sc-spreekuur__btn-primary {
    background: var(--partner-accent);
    color: var(--primary);
    font-weight: 800;
    border-color: var(--partner-accent);
}

.sc-spreekuur__btn-primary:hover {
    background: #e0a520;
    border-color: #e0a520;
    color: var(--primary);
}

.sc-spreekuur__btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid #e2e8f0;
}

.sc-spreekuur__btn-secondary:hover {
    border-color: var(--primary);
    background: white;
    color: var(--primary);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .sc-spreekuur__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sc-spreekuur__inner {
        grid-template-columns: 1fr;
    }

    .sc-spreekuur__image {
        max-width: 400px;
        margin: 0 auto;
    }

    .sc-spreekuur__actions .btn {
        width: 100%;
        justify-content: center;
    }
}
/* =============================================================================
   PIJN-CHECK CTA SECTIE
   ============================================================================= */

   .sc-pijncheck {
    background-color: var(--primary);
    /* AANGEPAST: Top padding flink vergroot. Volgorde: Top | L&R | Bottom */
    padding: clamp(130px, 15vw, 180px) 20px clamp(80px, 10vw, 130px);
    position: relative;
}

/* Subtiele gele gloed rechtsonder */
.sc-pijncheck::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 181, 44, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.sc-pijncheck__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

/* --- Tekst --- */
.sc-pijncheck__text h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.sc-pijncheck__intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

/* --- Drie voordelen rij --- */
.sc-pijncheck__voordelen {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.sc-pijncheck__voordeel {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
}

.sc-pijncheck__voordeel i {
    color: var(--partner-accent);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* --- CTA knop --- */
.sc-pijncheck__cta {
    background: var(--partner-accent);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 18px 36px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(244, 181, 44, 0.3);
    margin-bottom: 16px;
    animation: pulse-partner 2.5s infinite;
}

.sc-pijncheck__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 181, 44, 0.45);
    color: var(--primary);
    animation-play-state: paused;
}

/* --- Privacy regel --- */
.sc-pijncheck__privacy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* --- Afbeelding --- */
.sc-pijncheck__image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(244, 181, 44, 0.1);
}

/* --- Responsive --- */

@media (max-width: 768px) {
    .sc-pijncheck__inner {
        grid-template-columns: 1fr;
    }

    /* Afbeelding boven tekst op mobiel */
    .sc-pijncheck__image {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
    }

    .sc-pijncheck__cta {
        width: 100%;
        justify-content: center;
    }

    .sc-pijncheck__voordelen {
        gap: 10px;
    }
}
/* =============================================================================
   PT-ALLIANTIE SECTIE
   ============================================================================= */

   .sc-pt-alliantie {
    background-color: var(--light); /* #F8F9FA */
    /* Padding-top vergroot om de wave divider de ruimte te geven */
    padding: clamp(120px, 14vw, 160px) 20px clamp(80px, 10vw, 130px) 20px;
    position: relative;
}

/* --- Afbeelding via <picture> --- */
.sc-pt-alliantie__image {
    display: block;
    margin-bottom: 60px;
}

.sc-pt-alliantie__image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); /* Schaduw iets zachter gemaakt */
    object-fit: cover;
}

/* --- Drie punten onder de afbeelding --- */
.sc-pt-alliantie__uitleg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* Iets verkleind omdat de kaarten nu hun eigen padding hebben */
}

/* --- De nieuwe Card Styling voor de 3 punten --- */
.sc-pt-alliantie__punt {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #ffffff; /* Witte achtergrond voor de kaart */
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sc-pt-alliantie__punt:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.sc-pt-alliantie__punt-icon {
    width: 52px;
    height: 52px;
    background: rgba(244, 181, 44, 0.12); /* Subtiel SportCity geel */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--partner-accent);
    font-size: 1.3rem; /* Fractie groter */
    flex-shrink: 0;
}

.sc-pt-alliantie__punt h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0 0 8px 0;
}

.sc-pt-alliantie__punt p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .sc-pt-alliantie__uitleg {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sc-pt-alliantie__punt {
        flex-direction: row;
        align-items: flex-start;
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .sc-pt-alliantie__punt {
        flex-direction: column; /* Op hele smalle telefoons toch weer onder elkaar */
    }
}
/* =============================================================================
   TIMELINE JOURNEY SECTIE
   ============================================================================= */

   .sc-journey {
    background-color: #2e2e2e;
    padding: clamp(100px, 15vw, 150px) 20px clamp(80px, 12vw, 120px) 20px;
    position: relative;
    z-index: 3;
}

.sc-timeline {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Desktop Layout: Horizontale interactieve slider --- */
@media (min-width: 769px) {
    .sc-timeline__stepper {
        display: flex;
        justify-content: space-between;
        position: relative;
        margin-bottom: 60px;
    }

    .sc-timeline__progress-bar {
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        z-index: 1;
        border-radius: 2px;
    }

    .sc-timeline__progress-fill {
        height: 100%;
        background: var(--partner-accent);
        width: 0%;
        transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        border-radius: 2px;
    }

    .sc-timeline__step {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        position: relative;
        z-index: 2;
        flex: 1;
        outline: none;
    }

    .sc-timeline__icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.021);
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.35);
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .sc-timeline__step-title {
        color: rgba(255, 255, 255, 0.5);
        font-family: var(--font-head);
        font-weight: 700;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

    /* Active & Hover States */
    .sc-timeline__step:hover .sc-timeline__icon {
        border-color: rgba(255, 255, 255, 0.5);
        color: rgba(255, 255, 255, 0.8);
        transform: scale(1.1);
    }

    .sc-timeline__step.is-active .sc-timeline__icon {
        background: var(--partner-accent);
        border-color: var(--partner-accent);
        color: var(--primary);
        transform: scale(1.15);
        box-shadow: 0 0 20px rgba(244, 181, 44, 0.4);
    }

    .sc-timeline__step.is-active .sc-timeline__step-title {
        color: var(--partner-accent);
    }

    /* De Slider Content Box */
    .sc-timeline__slides {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 40px;
        position: relative;
        min-height: 200px;
    }

    .sc-timeline__slide {
        position: absolute;
        top: 40px;
        left: 40px;
        width: calc(100% - 80px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.35s ease, transform 0.35s ease,
                    visibility 0s linear 0.35s;
    }

    .sc-timeline__slide.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity 0.35s ease, transform 0.35s ease,
                    visibility 0s linear 0s;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }

    .sc-timeline__slide-title {
        color: #ffffff;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .sc-timeline__slide p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.05rem;
        line-height: 1.7;
        margin: 0;
    }
}

/* --- Mobile Layout: Verticale Stack --- */
@media (max-width: 768px) {
    .sc-timeline__progress-bar { display: none; }
    .sc-timeline__stepper { display: none; }

    .sc-timeline__slides {
        display: flex;
        flex-direction: column;
        gap: 0;
        counter-reset: step-counter;
        position: relative;
        padding-left: 44px;
    }

    /* Verticale verbindingslijn */
    .sc-timeline__slides::before {
        content: '';
        position: absolute;
        left: 13px;
        top: 20px;
        bottom: 20px;
        width: 2px;
        background: rgba(255, 255, 255, 0.12);
    }

    .sc-timeline__slide {
        position: relative;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 22px 20px 22px 20px;
        margin-bottom: 16px;
        opacity: 1;
        visibility: visible;
    }

    .sc-timeline__slide:last-child {
        margin-bottom: 0;
    }

    /* Genummerd badge op de verticale lijn */
    .sc-timeline__slide::before {
        counter-increment: step-counter;
        content: counter(step-counter);
        position: absolute;
        left: -34px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        background: var(--partner-accent);
        color: var(--primary);
        border-radius: 50%;
        font-weight: 800;
        font-size: 0.85rem;
        font-family: var(--font-head);
        text-align: center;
        line-height: 28px;
        z-index: 1;
    }

    .sc-timeline__slide-title {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 8px;
        display: block;
        align-items: unset;
        gap: unset;
    }

    .sc-timeline__slide p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }
}

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

.sc-footer-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: calc(100% + 2px);
    overflow: hidden;
    line-height: 0;
    z-index: 4;
    pointer-events: none;
}

.sc-footer-wave-top svg {
    display: block;
    width: 100%;
    height: clamp(30px, 6vw, 90px);
    margin-left: -1px;
}

.footer-icon {
    color: var(--accent);
    margin-right: 5px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #ffffff;
}

/* Mobiel: footer-wave verbergen (wave staat absoluut t.o.v. footer,
   werkt niet als footer zelf position:relative krijgt via mobiel fix) */
@media (max-width: 768px) {
    .footer-wave-inner {
        display: none;
    }
}
