/* ===== ROOT ===== */
:root {
    --color-primary: #F2EDE4;
    --color-secondary: #5B2EFF;
    --color-dark: #0A0A0A;
    --color-light: #FFFFFF;
    --color-muted: #777777;
    --color-border: #DDDDDD;
    --button-padding: 8px 32px 8px 24px;
    --button-padding-Outline: 7px 32px 7px 24px;
    --button-border: 4px 8px 16px 8px;
    --fontsize-mainP: 18px;
    --fontsize-heroP: 22px;
    --imageRadius: 16px;
    --gap: 24px;
    --h1-fontsize: 60px;
    --h2-fontsize: 48px;
    --h3-fontsize: 32px;
    --h4-fontsize: 26px;


    --font-heading: "Clash Grotesk", Helvetica, Arial, sans-serif;
    --font-main: "Geist", Helvetica, Arial, sans-serif;
    --font-menu: "Geist Mono", Helvetica, Arial, sans-serif;
}
/* ===== RESET ===== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    position: relative;
}

html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--font-main);
    background: var(--color-primary);
    color: var(--color-dark);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    image-rendering: optimizeSpeed;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
    font-weight: 400;
}
.menu-item a {
    font-weight: 400;
}
.menu-item a:hover {
    font-weight: 500;
}

button,
input,
textarea,
select {
    font: inherit;
}


/*--- 
----- MAIN CSS ELEMENTS -----
---*/

h1 {
    font-family: var(--font-heading);
    font-size: var(--h1-fontsize);
    color: var(--color-secondary);
    font-weight: 800;
    text-align:center;
    max-width: 1200px;
    line-height: 1.1;
    word-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
h2 {
    font-family: var(--font-heading);
    font-size: var(--h2-fontsize);
    font-weight: 700;
    line-height: 1.1;
    word-spacing: 0.1em;
    }
h3 {
    font-family: var(--font-heading);
    font-size: var(--h3-fontsize);
    font-weight: 600;
    line-height: 1.05;
    word-spacing: 1.1; 
    word-spacing: 0.1em;
    }
h4 {
    font-family: var(--font-heading);
    font-size: var(--h4-fontsize);
    font-weight: 600;
    line-height: 1.05;
    word-spacing: 0.1em;
    }
p {
    font-family: var(--font-main);
    font-size: var(--fontsize-mainP);
    font-weight: 500;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }

.footerAddress{
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.aboutMain {
    max-width: 500px;
}
.heroP {
    margin-top: 8px;
    font-family:A var(--font-main);
    text-align:center;
    font-size: var(--fontsize-heroP);
    font-weight: 400;
    max-width: 800px;
    }
.sectionTitle {
    font-family: var(--font-menu);
    color: var(--color-secondary);
    font-size: 16px;
    margin-bottom: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.faqTitleBlock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.faqTitle {
    font-family: var(--font-menu);
    color: var(--color-secondary);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    margin: 0 auto 16px auto;
}
.pCentered {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}
li {
    padding: 6px 0;
}

/*--- 
----- HEADER -----
---*/

.site-header,
.site-footer {
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.header-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
}
.site-logo {
    text-decoration: none;
    font-weight: bold;
    color: var(--color-dark);
    z-index: 9999;
}
.site-nav {
    font-family: var(--font-menu);
    font-size: 18px;
    font-variant-caps: normal;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 24px;

}
.main-menu {
    font-family: var(--font-menu);
    display: flex;
    gap: 24px;
    list-style: none;
}

.main-menu a {
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-dark);
    font-family: var(--font-menu);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-dark);
    display: block;
}


/*--- 
----- FLEXBOX -----
---*/

.flexHorizontal {
    display:flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    gap: 24px;
}

.flexHorizontal.centered {
    display:flex;
    justify-content: center;
    width: 100%;
    gap: 24px;
}

.flexVertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.aboutUl {
    list-style: none;
    padding: 4px 0;
}


/*--- 
----- SITE CONTENT -----
---*/

.site-main {
    min-height: 70vh;
}
.heroSection {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
}
.sectionPadding {
    width: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.sectionContent {
    width: 100%;
    display: flex; 
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.sectionTitleBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
}
.heroImageBlock {
    position:relative;
    width: 100%;
    max-width: 100vw;
    margin-top: 32px;
    background-color: grey;
    height: 700px;
    border: none;
    border-radius: var(--imageRadius);
}
.div30 {
    width: 100%;
    max-width: 30%;
}
.div50 {
    flex: 1 1 0;
    min-width: 0;
    align-items: stretch;
    display: flex;
    flex-direction: column;
}
.div70 {
    width: 100%;
    max-width: 70%;
}
.sectionBenefitsContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 32px;
    padding: 24px 0;
    border-bottom: 2px solid var(--color-secondary);
}
.sectionBenefitNumber {
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
}
.sectionBenefit {
    font-size: calc(var(--fontsize-mainP) + 3px);
}
.tempImg {
    height: 540px;
    width: 100%;
    background-color: grey;
    border: none;
    border-radius: var(--imageRadius);
}
.serviceCardBlock {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 24px 32px;
    border-radius: var(--imageRadius);
    background: var(--color-light);
}

/*--- FAQ ---*/
.faqContainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    gap: 24px;
}
.faqBlock {
    width: 100%;
    cursor: pointer;
}

.faqQuestionBlock {
    display: flex;
    width: 100%;
    gap: 16px;
    justify-content: center;
    align-items: center;
    align-content:  center;
    background-color: var(--color-light);
    border: none;
    border-radius: 8px;
    z-index: 5;
    padding: 16px 64px;
}

.faqQuestion {
    width: 100%;
    text-align:center;
    font-weight: 700;

}
.faqAnswer {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding: 0 64px 16px 64px;
    margin-top: -4px;
    background-color: var(--color-light);
    border: none;
    border-radius: 0 0 8px 8px;
    z-index: 4;
}

.faqAnswer p {
    opacity: 0;
    transform: translateY(-8px);
}

.faqBlock.is-open .faqArrowDown {
    transform: rotate(540deg);
}

.faqArrowDown {
    transition-delay: 0.3s;
    transition: transform 0.7s ease;
}


/*--- Formulas page ---*/

.flexHorizontal.formulas {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: var(--gap);
}
.flexHorizontal.formulas h2 {
    font-size: calc(var(--h2-fontsize)*0.8);
}
.formulaPrimaryBlock {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 400px;
    background-color: grey;
    border-radius: var(--imageRadius);
    border: none;
    overflow: hidden;
    cursor: pointer;
}
.formulaInnerLeft {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 40px;
}
.formulaInnerRight {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 60px;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}
.formulaPrimaryBlock.is-active .formulaInnerRight {
    transform: translateX(0);
}
.formulaInnerRight li {
    list-style: none;
    padding: 4px 0 4px 0;
}
.formulaInnerRight .secondaryButton {
    color: var(--color-light);
    border: 1px solid var(--color-light);
}
.formulaSecondaryBlock {
    width: calc((100% - var(--gap))/2);
    height: 400px;
    border-radius: var(--imageRadius);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.formulaCardFront {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 40px;
    background-color: grey;
    border-radius: var(--imageRadius);
}
.formulaCardBack {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 60px;
    background-color: var(--color-dark);
    color: var(--color-light);
    border-radius: var(--imageRadius);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}
.formulaSecondaryBlock.is-flipped .formulaCardBack {
    transform: translateX(0);
}
.formulaCardBack li {
    list-style: none;
    padding: 4px 0;
}
.formulaCardBack .secondaryButton {
    color: var(--color-light);
    border: 1px solid var(--color-light);
}

/*--- Service page  ---*/

.sectionBenefitsList,
.serviceCardList {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.serviceCardList {
    align-items: stretch;
}

/*--- About Page ---*/
.imgVertical {
    border: none;
    border-radius: var(--imageRadius);
    width: 100%;
    height: 380px;
    background-color: grey;
    margin-bottom: 24px;
}
.imgVertical::after {
    margin-bottom: 0;
}





/*--- Contact Page ---*/

.contactSection {
    background-color: var(--color-dark);
    color: var(--color-light);
    margin-bottom: -64px;
    overflow: hidden;
    transform-origin: bottom center;
    will-change: transform;
}

.contactSection .formMainContainer {
    opacity: 0;
    transform: translateY(32px);
    will-change: opacity, transform;
}



/*--- 
----- DROPDOWN ELEMENTS -----
---*/

/*--- Formula card ---*/

.sectionDropdown {
    width: 100%;
}
.dropdownTitle {
    width: 100%;
    cursor: pointer;
    display: flex; 
    justify-content: space-between;
    padding: 8px 4px 8px 0;
    border-bottom: 1px solid var(--color-dark);
    user-select: none;
    margin-bottom: 8px;
}

.dropdownTitle p {
    font-weight: 500;
}

.dropdownElement {
    height: 0;
    overflow: hidden;
}

.dropdownElement ul {
    list-style: none;
    padding: 0 0 16px;
}

.dropdownElement li {
    opacity: 0;
    transform: translateY(-8px);
}



/*--- 
----- FOOTER -----
---*/
.footerContainer {
    width: 100%;
    margin-top: 64px;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}
.footer1 {
    width:50%;
}
.footer2Block {
    display: flex;
    justify-content: flex-end;
    gap: 15vw;
}
.footer-trademark {
    text-align: center;
    padding: 0 0 8px 0;
} 
.footer-trademark p {
    font-family: var(--font-main);
    font-size: 14px;
}
.footerLink {
    width:100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px 8px 60px;
}
.footerLink p {
    font-family: var(--font-main);
    font-weight: 300;
}
.footerTitle {
    font-family: var(--font-main);
    font-weight: 600;
    margin-bottom: 16px;
}
.hotpotatoLink {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}
.legalBlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.footerNav {
    display: flex;
    font-family: var(--font-main);
    list-style: none;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.footerNav li {
    padding: 6px 0;
}

.footerLogo {
    width: auto;
    height: 40px;
    display: block;
    object-fit: contain;
}



/*--- 
----- BUTTONS -----
---*/

.mainButton {
        font-variant-caps: titling-caps;
        padding: var(--button-padding);
        border: none;
        border-radius: var(--button-border);
        color: white;
        font-family: var(--font-main);
        font-size: 18px;
        background-color: var(--color-secondary);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .secondaryButton {
        font-variant-caps: titling-caps;
        padding: var(--button-padding-Outline);
        border: 2px solid var(--color-dark);
        border-radius: var(--button-border);
        font-family: var(--font-main);
        background-color: transparent;
        font-size: 18px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }



    /*--- 
----- INFINITY SLIDER CERTIFICATES -----
---*/

.certificates {
    width: 100%;
    overflow: hidden;
    padding: 24px 0 48px 0;
}

.certificateSlider {
    width: 100%;
    overflow: hidden;
}

.certificateSlide-track {
    display: flex;
    width: max-content;
    animation: certificateScroll 25s linear infinite;
    animation-play-state: paused;
}

.certificate {
    flex: 0 0 auto;
    padding: 0 40px;
}

.certificate img {
    height: 20px;
    width: auto;
    display: block;
    object-fit: contain;
}

@keyframes certificateScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/*--- 
----- SPACERS -----
---*/
.spacer8px {
    height: 8px;
}
.spacer16px {
    height: 16px;
}
.spacer24px {
    height: 24px;
}
.spacer32px {
    height: 32px;
}
.space40px {
    height: 40px;
}
.spacer48px {
    height: 48px;
}
.spacer56px {
    height: 56px;
}
.spacer64px {
    height: 64px;
}
.spacer72px {
    height: 72px;
}
.spacer80px {
    height: 80px;
}


/*--- 
----- FORMS -----
---*/

/*--- Newsletter form ---*/
.ff-el-group.newsletterInputBlock {
    width: 400px;
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ff-el-form-control.newsletterInputField {
    width: 100%;
    border: none;
    margin:0 0 8px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ff-btn.ff-btn-submit.ff-btn-md.mailingListButton.ff_btn_style.wpf_has_custom_css {
    border: none;
    margin: 0;
    border-radius: var(--button-border);
    padding: var(--button-padding);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*--- Main Form ---*/
.formMainContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
} 
.formIntroBlock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.formIntroBlock .flexVertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.formIntroBlock p {
    text-align: center;
}
.mainFormContainer {
    width: 70%;
    padding: 48px;
    border: none;
    border-radius: var(--imageRadius);
    margin: 0 auto;
}
.ff-el-form-control.formField {
    width: 100%;
    margin-top: 4px;
    border: 1px solid var(--color-muted);
}



/*--- 
----- SCROLL SNAP -----
---*/
/* Scroll snap - lichte inertia richting volgende sectie */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
        scroll-snap-type: none;
    }
}



/*--- 
-----
----- RESPONSIVENESS -----
-----
---*/


/*--- Mobile menu ---*/



@media (max-width: 1200px) {
    body.mobile-menu-open {
        overflow: hidden;
    }
    .menu-toggle span {
        transform-origin: center center;
        will-change: transform, opacity;
    }
    .menu-toggle {
        display: flex;
    }
    .header-wrapper {
    padding: 0;
}
    .site-logo {
    padding: 24px 0 0 60px;
}
    .menu-toggle {
    padding: 24px 24px 0 0;
    z-index: 9999;
}
    .site-nav {
        display: none;
        position: absolute;
        overflow: hidden;
        will-change: transform;
        top: 0;
        left: 0;
        right: 0;
    }
    .site-nav .mainButton {
        margin-top: 24px;
        margin-right: 36px;
        will-change: transform;
        overflow: hidden;
    }
    .site-nav a {
        -webkit-font-smoothing: antialiased;
        font-family: var(--font-main);
        font-weight: 400;
        width: 100%;
        padding: 24px 16px;
        font-size: 21px;
        margin: 0 0 0 auto;

    }
    .site-nav .mainButton {
        margin-top: 24px;
        margin-right: 36px;
        will-change: transform;
        overflow: hidden;
    }
    .site-nav .main-menu > li,
    .site-nav > .mainButton {
        will-change: transform, opacity;
    }

    .site-nav.is-active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        z-index: 9990;
        width: 100%;
        background: var(--color-light);
        padding: 80px 60px 60px 60px;
    }

    .main-menu {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-end;
        flex-direction: column;
        gap: 24px;
    }

}



/*--- Desktop 2 ---*/

@media (max-width: 1425px) {
    :root {
    --fontsize-mainP: 16px;
    --fontsize-heroP: 21px;
    --gap: 24px;
    --h1-fontsize: 60px;
    --h2-fontsize: 43px;
    --h3-fontsize: 32px;
    --h4-fontsize: 26px;
    }

    .mainButton {
        font-size: 16px;
    }
    .secondaryButton {
        font-size: 16px;
    }
    .sectionBenefit {
        font-size: calc(var(--fontsize-mainP) + 2px);
    }
    .sectionPadding {
        padding: 48px;
    }


}

/*--- Tablet 1 - HomeServices Horizontal ---*/

@media (max-width: 1000px) {
    :root {
    --fontsize-mainP: 16px;
    --fontsize-heroP: 21px;
    --gap: 24px;
    --h1-fontsize: 60px;
    --h2-fontsize: 43px;
    --h3-fontsize: 32px;
    --h4-fontsize: 26px;
    }

    .mainButton {
        font-size: 16px;
    }
    .secondaryButton {
        font-size: 16px;
    }
    .sectionBenefit {
        font-size: calc(var(--fontsize-mainP) + 2px);
    }
    .sectionPadding {
        padding: 48px;
    }


}

/*--- Phone ---*/

@media (max-width: 767px) {
    :root {
    --fontsize-mainP: 17px;
    --fontsize-heroP: 19px;
    --gap: 24px;
    --imageRadius: 10px;
    --h1-fontsize: 42px;
    --h2-fontsize: 36px;
    --h3-fontsize: 30px;
    --h4-fontsize: 24px;
    }
    .site-nav.is-active {
        padding: 120px 8px 80px 8px;
    }
    .site-nav .mainButton {
        margin-right: 16px;
    }
    .formuleH1 {
        padding: 0 24px;
    }
    h1 {
        margin-top: 40px;
        text-align: left;
        width:100%;
    }
    .heroP {
        text-align: left;
        width: 100%;

    }

    .mainButton {
        font-size: 16px;
    }
    .secondaryButton {
        font-size: 16px;
    }
    .sectionBenefitsContainer {
        padding: 16px 0;
    }
    .sectionBenefit {
        font-size: 18px;
    }
    .sectionPadding {
        padding: 48px 24px;
    }
    .flexHorizontal {
        flex-direction:column;
        justify-content: center;
        align-items: flex-start;
    }
    .div30 {
        max-width: 100%;
    }
    .div50 {
        max-width: 100%;
    }
    .div70 {
        max-width: 100%;
    }
    .flexHorizontal.formulas {
        gap: 16px;
    }
    .formulaPrimaryBlock {
        height: 240px;
        border-radius: 0;
    }
    .formulaInnerLeft {
        padding: 24px;
    }
    .formulaInnerRight {
        width: 100%;
        padding: 24px;
    }
    .formulaInnerRight h3 {
        font-size: 24px;
    }
    .formulaSecondaryBlock {
        width: 100%;
        border-radius: 0;
        height: 240px;
    }
    .formulaCardFront {
        padding: 24px;
        border-radius: 0;
    }
    .formulaCardBack {
        padding: 24px;
        border-radius: 0;
    }
    .formulaCardBack h3 {
        font-size: 24px;
    }


    .faqQuestionBlock {
    display: flex;
    width: 100%;
    gap: 16px;
    justify-content: center;
    align-items: center;
    align-content:  center;
    background-color: var(--color-light);
    border: none;
    border-radius: 8px;
    z-index: 5;
    padding: 16px 64px;
}

.faqQuestionBlock {
    padding: 8px 16px;
}
.faqAnswer {
    padding: 0 16px 8px 16px;
}

.mainFormContainer {
    width: 100%;
    padding: 48px 0;
}

/*--- Slider Cards ---*/

.mobileSliderPadding {
    padding-left: 0;
    padding-right: 0;
  }
.sectionTitleBlock {
    padding: 0 24px;
}
.mobileCardSlider {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: var(--gap);
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
.mobileSliderCard {
    flex: 0 0 80vw;
    max-width: 80vw;
    scroll-snap-align: center;
  }
.mobileCardSlider::-webkit-scrollbar {
    display: none;
  }
/* Spacer links */
.mobileCardSlider::before {
    content: "";
    flex: 0 0 24px;
}

/* Spacer rechts */
.mobileCardSlider::after {
    content: "";
    flex: 0 0 24px;
}

.mobileSliderCard {
    flex: 0 0 80vw;
    max-width: 80vw;

    scroll-snap-align: start;
}

}
/* ===== ACCESSIBILITY ADDITIONS ===== */
.skipLink {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10000;
    padding: 12px 16px;
    background: var(--color-light);
    color: var(--color-dark);
    border: 2px solid currentColor;
    border-radius: 6px;
    transform: translateY(-150%);
}
.skipLink:focus { transform: translateY(0); }

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 4px;
}

.dropdownTitle,
.faqQuestionBlock {
    font: inherit;
    color: inherit;
}
.dropdownTitle {
    border: 0;
    border-bottom: 1px solid var(--color-dark);
    background: transparent;
    text-align: left;
}
.dropdownTitle[aria-expanded="true"] .arrowDown,
.faqQuestionBlock[aria-expanded="true"] .faqArrowDown {
    transform: rotate(180deg);
}
.dropdownElement[hidden],
.faqAnswer[hidden] { display: none; }

.sectionBenefitsList,
.approachList {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: accessible-counter;
}
.sectionBenefitsList > li,
.approachList > li {
    counter-increment: accessible-counter;
}
.sectionBenefitsList > li::before,
.approachList > li::before {
    content: counter(accessible-counter) ".";
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 40px;
    width: 30px;
    font-weight: 700;
    flex: 0 0 auto;
}
.approachList {
    display: flex;
    gap: var(--gap);
}
.approachList > li { flex: 1 1 0; }

.carouselControls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}
.carouselButton {
    min-width: 44px;
    min-height: 44px;
    border: 2px solid var(--color-dark);
    border-radius: 999px;
    background: transparent;
    color: inherit;
    cursor: pointer;
}
.carouselButton:disabled { opacity: 0.4; cursor: not-allowed; }
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.carouselStatus {
    position: absolute;
}

.certificateMarqueeCopy { display: flex; }
.legalBlock { list-style: none; }

@media (max-width: 767px) {
    .carouselControls { display: flex; }
    .approachList {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    .approachList > li {
        flex: 0 0 80vw;
        scroll-snap-align: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
