/* ========================================
   Fonts
   ======================================== */
@font-face {
    font-family: 'Beatrice';
    src: url('/fonts/Beatrice-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Beatrice';
    src: url('/fonts/Beatrice-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Beatrice';
    src: url('/fonts/Beatrice-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Beatrice';
    src: url('/fonts/Beatrice-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Golden Hopes';
    src: url('/fonts/GoldenHopes-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   CSS Reset & Base
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-bg: #ffffff;
    --color-header-bg: rgba(231, 229, 223, 0.15);
    --color-text: #000000;
    --color-text-light: #666666;
    --color-border: #000000;
    --gris-chaud-15: #F8F7F6;
    --gris-chaud-25: rgba(231, 229, 223, 0.25);
    --chair-14: #F7F3F3;
    --chair-80: #E6D7D6;

    /* Typography */
    --font-family: 'Beatrice', 'Helvetica Neue', Arial, sans-serif;
    --font-family-accent: 'Golden Hopes', cursive;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Transitions */
    --transition: 0.3s ease;

    --breakpoint-mobile: 768px;
    --breakpoint-tablet: 1024px;
    --breakpoint-desktop: 1200px;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    overscroll-behavior: none;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition);
}

ul, ol {
    list-style: none;
}

sup {
    font-size: 0.6em;
    vertical-align: super;
    white-space: nowrap;
    line-height: 0;
}
/* ========================================
   Header
   ======================================== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    --padding-vertical: 20px;
    --padding-horizontal: 50px;
}
@media (max-width: 1024px) {
    header .header-inner {
        --padding-horizontal: 30px;
    }
}
@media (max-width: 768px) {
    header .header-inner {
        --padding-horizontal: 25px;
    }    
}

header .header-inner {
    position: relative;

    padding: var(--padding-vertical) var(--padding-horizontal);

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Logo */
header .header-inner .site-logo {
    display: flex;
    align-items: center;
}
header .header-inner .site-logo img {
    height: 65px;
    margin-top: 5px;
    margin-bottom: -10px;
    width: auto;
}

/* Nav */
header .header-inner .site-nav {
    position: absolute;
    right: var(--padding-horizontal);
    bottom: var(--padding-vertical);
}

header .header-inner .site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

header .nav-btn {
    padding: 6px 10px 5px;
    
    display: inline-block;
    
    border: 1px solid var(--color-black);
    color: var(--color-black);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.0625rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition);
}
header .nav-btn.sup {
    padding-right: 5px;
}

header .nav-btn:hover {
    background-color: var(--color-black);
    color: var(--gris-chaud-15);
    border: 1px solid var(--color-black);
}
header .nav-btn--active {
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

/* Burger Menu */
header .header-inner .burger-menu {
    display: none;
    position: absolute;
    right: var(--padding-horizontal);
    bottom: var(--padding-vertical);
    padding: 3px 10px;
    
    align-items: center;
    gap: 20px;
    
    background: none;
    border: 1px solid var(--color-black);
    cursor: pointer;    
}
header .header-inner .burger-menu .burger {
    position: relative;
    width: 24px;    height: 24px;
}
header .header-inner .burger-menu .burger span {
    position: absolute;
    width: 18px;    height: 2px;
    left: 3px;

    background-color: var(--color-black);
    transition: all .5s ease;
    transform-origin: center;
}
header .header-inner .burger-menu .burger span:nth-child(1) {
    top: 6px;
}
header .header-inner .burger-menu .burger span:nth-child(2),
header .header-inner .burger-menu .burger span:nth-child(3) {
    top: 11px;
}
header .header-inner .burger-menu .burger span:nth-child(4) {
    top: 16px;
}
header .header-inner .burger-menu:hover {
    background-color: var(--color-black);
}
header .header-inner .burger-menu:hover .burger span {
    background-color: var(--color-white);
}

header .mobile-nav {
    display: none;

    position: fixed;
    top: 0;   left: 0;   right: 0;
    height: 100vh;
    padding: 135px 20px 20px;

    background-color: rgba(230, 215, 214, 0.98);
}
header .mobile-nav ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    header .header-inner {
        justify-content: flex-start;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    header .header-inner .site-nav {
        display: none;
    }

    header .header-inner .burger-menu {
        display: flex;
    }
    header .header-inner .burger-menu.is-active .burger span:nth-child(1),
    header .header-inner .burger-menu.is-active .burger span:nth-child(4) {
        opacity: 0;
    }
    header .header-inner .burger-menu.is-active .burger span:nth-child(2) {
        transform: rotate(45deg);
    }
    header .header-inner .burger-menu.is-active .burger span:nth-child(3) {
        transform: rotate(-45deg);
    }
    header .mobile-nav.is-open {
        display: block;
    }
}

/* ========================================
   Footer
   ======================================== */
footer {
    position: relative;
    z-index: 1;
    margin-top: auto;

    --padding-vertical: 60px;
    --padding-horizontal: 50px;

    background: var(--color-bg);
}
@media (max-width: 1024px) {
    footer {
        --padding-horizontal: 40px;
    }
}
@media (max-width: 768px) {
    footer {
        --padding-horizontal: 25px;
    }
}
footer .prefooter__inner{
    padding: 40px var(--padding-horizontal);
}
footer .footer-inner {
    padding: var(--padding-vertical) var(--padding-horizontal);
}

/* Prefooter */
.prefooter {
    background-color: #F8F7F6;
}

.prefooter__inner {
    display: flex;
    justify-content: flex-end;
}

.prefooter__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #D83A3E;
}

/* Footer main */
.footer-main {
    background: linear-gradient(to right, #e6d7d6, rgba(230, 215, 214, 0.6));
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Logos row */
.footer-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.footer-logos__left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-baseline {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4;
    color: var(--color-black);
}

.footer-allergan {
    height: 55px;
    width: auto;
}

/* Footer nav */
.footer-nav {
    padding-top: 30px;

    display: flex;
    gap: 10px;
    border-top: 1px solid var(--color-black);
}

.footer-nav__col {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 3px;
}

.footer-nav__title {
    margin-bottom: 2px;

    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-black);
}

.footer-nav__title sup {
    font-size: 0.5625rem;
}

.footer-nav__list {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.5;
}

.footer-nav__list li {
    margin-bottom: 1px;
    display: flex;
}
.footer-nav__list li::before {
    content: ">";
    margin-right: 6px;
    color: var(--color-black);
}
.footer-nav__list li a {
    white-space: break-spaces;
    transition: opacity 0.3s ease;
}
.footer-nav__list li a:hover {
    opacity: 0.4;
}

/* Legal mentions */
.footer-legal {
    padding-top: 20px;
    
    border-top: 1px solid var(--color-black);
    font-size: 0.75rem;
    color: var(--color-black);
    line-height: 1.5;
}

.footer-legal p {
    margin-bottom: 8px;
    text-align: left;
}

.footer-legal p:last-child {
    margin-bottom: 0;
}

/* Footer links */
.footer-links {
    padding-top: 20px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    
    border-top: 1px solid var(--color-black);
    font-size: 0.75rem;
    color: var(--color-black);
}

.footer-links a {
    text-decoration: underline;
    color: var(--color-black);
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-links span {
    margin: 0 6px;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .footer-logos__left {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-baseline {
        padding-left: 230px;
        font-size: 0.9375rem;
    }

    .footer-nav {
        padding-top: 20px;
    }

    .footer-nav__col:empty {
        display: none;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .prefooter__inner {
        padding: 40px 25px;
    }

    .footer-inner {
        padding: 40px 25px 30px;
    }

    .footer-logos {
        padding-bottom: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 60px;
    }

    .footer-logos__left {
        gap: 10px;
    }

    .footer-baseline {
        padding-left: 0;
    }

    .footer-logos__right {
        align-self: flex-start;
    }

    .footer-nav {
        padding-top: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .footer-links span {
        display: none;
    }

    .footer-links a {
        display: block;
    }
}

@media (min-width: 1025px) {    
    .version-tablet {
        display: none !important;
    }
    .version-mobile {
        display: none !important;
    }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .version-desktop {
        display: none !important;
    }
    .version-mobile {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .version-desktop {
        display: none !important;
    }
    .version-tablet {
        display: none !important;
    }
}

/* ========================================
   Shared Components
   ======================================== */

/* ---- CTA Button ---- */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;

    background-color: var(--chair-80);
    color: var(--color-black);
    font-size: 1.1875rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition);
}
.cta-btn .icon-arrow {
    width: 22px;
    height: 16px;
    flex-shrink: 0;
}
.cta-btn:hover,
.cta-btn:active {
    gap: 40px;
    margin-right: -20px;
    background-color: var(--color-black);
    color: var(--gris-chaud-15);
}

/* ========================================
   schema-carousel
   ======================================== */
.schema-carousel {
    position: relative;
}
.schema-carousel .schema-carousel__background {
    position: relative;
}
.schema-carousel .schema-carousel__background .schema-carousel__image {
    width: 100%;
    height: auto;
}
.schema-carousel .schema-carousel__background  .schema-carousel__btn {
    position: absolute;
    width: 44px;    height: 44px;
    aspect-ratio: 1/1;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--chair-80);
    color: var(--color-black);
    cursor: pointer;
    transition: all var(--transition);
    transform: translate(-50%, -50%);
}
.schema-carousel .schema-carousel__background  .schema-carousel__btn p {
    padding-top: 5%;
    text-align: center;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
}
.schema-carousel .schema-carousel__background  .schema-carousel__btn:hover,
.schema-carousel .schema-carousel__background  .schema-carousel__btn:active,
.schema-carousel .schema-carousel__background  .schema-carousel__btn.schema-carousel__btn--active {
    background: var(--color-black);
    color: var(--gris-chaud-15);
}
.schema-carousel .schema-carousel__content {
    margin-top: 50px;
    user-select: none;
}
.schema-carousel .schema-carousel__content .schema-carousel__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.schema-carousel .schema-carousel__content .schema-carousel__step:not(.schema-carousel__step--active) {
    display: none;
}
.schema-carousel .schema-carousel__content .schema-carousel__step p {
    text-align: center;
}
.schema-carousel .schema-carousel__content .schema-carousel__step p.schema-carousel__label {
    color: var(--color-black);
    font-size: 1.1875rem;
    font-weight: 400;
}
.schema-carousel .schema-carousel__content .schema-carousel__step p.schema-carousel__text {
    margin-top: -20px;
    color: var(--color-black);
    font-size: 1.1875rem;
    font-style: italic;
    font-weight: 300;
}
.schema-carousel .schema-carousel__content .schema-carousel__step p.schema-carousel__text::before {
    content: '';
    display: inline-block;
    width: 10px;    height: 10px;
    margin-right: 5px;

    background: url(../images/icon-triangle-right.svg) no-repeat center;
}
.schema-carousel .schema-carousel__content .schema-carousel__step .picto {
    width: 44px;    height: 44px;
    aspect-ratio: 1/1;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--color-black);
    color: var(--gris-chaud-15);
}
.schema-carousel .schema-carousel__content .schema-carousel__step .picto p {
    padding-top: 5%;

    text-align: center;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 600;
}

/* ========================================
   Video Hero
   ======================================== */
.video-hero {
    position: relative;
    width: 100%;
    height: fit-content;
    background-color: var(--color-black);
}

.video-hero video,
.video-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.video-hero__cta {
    position: absolute;
    bottom: 50px;
    left: 50%;
    padding-bottom: 15px;

    transform: translateX(-50%);
    z-index: 2;
}

.video-hero__player {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 10px;
}

.video-hero__player button {
    width: 24px;
    height: 24px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-white);
}

.video-hero__player button img {
    width: 24px;
    height: 24px;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .video-hero {
        
    }
    .video-hero__cta {
        bottom: 40px;
        left: 40px;
        transform: none;
    }
    .video-hero__player {
        bottom: 40px;
        right: 40px;
    }
}
/* ---- Mobile ---- */
@media (max-width: 768px) {
    .video-hero.video-hero--with-cta {
        margin-bottom: 80px;
    }
    .video-hero__cta {
        width: 100%;
        top: 100%;  left: 0;
        bottom: auto;
        transform: none;
    }
    .video-hero__player {
        bottom: 25px;
        right: 25px;
    }
}


/* ========================================
   Section Intro (title + script subtitle)
   ======================================== */
.section-intro {
    padding: 100px 50px 80px;

    text-align: center;
    color: var(--color-black);
}

.section-intro__surtitle {
    font-size: 1.375rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 30px;
}

.section-intro__title {
    font-size: 3.125rem;
    font-weight: 600;
}

.section-intro__script {
    font-family: var(--font-family-accent);
    font-size: 7.5rem;
    line-height: 0.9;
    font-weight: 400;
}

.section-intro__text {
    margin-top: 70px;

    font-size: 1.375rem;
    line-height: 34px;
    text-align: justify;
}

.section-intro__text--cols {
    display: flex;
    gap: 50px;
}
.section-intro__text--cols > * {
    flex: 1;
}

.section-intro__text--bold {
    font-weight: 600;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .section-intro {
        padding: 70px 40px 60px;
    }
    .section-intro__title {
        font-size: 2.375rem;
    }
    .section-intro__script {
        font-size: 5rem;
    }
    .section-intro__text {
        font-size: 1.125rem;
        line-height: 28px;
    }
    .section-intro__text--cols {
        flex-direction: column;
        gap: 30px;
    }
}
@media (max-width: 900px) {
    .section-intro__script {
        font-size: 4.3rem;
    }
}
/* ---- Mobile ---- */
@media (max-width: 768px) {
    .section-intro {
        padding: 50px 25px 40px;
    }
    .section-intro__surtitle {
        font-size: 1rem;
    }
    .section-intro__title {
        font-size: 2.0625rem;
    }
    .section-intro__script {
        font-size: 3rem;
    }
    .section-intro__text {
        margin-top: 40px;
        font-size: 1rem;
        line-height: 24px;
    }
    .section-intro__text--cols {
        flex-direction: column;
        gap: 20px;
    }
}


/* ========================================
   AA Banner (logo + tagline)
   ======================================== */
.aa-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 20px 50px;
    height: 95px;

    background: linear-gradient(to right, var(--chair-80), rgba(230, 215, 214, 0.6));
}

.aa-banner__logo {
    width: 44px;
    height: 54px;
    flex-shrink: 0;
}

.aa-banner__text {
    font-size: 1.375rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-black);
    line-height: normal;
}
.aa-banner__text sup {
    font-size: 0.6em;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .aa-banner {
        padding: 15px 40px;
        height: auto;
    }
    .aa-banner__text {
        font-size: 1.125rem;
    }
}
/* ---- Mobile ---- */
@media (max-width: 768px) {
    .aa-banner {
        flex-direction: column;
        padding: 15px 25px;
        gap: 25px;
        text-align: center;
    }
    .aa-banner__text {
        font-size: 1rem;
    }
}


/* ========================================
   Spacer
   ======================================== */
.spacer {
    width: 100%;
    padding: 120px 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: url(../images/lu-spacer.jpg) no-repeat center;
    background-size: cover;
}
@media (max-width: 1024px) {
    .spacer {
        padding: 100px 0;
    }
}
@media (max-width: 768px) {
    .spacer {
        padding: 80px 0;
    }
}


/* ========================================
   Section Title (h2 style)
   ======================================== */
.section-title {
    padding: 130px 50px 0;

    font-size: 2.375rem;
    font-weight: 600;
    color: var(--color-black);
    white-space: break-spaces;
}
.section-title--center {
    text-align: center;
}
.section-title sup {
    font-size: 0.6em;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .section-title {
        padding: 80px 40px 0;
        font-size: 1.75rem;
    }
}
/* ---- Mobile ---- */
@media (max-width: 768px) {
    .section-title {
        padding: 50px 25px 0;
        font-size: 1.5rem;
    }
}


/* ========================================
   Text Block (content sections)
   ======================================== */
.text-block {
    padding: 100px 270px;

    font-size: 1.375rem;
    line-height: 34px;
    color: var(--color-black);
    text-align: justify;
}

.text-block--cols {
    display: flex;
    gap: 50px;
}
.text-block--cols > * {
    flex: 1;
}

.text-block p + p {
    margin-top: 30px;
}

.text-block__mention {
    margin-top: 30px;

    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--color-black);
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .text-block {
        padding: 60px 80px;
        font-size: 1.125rem;
        line-height: 28px;
    }
    .text-block--cols {
        gap: 30px;
    }
}
/* ---- Mobile ---- */
@media (max-width: 768px) {
    .text-block {
        padding: 40px 25px;
        font-size: 1rem;
        line-height: 24px;
    }
    .text-block--cols {
        flex-direction: column;
        gap: 20px;
    }
}


/* ========================================
   Accordion (shared with FAQ & Home)
   ======================================== */
.accordion {
    border-bottom: 1px solid #ccc;
}

.accordion__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;

    cursor: pointer;
}
.accordion__question p {
    margin: 0;
    padding: 0;

    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-black);
    list-style: none;
}

.accordion__question::-webkit-details-marker {
    display: none;
}

.accordion__question::after {
    width: 24px;
    height: 24px;
    content: '';
    flex-shrink: 0;
    display: inline-block;

    background: url('../images/arrow-down.svg') no-repeat center;
    background-size: contain;

    transition: transform 0.3s ease;
    transform: rotate(-90deg);
}

.accordion[open] .accordion__question::after {
    transform: rotate(0deg);
}

.accordion__answer {
    padding: 0 0 30px;

    font-size: 1.375rem;
    line-height: 34px;
    color: var(--color-black);
    text-align: justify;
}

.accordion__answer p {
    margin-bottom: 1em;
}

.accordion__answer p:last-child {
    margin-bottom: 0;
}

.accordion__mention {
    margin-top: 15px;

    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--color-black);
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .accordion__question p {
        font-size: 1.375rem;
    }
    .accordion__answer {
        font-size: 1.125rem;
        line-height: 28px;
    }
}
/* ---- Mobile ---- */
@media (max-width: 768px) {
    .accordion__question p {
        font-size: 1.125rem;
    }
    .accordion__answer {
        font-size: 1rem;
        line-height: 24px;
    }
}


/* ========================================
   Protocol Card (Home page - LU & SQ)
   ======================================== */
.protocol-card {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    padding-left: 50px;
    padding-top: 50px;
    overflow: hidden;
}
.protocol-card.reverse {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 100px;
}

.protocol-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 70px;
    justify-content: flex-end;
    padding-bottom: 38px;
}

.protocol-card__title {
    font-size: 2.8125rem;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
    line-height: normal;
}

.protocol-card__script {
    margin-top: 5px;

    font-family: var(--font-family-accent);
    font-size: 4.6875rem;
    line-height: 75px;
    color: var(--color-black);
}

.protocol-card__brackets {
    display: flex;
    height: 94px;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}
.protocol-card__brackets .bracket {
    flex: 0 0 15px;
    width: 15px;    height: 100%;    
    border: 2px solid black;
}
.protocol-card__brackets .bracket:first-child {
    border-right: none;
}
.protocol-card__brackets .bracket:last-child {
    border-left: none;
}
.protocol-card__brackets .protocol-card__keywords {
    font-size: 1.375rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 26px;
    color: var(--color-black);
    white-space: break-spaces;
}
.protocol-card__brackets .protocol-card__keywords sup {
    font-size: 0.6em;
    font-weight: 400;
}

.protocol-card__desc {
    font-size: 1.375rem;
    line-height: 34px;
    color: var(--color-black);
}

.protocol-card__image {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.protocol-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.protocol-card__image img.protocol-card__logo {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    height: 80px;
    width: auto;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .protocol-card {
        padding-left: 40px;
        padding-top: 40px;
        align-items: stretch; 
        gap: 30px;
    }
    .protocol-card.reverse {
        padding-left: 0;
        padding-right: 40px;
    }
    .protocol-card__content {
        flex: 0 0 calc(55% - 30px);
        gap: 30px;
        padding-bottom: 0;
        padding-top: 30px;
    }
    .protocol-card__title {
        font-size: 2rem;
    }
    .protocol-card__image {
        flex: 0 0 45%;
        min-height: 100%;
    }
    .protocol-card__desc {
        font-size: 1.125rem;
        line-height: 28px;
    }
}
/* ---- Mobile ---- */
@media (max-width: 540px) {
    .protocol-card,
    .protocol-card.reverse {
        flex-direction: column-reverse;
        padding: 40px 25px 0;
        gap: 30px;
    }
    .protocol-card__title {
        font-size: 1.75rem;
    }
    .protocol-card__image {

    }
    .protocol-card__desc {
        font-size: 1rem;
        line-height: 24px;
    }
}


/* ========================================
   Bracket Carousel
   ======================================== */
.bracket-carousel {
    padding: 120px 290px;

    background: linear-gradient(to right, var(--color-white) 50%, var(--gris-chaud-25));
}

.bracket-carousel__track {
    position: relative;
    overflow: hidden;
}

.bracket-carousel__slides {
    display: flex;
    transition: transform 0.4s ease;
    user-select: none;
}

.bracket-carousel__slide {
    min-width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
    height: 155px;
}
.bracket-carousel__slide::after,
.bracket-carousel__slide::before {
    content: '';
    width: 15px;    height: 100%;
    border: 2px solid black;
}
.bracket-carousel__slide::before {
    border-right: none;
}
.bracket-carousel__slide::after {
    border-left: none;
}


.bracket-carousel__text {
    flex: 1;

    font-size: 1.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-black);
}
.bracket-carousel__text sup {
    font-size: 0.6em;
    font-weight: 400;
}

.bracket-carousel__mention {
    margin-top: 10px;

    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
    color: var(--color-black);
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .bracket-carousel {
        padding: 80px 80px;
    }
    .bracket-carousel__text {
        font-size: 1.5rem;
    }
}
/* ---- Mobile ---- */
@media (max-width: 768px) {
    .bracket-carousel {
        padding: 60px 25px;
    }
    .bracket-carousel__slide {
        height: auto;
        min-height: 120px;
    }
    .bracket-carousel__text {
        font-size: 1.25rem;
    }
}


/* ========================================
   Dots Navigation (shared carousel nav)
   ======================================== */
.dots-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
}

.dots-nav__dot {
    width: 12px;
    height: 12px;
    padding: 0;

    border-radius: 50%;
    border: 1px solid var(--color-black);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dots-nav__dot--active {
    background: var(--color-black);
}


/* ========================================
   Discover Banner (cross-link to other protocol)
   ======================================== */
.discover-banner {
    display: flex;
    align-items: center;
    height: 380px;
    padding: 0;
    overflow: hidden;
    position: relative;

    background: linear-gradient(to right, var(--chair-14), var(--color-white) 32%);
    text-decoration: none;
    color: var(--color-black);
}

.discover-banner__content {
    position: relative;
    z-index: 1;
    width: 595px;
    flex-shrink: 0;
    padding-left: 50px;

    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.discover-banner__title {
    font-size: 2.0625rem;
    font-weight: 500;
    line-height: normal;
    color: var(--color-black);
}
.discover-banner__title sup {
    font-size: 0.6em;
}

.discover-banner__script {
    font-family: var(--font-family-accent);
    font-size: 3.75rem;
    line-height: 50px;
    color: var(--color-black);
}

.discover-banner__arrow {
    width: 22px;
    height: 16px;
}

.discover-banner__image {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.discover-banner__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
}

.discover-banner__logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    height: 80px;
    width: auto;
    z-index: 1;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .discover-banner {
        height: 300px;
    }
    .discover-banner__content {
        width: 400px;
        padding-left: 40px;
    }
    .discover-banner__title {
        font-size: 1.625rem;
    }
    .discover-banner__script {
        font-size: 2.8125rem;
        line-height: 40px;
    }
}
/* ---- Mobile ---- */
@media (max-width: 768px) {
    .discover-banner {
        display: block;
        flex-direction: column;
        padding: 30px 25px;
        height: auto;

        background: url(../images/lu-discover-sq.mobile.jpg) no-repeat bottom center;
        background-size: cover;
    }
    .discover-banner__content {
        width: 100%;
        padding-left: 0;
    }
    .discover-banner__title {
        font-size: 1.375rem;
    }
    .discover-banner__script {
        font-size: 2.8125rem;
        line-height: 35px;
    }
    .discover-banner__image {
        width: 100%;
        aspect-ratio: 4/3;
    }
}


/* ========================================
   Products Links
   ======================================== */
.products-links {
    padding-top: 100px;
    padding-bottom: 100px;

    text-align: center;
    background: linear-gradient(to left, var(--gris-chaud-25), var(--color-white) 50%);
}

.products-links__title {
    font-size: 2.375rem;
    font-weight: 600;
    color: var(--color-black);
}

.products-links__grid {
    margin-top: 30px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 100px;
}

.products-links__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 15px;
    min-width: 241px;

    text-decoration: none;
    color: var(--color-black);

    
}

.products-links__item img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.products-links__item .icon-arrow {
    width: 22px;
    height: 16px;
}
.products-links__item:hover img:first-child {
    transform: translateY(-10px);
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .products-links {
        padding: 60px 80px;
    }
    .products-links__title {
        font-size: 1.75rem;
    }
    .products-links__grid {
        gap: 40px;
    }
}
/* ---- Mobile ---- */
@media (max-width: 768px) {
    .products-links {
        padding: 40px 25px;
    }
    .products-links__title {
        font-size: 1.5rem;
    }
    .products-links__grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}


/* ========================================
   Test Carousel (Lift Up - pinch/tilt tests)
   ======================================== */
.test-carousel {
    padding: 50px 0;

    background: linear-gradient(90deg, #E6D7D6 0%, rgba(230, 215, 214, 0.60) 100%);
}

.test-carousel__header {
    text-align: center;
}

.test-carousel__surtitle {
    font-size: 1.375rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-black);
}

.test-carousel__title {
    margin-top: 15px;

    font-size: 2.375rem;
    font-weight: 600;
    color: var(--color-black);
}

.test-carousel__script {
    margin-bottom: 20px;
    
    font-family: var(--font-family-accent);
    font-size: 5.1875rem;
    line-height: 1;
    color: var(--color-black);
    text-align: center;
}

.test-carousel__track {
    position: relative;
    overflow: hidden;
}

.test-carousel__slides {
    display: flex;
    transition: transform 0.4s ease;
    user-select: none;
}

.test-carousel__slide {
    min-width: 100%;
}

.test-carousel__content {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px;

    background: linear-gradient(90deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.00) 80%);
}
.test-carousel__slide-image {
    width: 235px;
    height: 235px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.test-carousel__slide-text {
    font-size: 1.375rem;
    line-height: 34px;
    color: var(--color-black);
    white-space: break-spaces;
}

.test-carousel__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.test-carousel__mention {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--color-black);
    text-align: right;
    font-weight: bold;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .test-carousel {
        padding: 40px 80px;
    }
    .test-carousel__surtitle {
        font-size: 1.1875rem;
    }
    .test-carousel__title {
        font-size: 1.875rem;
    }
    .test-carousel__script {
        font-size: 4.0625rem;
    }
    .test-carousel__slide-image {
        width: 180px;
        height: 180px;
    }
    .test-carousel__slide-text {
        font-size: 1.125rem;
        line-height: 28px;
    }
}
/* ---- Mobile ---- */
@media (max-width: 768px) {
    .test-carousel {
        padding: 30px 25px;
    }
    .test-carousel__title {
        font-size: 1.875rem;
    }
    .test-carousel__script {
        font-size: 3.4375rem;
    }
    .test-carousel__slide {
        flex-direction: column;
        padding: 15px 0;
    }
    .test-carousel__content {
        flex-direction: column;
    }
    .test-carousel__slide-image {
        width: 100%;
        max-width: 235px;
        height: auto;
        aspect-ratio: 1;
    }
    .test-carousel__slide-text {
        font-size: 1rem;
        line-height: 24px;
        text-align: center;
    }
    .test-carousel__footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .test-carousel__mention {
        text-align: center;
    }
}


/* ========================================
   Highlight Quote
   ======================================== */
.highlight-quote {
    padding: 100px 50px;

    font-size: 2.375rem;
    font-weight: 600;
    color: var(--color-black);
    text-align: center;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .highlight-quote {
        padding: 60px 40px;
        font-size: 1.75rem;
    }
}
/* ---- Mobile ---- */
@media (max-width: 768px) {
    .highlight-quote {
        padding: 40px 25px;
        font-size: 1.5rem;
    }
}

/* ========================================
   Pages - Shared styles
   ======================================== */

/* Page intro / title section */
.page-intro {
    border-bottom: 1px solid #3c3c3b;
    padding: 50px 0;
}

.page-intro__content {
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.page-intro__surtitle {
    margin-bottom: 10px;

    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-black);
}
.page-intro__title {
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--color-black);
}
.page-intro__text {
    padding-top: 50px;
    padding-bottom: 50px;

    color: var(--color-black);
    text-align: justify;
    font-size: 1.1875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .page-intro__content {
        padding: 0 40px;
    }
}
/* ---- Mobile ---- */
@media (max-width: 768px) {
    .page-intro {
        padding: 30px 0;
    }

    .page-intro__content {
        padding: 0 25px;
    }

    .page-intro__title {
        font-size: 1.75rem;
    }
}



/* Page body */
.page-body {
    padding-top: 100px;
    padding-bottom: 100px;
}
.container {
    padding-left: 200px;
    padding-right: 200px;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .page-body {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .page-body {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.cgu-content {
    font-size: 1.375rem;
    line-height: 34px;
    color: var(--color-black);
    text-align: justify;
}

.cgu-content p {
    margin-bottom: 1em;
}

.cgu-content p:last-child {
    margin-bottom: 0;
}

.cgu-content__main-heading {
    margin: 2em 0 1em;

    font-size: 1.75rem;
    font-weight: 600;
}

.cgu-content__section-heading {
    margin: 1.5em 0 0.5em;

    font-weight: 600;
}

.cgu-content ul {
    padding-left: 24px;
    margin-bottom: 1em;
    list-style-type: disc;
}
.cgu-content ul li {
    margin-bottom: 4px;
}

.cgu-content ol {
    padding-left: 24px;
    margin-bottom: 1em;
    list-style-type: decimal;
}
.cgu-content ol li {
    margin-bottom: 1rem;
}

.cgu-content a {
    text-decoration: underline;
    color: var(--color-black);
}

.cgu-content a:hover {
    opacity: 0.7;
}

.cgu-content .defined-term {
    font-weight: 600;
}

.cgu-content .cgu-address {
    font-style: normal;
    display: block;
    margin: 0.5em 0;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .cgu-content {
        font-size: 1.125rem;
        line-height: 28px;
    }

    .cgu-content__main-heading {
        font-size: 1.5rem;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .cgu-content {
        font-size: 1rem;
        line-height: 24px;
    }

    .cgu-content__main-heading {
        font-size: 1.25rem;
    }
}
/* ========================================
   FAQ Page
   ======================================== */

/* Intro */
.page-intro--faq {
    border: none;
}
.page-intro--faq .page-intro__content {
    align-items: center;
}

.faq-intro {
    margin-top: 20px;

    font-size: 1.375rem;
    line-height: 34px;
    color: var(--color-black);
}

/* Anchor navigation – sticky below header */
.faq-nav {
    position: sticky;
    top: var(--faq-nav-top, 100px);
    padding: 30px 50px;

    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;

    background-color: var(--color-header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.faq-nav::-webkit-scrollbar {
    display: none;
}
@media (max-width: 1400px) {
    .faq-nav {
        justify-content: flex-start;
    }
}

.faq-nav__link {
    padding: 3px 10px 2px 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-black);
    font-size: 1.0625rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-black);
    text-decoration: none;
    white-space: nowrap;
}

.faq-nav__link:hover {
    background-color: var(--color-black);
    color: var(--gris-chaud-15);
    border: 1px solid var(--color-black);
}
.faq-nav__link--active {
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
}

/* Section */
.faq-section {
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
    background-color: var(--color-bg);
    scroll-margin-top: 200px; /* overridden by JS for exact header+nav height */
}

.faq-section__title {
    padding: 60px 0 40px;

    font-size: 2.375rem;
    font-weight: 600;
    text-align: center;
    color: var(--color-black);
}

/* Parallax wrapper & background */
.faq-wrapper {
    position: relative;
}

.faq-bg {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    margin-bottom: -100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.faq-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0%;
    will-change: object-position;
}

.faq-parallax {
    height: 200px;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .faq-nav {
        padding: 20px 40px;
    }

    .faq-section {
        padding-bottom: 60px;
    }

    .faq-section__title {
        font-size: 1.75rem;
    }

    .faq-intro {
        font-size: 1.125rem;
        line-height: 28px;
    }

    .faq-parallax {
        height: 150px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .faq-nav {
        padding: 15px 25px;
        gap: 8px;
    }

    .faq-nav__link {
        font-size: 0.75rem;
        padding: 3px 8px 2px;
    }

    .faq-section {
        padding-bottom: 40px;
    }

    .faq-section__title {
        font-size: 1.5rem;
        padding: 40px 0 25px;
    }

    .faq-intro {
        font-size: 1rem;
        line-height: 24px;
    }

    .faq-parallax {
        height: 100px;
    }
}

/* ========================================
   Home Page
   ======================================== */

/* Section intro with gradient background */
.home-intro {
    background: linear-gradient(to bottom, rgba(231, 229, 223, 0.3), var(--color-white) 37%);
}

.home-products__spacer {
    height: 130px;
}

/* Home FAQ section */
.home-faq {
    padding-top: 130px;
    padding-bottom: 100px;
}

.home-faq__surtitle {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-black);
}

.home-faq__title {
    margin-top: 36px;

    font-size: 2.375rem;
    font-weight: 600;
    color: var(--color-black);
}

.home-faq__list {
    margin-top: 40px;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .home-faq {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .home-faq__title {
        font-size: 1.75rem;
    }
    .home-faq__list {
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .home-faq {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .home-faq__title {
        font-size: 1.5rem;
    }
    .home-faq__list {
    }
}

/* ========================================
   Lift Up Page
   ======================================== */

/* Schema section (anatomical diagram) */
.lu-schema {
    padding-bottom: 50px;
}

.lu-schema__image {
    position: relative;
}

.lu-schema__image img {
    width: 100%;
    height: auto;
}

.lu-schema__caption {
    margin-top: 20px;

    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
    color: var(--color-black);
}

.lu-schema__summary {
    margin-top: 30px;

    font-size: 1.375rem;
    line-height: 34px;
    color: var(--color-black);
    text-align: justify;
}

/* Face zones interactive section */
.lu-face-zones {
    padding-top: 100px;
    padding-bottom: 50px;
}
.lu-face-zones__image {
    padding: 0 60px;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
}
.lu-face-zones__image img {
    width: 100%;
    height: auto;
}

.lu-face-zones__carousel {
    margin-bottom: 30px;
}
.lu-face-zones__carousel .schema-carousel__background .schema-carousel__btn {
    width: 48px;    height: 48px;
    background: var(--color-white);
    outline: 10px solid rgba(248, 247, 246, 0.30);
}
.lu-face-zones__carousel.version-mobile .schema-carousel__background .schema-carousel__btn {
    width: 35px;    height: 35px;
}
.lu-face-zones__carousel .schema-carousel__background .schema-carousel__btn:hover,
.lu-face-zones__carousel .schema-carousel__background .schema-carousel__btn:active,
.lu-face-zones__carousel .schema-carousel__background .schema-carousel__btn.schema-carousel__btn--active {
    outline: none;
}
.lu-face-zones__carousel .schema-carousel__background .schema-carousel__btn p {
    font-size: 150%;
}
.lu-face-zones__carousel .schema-carousel__step {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
.lu-face-zones__carousel .schema-carousel__step .picto {
    width: 48px;    height: 48px;
}
.lu-face-zones__carousel .schema-carousel__step p {
    text-align: left;
}
.lu-face-zones__carousel .schema-carousel__step p strong {
    display: block;
}


/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .lu-schema {
        padding-bottom: 40px;
    }
    .lu-schema__summary {
        padding: 0;
        font-size: 1.125rem;
        line-height: 28px;
    }
    .lu-face-zones {
        padding: 80px 40px 0;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .lu-schema {
        padding-bottom: 25px;
    }
    .lu-schema__summary {
        font-size: 1rem;
        line-height: 24px;
    }
    .lu-face-zones {
        padding: 50px 25px 0;
    }
}

/* ========================================
   Skin Quality Page
   ======================================== */

/* Numbered steps */
.sq-step {
}

.sq-step__number {
    display: flex;
    justify-content: center;
}

.sq-step__number img {
    width: 130px;
    height: 130px;
}

.sq-step__label {
    margin-top: 40px;

    font-size: 1.875rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-black);
}
.sq-step__label sup {
    font-size: 0.6em;
    font-weight: 400;
}

/* Sub-sections within a step */
.sq-subsection {
    margin-top: 100px;
    margin-bottom: 100px;
}

.sq-subsection__title {
    font-size: 1.375rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-black);
    letter-spacing: 0.02em;
}

.sq-subsection__content {
    margin-top: 18px;

    display: flex;
    gap: 50px;
}
.sq-subsection__content > * {
    flex: 1;
}

.sq-subsection__content p {
    font-size: 1.375rem;
    line-height: 34px;
    color: var(--color-black);
    text-align: justify;
}

.sq-subsection__image {
    margin-top: 40px;
}

.sq-subsection__image img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Dark background section (step 2) */
.sq-dark-section {
    background-color: var(--gris-chaud-15);
    padding: 80px 0;
}

/* Schema carousel */
.sq-subsection .schema-carousel .schema-carousel__background .schema-carousel__btn {
    background-color: var(--color-white);
}
.sq-subsection .schema-carousel .schema-carousel__background .schema-carousel__btn:hover,
.sq-subsection .schema-carousel .schema-carousel__background .schema-carousel__btn:active,
.sq-subsection .schema-carousel .schema-carousel__background .schema-carousel__btn.schema-carousel__btn--active {
    background-color: var(--color-black);
}
.sq-subsection .schema-carousel .schema-carousel__content {
    position: absolute;
    width: 100%;
    left: 0;    bottom: 5%;
}
.sq-subsection .schema-carousel .schema-carousel__content .schema-carousel__step p.schema-carousel__label {
    color: var(--color-black);
    text-align: center;
    font-size: 1.8125rem;
    font-weight: 300;
}
.sq-subsection .schema-carousel .dots-nav {
    position: absolute;
    width: 100%;
    left: 0;    bottom: 2%;
}
.sq-subsection .schema-carousel .dots-nav button {
    width: 16px;
    height: 16px;
}

/* Treatments image section */
.sq-treatments {
    width: 100%;
    overflow: hidden;
}

.sq-treatments img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-skin-quality .discover-banner__content {
    width: 750px;
}
@media (max-width: 1024px) {
    .page-skin-quality .discover-banner__content {
        width: 500px;
    }
}
.page-skin-quality .discover-banner__image {
    text-align: right;
}
.page-skin-quality .discover-banner__image img {
    height: 100%;
    width: auto;
    right: 0;
}
@media (max-width: 768px) {
    .page-skin-quality .discover-banner__content {
        width: auto;
        padding: 0;
    }
    .page-skin-quality .discover-banner {
        display: block;
        flex-direction: column;
        padding: 30px 25px;
        height: auto;
        background: url(../images/sq-discover.lu.mobile.jpg) no-repeat bottom center;
        background-size: cover;
    }
    .page-skin-quality .discover-banner__image {
        aspect-ratio: 1;
    }
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .sq-step {
        
    }
    .sq-subsection {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .sq-subsection__content {
        gap: 30px;
    }
    .sq-subsection__content p {
        font-size: 1.125rem;
        line-height: 28px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .sq-step {
    }
    .sq-step__number img {
        width: 90px;
        height: 90px;
    }
    .sq-subsection {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .sq-subsection__content {
        flex-direction: column;
        gap: 18px;
    }
    .sq-subsection__title {
        font-size: 1rem;
        line-height: 24px;
    }
    .sq-subsection__content p {
        font-size: 1rem;
        line-height: 24px;
    }
}

.mentions-content {
    display: flex;
    flex-direction: column;
    gap: 26px;

    font-size: 1.375rem;
    line-height: 34px;
    color: var(--color-black);
    text-align: justify;
}

.mentions-section p {
    margin-bottom: 0;
}

.mentions-section p + p {
    margin-top: 1em;
}

.mentions-separator {
    border: none;
    border-top: 1px solid var(--color-black);
    margin: 0;
}

.mentions-heading {
    font-weight: 600;
    text-decoration: underline;
}

.mentions-product {
    font-weight: 500;
}

.mentions-bold {
    font-weight: 600;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .mentions-content {
        font-size: 1.125rem;
        line-height: 28px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .mentions-content {
        font-size: 1rem;
        line-height: 24px;
    }
}
.page-intro__subtitle {
    font-family: 'Golden Hopes', cursive;
    font-weight: 400;
    font-size: 5.9375rem;
    line-height: 80px;
    color: var(--color-black);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 50px;

    font-size: 1.375rem;
    line-height: 34px;
    color: var(--color-black);
}

.contact-content__heading {
    font-weight: 600;
}

.contact-content p {
    margin-bottom: 0;
}

.contact-content a {
    text-decoration: underline;
    color: var(--color-black);
}

.contact-content a:hover {
    opacity: 0.7;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .page-intro__subtitle {
        font-size: 4.5rem;
        line-height: 64px;
    }

    .contact-content {
        font-size: 1.125rem;
        line-height: 28px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .page-intro__subtitle {
        font-size: 3rem;
        line-height: 48px;
    }

    .contact-content {
        font-size: 1rem;
        line-height: 24px;
    }
}
.references-list {
    padding-left: 24px;

    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style-type: decimal;
    
    font-size: 1rem;
    line-height: normal;
    color: var(--color-black);
    text-align: justify;
}
.reference-study p {
    display: inline;
}
.reference-study__label {
    font-weight: 600;
    text-decoration: underline;
}