:root {
    --primary-bg: #0D166A;
    --primary-red: #FF0000;
    --light-blue: #9DC4F3;
    --text-white: #ffffff;
    --text-dark: #243772;
    --secondary-blue: #3868D8;
    --font-body: "Lato", sans-serif;
    --font-title: "Bebas Neue", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-white);
    overflow-x: hidden;
    font-size: 1.6rem;
    min-height: 100vh;
}

/* Typography Utilities */
h1,
h2,
h3,
.main-title,
.question-title,
.form-title,
.btn {
    font-family: var(--font-title);
    font-weight: 400;
}

.text-red {
    color: var(--primary-red);
}

.skew-fix {
    display: inline-block;
    transform: skewX(20deg);
}

.skew-fix span {
    color: var(--primary-red);
}

/* Layout */
.container {
    width: 100%;
    max-width: 173.6rem;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.layout-2-cols {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.col-left,
.col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-left {
    width: 92.8rem;
    position: relative;
}

.col-right {
    width: 72rem;
}

/* Common */
.main-logo-container {
    position: absolute;
    top: 4rem;
    left: 4rem;
    z-index: 100;
    transition: opacity 0.3s ease;
}

.main-logo-container img {
    height: 9.9rem;
}

.main-logo-container.disabled {
    pointer-events: none;
    cursor: default;
}

.etape {
    min-height: 100vh;
    position: relative;
    display: flex;
}

/* ETAPE 1 */
.hero-image {
    max-width: 100%;
    height: auto;
}

.trophy-icon {
    width: 36.7rem;
    margin-bottom: 0.6rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.hero-content {
    text-align: center;
}

.main-title {
    font-size: 9rem;
    line-height: 109%;
    margin-bottom: 1.4rem;
}

/* Typewriter animation styles */
.typewriter-char {
    display: inline-block;
    opacity: 0;
    filter: blur(4px);
    transform: translateY(15px) scale(0.9);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: pre;
    /* Ensure spaces keep their size */
}

.typewriter-char.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}


.subtitle {
    font-size: 2.4rem;
    line-height: 125%;
    margin-bottom: 4.8rem;
}

.subtitle span {
    color: var(--light-blue);
}

.btn-start-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
}

.ico-left-btn {
    height: 5.9rem;
}

.btn-skewed {
    background-color: var(--primary-red);
    border-radius: 10rem;
    color: var(--text-white);
    padding: 0 4rem;
    font-size: 3.2rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    position: relative;
    transition: transform 0.2s ease;
    box-shadow: -0.4rem 0.6rem 0 #50A6F9;
    font-weight: 1000;
    transition: transform 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), box-shadow 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), color 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), background-color 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99);
}



/* ETAPE 2: QUIZ */
.decor-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 31.2rem;
    pointer-events: none;
    z-index: 2;
}

.decor-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 23.8rem;
    pointer-events: none;
    z-index: 1;
}

.decor-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 23.8rem;
    pointer-events: none;
    z-index: 1;
}

.container-quiz {
    height: auto;
    min-height: 100vh;
    justify-content: center;
    z-index: 10;
}

.quiz-wrapper {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    min-height: 80rem;
}

.question-step,
.form-step {
    display: none;
    flex-direction: column;
    align-items: center;
    height: 100%;
    display: flex;
    padding: 5rem 0;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn2 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Step Header */
.step-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    margin-bottom: 6.7rem;
}

.step-icon-left {
    height: 10.9rem;
    transform: translateY(1.5rem);
}

.step-icon-right {
    height: 8.5rem;
    transform: translateY(-1.5rem);
}

.step-indicator-wrapper {
    position: relative;
}

.step-indicator {
    color: var(--text-dark);
    padding: 0.302rem 2.666rem 0rem 2.666rem;
    padding: 0.902rem 2.666rem 0.2rem 2.666rem;
    font-size: 5.6rem;
    line-height: 5.6rem;
    font-family: var(--font-title);
    transform: skewX(-27deg) rotate(-4deg);
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    background-color: var(--primary-red);
    z-index: 1;
}

.step-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-white);
    z-index: 2;
    box-shadow: 1rem -1rem 0 var(--light-blue);
}

.step-indicator .skew-fix {
    position: relative;
    z-index: 3;
    transform: skewX(27deg);
}

.question-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 3.2rem;
    line-height: 125%;
    margin-bottom: auto;
    margin-bottom: 6rem;
}

.question-title span {
    color: var(--light-blue);
}

/* Multi-answer hint badge */
.multi-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--light-blue);
    background-color: rgba(157, 196, 243, 0.12);
    border: 0.15rem solid rgba(157, 196, 243, 0.4);
    border-radius: 10rem;
    padding: 0.4rem 1.4rem 0.4rem 1rem;
    margin-bottom: 3rem;
    letter-spacing: 0.03em;
    animation: fadeIn2 0.5s ease;
}

/* Options Grid */
.options-grid {
    display: grid;
    gap: 4.8rem;
    margin-bottom: auto;
    margin-bottom: 6rem;
}

.options-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.options-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.cols-2-layout {
    display: flex;
    align-items: center;
    gap: 7rem;
    margin-bottom: auto;
    text-align: left;
    margin-bottom: 6rem;
}

.col-image {
    width: 68.9rem;
}

.col-image img {
    width: 100%;
    border-radius: 1rem;
    display: block;
}

.col-options {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
}

.option-card {
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 39.5rem;
}

.question-step[data-step="4"] .option-card {
    width: 48.2rem;
}

.option-card .img-wrapper::before {
    position: absolute;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 0.6rem);
    height: calc(100% - 0.6rem);
    z-index: 1;
    transition-duration: 0.3s;
    border: 0.6rem solid var(--text-white);
    border-radius: 1rem;
    opacity: 0;
}





.img-wrapper {
    position: relative;
    border-radius: 1rem;
    margin-bottom: 1.6rem;
}

.option-card.selected .img-wrapper {
    border-color: #ffffff;
    box-shadow: 0 0 2rem rgba(255, 255, 255, 0.3);
}

.img-wrapper img {
    width: 100%;
    display: block;
    transition-duration: 0.3s;
}



/* Dim unselected option card images when one is selected */
.question-step .img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 56, 114, 0.5);
    opacity: 0;
    transition-duration: 0.3s;
}

.question-step:has(.option-card.selected) .option-card:not(.selected) .img-wrapper::after {
    opacity: 1;
}

.option-card.selected .option-number {
    background-color: var(--text-white);
    color: var(--secondary-blue);
}

.option-number {
    position: absolute;
    top: -3.7rem;
    left: -3rem;
    width: 7rem;
    height: 7rem;
    background-color: var(--secondary-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 1000;
    z-index: 2;
    transition-duration: 0.3s;
}

.option-card p {
    text-align: left;
    font-size: 2.4rem;
    line-height: initial;
}

.option-card p small {
    font-size: 1.6rem;
}

.option-card p span {
    color: var(--light-blue);
}

.option-number-inline {
    position: absolute;
    top: -1.4rem;
    left: -3.5rem;
    width: 7rem;
    height: 7rem;
    background-color: var(--secondary-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 1000;
    z-index: 2;
    transition-duration: 0.3s;
}

.option-card.text-only.selected .option-number {
    background-color: var(--text-white);
    color: var(--secondary-blue);
}

.option-card.text-only {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0 0 0 4.6rem;
    border: 0.3rem solid var(--text-white);
    border-radius: 1.2rem;
    height: 8.1rem;
    position: relative;
}

.option-card.text-only p {
    font-size: 2.4rem;
    margin: 0;
}



.option-card.text-only.selected {
    border: 0.6rem solid var(--text-white);
}

.option-card.text-only.selected .option-number-inline {
    background-color: var(--text-white);
    color: var(--secondary-blue);
}


/* Pill Button */
.btn-pill {
    background-color: var(--text-white);
    color: var(--primary-bg);
    padding: 1.7rem 2rem 1.7rem 4rem;
    border-radius: 10rem;
    font-size: 3.2rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 2.3rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
    font-family: var(--font-body);
    font-weight: 1000;
    box-shadow: -0.6rem 0.6rem 0 var(--secondary-blue);
    transition: transform 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), box-shadow 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), color 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), background-color 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99);
}

.btn-pill:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}



.arrow-circle {
    color: var(--text-white);
    width: 3.9rem;
    height: 3.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.arrow-circle img {
    width: 100%;
    display: block;
    transition: opacity 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99);
}

.arrow-circle img:last-child {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
}

.error-msg-selection {
    color: var(--primary-red);
    font-size: 1.8rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.1rem;
    animation: fadeIn2 0.3s ease;
    text-align: center;
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
}

/* FORM */
.form-header {
    margin-bottom: 1.7rem;
}

.form-title {
    font-size: 9rem;
    line-height: 109%;
    margin-bottom: 1.4rem;
}

.form-subtitle {
    font-size: 2.4rem;
    line-height: 125%;
    font-weight: 400;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    max-width: 87.6rem;
    margin: 0 auto 3rem auto;
    text-align: left;
}

.input-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.input-group label {
    font-family: var(--font-title);
    font-size: 3.2rem;
    margin-bottom: 0;
}

.required-text {
    font-family: var(--font-body);
    font-size: 1.4rem;
    text-transform: lowercase;
}

.input-group input {
    background-color: #243772;
    border: 0.1rem solid #9DC4F3;
    border-radius: 1.2rem;
    padding: 0 1.5rem;
    height: 5.2rem;
    width: 42rem;
    color: var(--text-white);
    font-size: 1.8rem;
    font-family: var(--font-body);
    transition-duration: 0.2s;
}

.input-group input:focus {
    border-color: #ffffff;
    background-color: #2F3B7D;
}

.input-group input.error {
    border-color: var(--primary-red);
}

.error-message {
    color: var(--primary-red);
    font-size: 1.4rem;
    min-height: 2rem;
    position: absolute;
    top: calc(100% + 0.2rem);
    left: 0;
}

#lead-form {
    position: relative;
}

.form-general-error.error-message {
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.form-submit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.disclaimer {
    font-size: 1.6rem;
    line-height: 120%;
}

/* ETAPE 3 */
#merci.active {
    display: block;
}

.s3-section1 {
    background-color: var(--primary-bg);
    text-align: center;
    padding: 3.6rem 0 8rem 0;
    position: relative;
    z-index: 1;
}

.merci-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    background-image: url(../img/desktop/bg_1.svg);
    background-size: contain;
    background-position: center;
    width: 76.4rem;
    height: 18.1rem;
    background-repeat: no-repeat;
    margin: 0 auto;
    padding: 3.2rem 0 0 0;
    margin-bottom: 2rem;
}

.merci-banner-top {
    color: var(--text-dark);
    font-size: 4.4rem;
    font-family: var(--font-body);
    font-weight: 1000;
    font-style: italic;
    transform: rotate(-3deg);
}

.merci-banner-bottom {
    color: var(--text-white);
    font-size: 5rem;
    font-family: var(--font-body);
    font-weight: 1000;
    font-style: italic;
    transform: rotate(-3deg);
    padding-top: 1.5rem;
}

.score-card-wrapper {
    display: flex;
    justify-content: center;
}

.score-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../img/desktop/bg_2.svg);
    background-size: contain;
    background-position: center;
    width: 62.6rem;
    height: 27.8rem;
    background-repeat: no-repeat;
    width: 56.6rem;
    height: 22.8rem;
}

.score-label {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-family: var(--font-body);
    font-weight: 1000;
    font-style: italic;
    padding: 3.5rem 0 0 0;
    transform: rotate(-3deg);
    padding: 2.5rem 0 0 0;
    font-size: 1.6rem;

}

.score-value {
    color: var(--primary-red);
    font-size: 16.2rem;
    font-family: var(--font-title);
    line-height: 1;
    transform: rotate(-3deg);
    font-weight: 600;
    font-size: 14.2rem;
}

.score-avg {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 2.4rem;
    opacity: 0;
}

.score-avg span,
.score-desc span {
    color: var(--light-blue);
}

.score-desc {
    font-size: 2.3rem;
    line-height: 120%;
    margin-bottom: 4.9rem;
    margin-bottom: 2.9rem;
    opacity: 1;
    margin-top: 1rem;
}

#merci.active .score-avg {
    animation: fadeInFromTop 1.5s cubic-bezier(0.25, 1, 0.5, 1) both;
}

#merci.active .score-desc {
    animation: fadeInFromTop 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.4s both;
}

@keyframes fadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-4rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-title {
    font-size: 3.3rem;
    margin-bottom: 2.3rem;
}

.share-title span {
    color: var(--light-blue);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.7rem;
}

.social-btn img {
    height: 5.6rem;
    transition: transform 0.2s ease;
}


.answers-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../img/desktop/bg_3.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 30.2rem;
    height: 8.1rem;
    margin: 0 auto;
    position: relative;
}

.answers-banner {
    color: var(--primary-bg);
    padding: 0.8rem 0 0 0;
    font-size: 2.5rem;
    font-family: var(--font-body);
    font-weight: 1000;
    font-style: italic;
    transform: rotate(-3deg);
}

.answers-banner-red {
    color: var(--primary-red);
    padding: 0.2rem 0 0 0;
}

.arrow-down {
    position: absolute;
    top: calc(100% - 2rem);
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../img/desktop/animation.gif);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 9.7rem;
    height: 9.8rem;
    z-index: -1;
}

.arrow-down2 {
    width: 100%;
    height: 100%;
    position: relative;
}

.arrow-down2 div {
    position: absolute;
    width: 4rem;
    height: 6rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Section 2: Responses */
.s3-section2 {
    background-color: #2C46A1;
    padding: 8rem 0 12rem 0;
    position: relative;
    z-index: 2;
}

.s3-section2 .container {
    height: auto;
    max-width: 163rem;
}

.responses-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 6rem;
}

.responses-icon {
    height: 6rem;
}

.responses-banner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../img/desktop/bg_4.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 35.1rem;
    height: 20rem;
    margin: 0 auto;
    opacity: 0;
}

.responses-banner-wrapper.visible {
    animation: fadeInFromTop 1.5s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.resp-banner-top {
    color: var(--text-dark);
    padding: 4rem 0 0 0;
    font-size: 8.3rem;
    line-height: 8.3rem;
    font-family: var(--font-title);
    transform: rotate(-4deg);
}

.resp-banner-bottom {
    color: var(--text-white);
    padding: 0.9rem 0 0 1rem;
    font-size: 4.1rem;
    font-family: var(--font-title);
    transform: rotate(-4deg);
}

.responses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
}

.response-card {
    background-color: var(--text-white);
    border-radius: 1rem;
    position: relative;
    padding: 2rem 2.2rem 2rem 2rem;
    color: var(--text-dark);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.resp-status {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    font-weight: bold;
    z-index: 2;
}

.resp-wrong {
    background-color: #E0292E;
    padding-bottom: 0.3rem;
}

.resp-correct {
    background-color: #63B078;
    padding-bottom: 0.3rem;
}

.resp-content {
    display: flex;
    gap: 2rem;
}

.resp-img-wrapper {
    position: relative;
    width: 17rem;
    flex-shrink: 0;
}

.resp-img-wrapper img {
    width: 100%;
    border-radius: 0.4rem;
    display: block;
    pointer-events: none;
}

.resp-num {
    background-color: #E0292E;
    color: var(--text-white);
    width: 3.3rem;
    min-width: 3.3rem;
    min-height: 5.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 4.1rem;
}

.resp-num.resp-correct2 {
    background-color: #63B078;
}

.resp-text h4 {
    font-size: 2.4rem;
    line-height: 125%;
    font-weight: 700;
    margin-bottom: 0;
    color: #00020C;
}

.resp-text p {
    font-size: 2rem;
    line-height: 150%;
    color: #00020C;
}

/* Section 3: Challenges */
.s3-section3 {
    background-color: var(--primary-bg);
    position: relative;
    z-index: 3;
}

.s3-images-grid {
    display: flex;
    position: relative;
}

.s3-images-grid img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.s3-banner-overlay {
    position: absolute;
    bottom: -6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../img/desktop/bg_5.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 56rem;
    height: 18.8rem;
    z-index: 5;
}

.s3-banner-top {
    padding-top: 4rem;
}

.s3-banner-top,
.s3-banner-bottom {
    color: var(--text-dark);
    font-size: 4.4rem;
    line-height: 4.4rem;
    font-weight: 1000;
    font-style: italic;
    transform: rotate(-3deg);
}

.s3-banner-bottom {
    color: var(--text-white);
    padding-top: 2.5rem;
}

.s3-content-wrapper {
    padding: 10rem 0;
    text-align: center;
}

.s3-content-wrapper p {
    font-size: 2.4rem;
    line-height: 150%;
    margin-bottom: 4.2rem;
}

.btn-soutien {
    font-size: 3rem;
    padding: 1.5rem 6rem;
    text-decoration: none;
    display: inline-block;
}

/* Section 4: Donations */
.s3-section4 {
    background-color: #2C46A1;
    padding: 8rem 0 10rem 0;
}

.s3-section4 .container {
    height: auto;
    max-width: 164rem;
}

.donation-title {
    text-align: center;
    font-size: 4rem;
    line-height: 150%;
    margin-bottom: 8rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.donations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8rem;
}

.donation-card {
    background-color: var(--text-white);
    border-radius: 1.2rem;
    padding: 3rem;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    transition-duration: 0.5s;
    text-decoration: none;
}

.don-amount {
    color: var(--primary-red);
    font-size: 4.8rem;
    line-height: 4.8rem;
    margin-bottom: 1rem;
}

.don-deduction {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.don-desc {
    font-size: 2.4rem;
    line-height: initial;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-don {
    background-color: var(--primary-red);
    color: var(--text-white);
    border: none;
    border-radius: 6.3rem;
    height: 4.2rem;
    padding: 0 2.4rem;
    font-family: var(--font-body);
    font-size: 2.4rem;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: transform 0.2s;
    box-shadow: -0.253rem 0.38rem 0 #50A6F9;
    font-weight: 1000;
    text-decoration: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), box-shadow 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), color 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), background-color 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99);
}



.don-img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 1.2rem;
}

/* Section 5: Footer */
.s3-footer {
    background-color: #1D274E;
    padding: 1.6rem 0;
}

.footer-container {
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 140rem;
}

.footer-logo {
    height: 9.2rem;
}

.footer-logo img {
    display: block;
    height: 100%;
}

.footer-links {
    display: flex;
    gap: 3rem;
    font-size: 1.6rem;
    opacity: 1;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 0.1rem;
    background-color: var(--text-white);
    transition-duration: 0.4s;
    z-index: -1;
}


.footer-socials {
    display: flex;
    gap: 1.6rem;
}

.footer-socials img {
    height: 5.2rem;
    display: block;
    transition-duration: 0.3s;
}

.question-step[data-step="5"] .options-grid,
.question-step[data-step="6"] .options-grid {
    gap: 12.2rem;
}

.question-step[data-step="5"] .option-card,
.question-step[data-step="6"] .option-card {
    width: 22.4rem;
}

.question-step:has(.option-card.selected) .option-card:not(.selected).text-only {
    background-color: rgba(36, 56, 114, 0.5);
}

.question-step:has(.option-card.selected) .option-card:not(.selected).text-only p {
    opacity: 0.5;
}

.s3-section1 .container {
    height: auto;
}

.decor-top-left {
    position: absolute;
    top: 32.8rem;
    left: 35rem;
    width: 19.4rem;
    pointer-events: none;
    z-index: 2;
    top: 24.8rem;
}

.answers-wrapper img {
    width: 11.2rem;
    display: block;
    position: absolute;
    top: -5rem;
    left: -16rem;
    pointer-events: none;
}

.s3-section2 .decor-top-left {
    top: -7.7rem;
    left: 29.3rem;
    width: 21rem;
}

.s3-section2 .decor-bottom-right {
    bottom: 0;
    right: 0;
    width: 20rem;
}

.resp-title {
    gap: 1.6rem;
    display: flex;
    margin-bottom: 1.6rem;
}

.decor-top-left2 {
    position: absolute;
    top: -19rem;
    left: -4rem;
    width: 17rem;
    pointer-events: none;
}

.s3-section3 .decor-top-left {
    top: -2.2rem;
    left: calc(50% - 0.2rem);
    transform: translateX(-50%);
    width: 7.1rem;
    display: block;
    z-index: 1;
}


#etape-1 .btn-skewed {
    background-color: var(--light-blue);
    color: var(--text-dark);
    padding: 0.5rem 3.3rem 0rem 3.3rem;
    font-size: 7.7rem;
    border: none;
    cursor: pointer;
    transform: skewX(-20deg) rotate(-5deg);
    position: relative;
    transition: transform 0.2s ease;
    box-shadow: -1.9rem 1.1rem 0 var(--primary-red);
    border-radius: 0;
    font-weight: 400;
    font-family: var(--font-title);
}

.buzzer {
    position: absolute;
    bottom: 0;
    left: 39rem;
    width: 29rem;
    height: 22rem;
    cursor: pointer;
    opacity: 0.5;
}

.transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.duration-700 {
    transition-duration: 700ms;
}

.translate-y-0 {
    --un-translate-y: 0;
    transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));
}

.pointer-events-auto {
    pointer-events: auto;
}

.pointer-events-none {
    pointer-events: none;
}

.etape {

    overflow: auto;

}

.leaveEnd {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-duration: 700ms;
    transform: translateY(-100vh);
    pointer-events: none;
}

body {}

#etape-2 {
    height: 100vh;
    overflow: hidden;
}