/**************************/
/* HEADER */
/**************************/
.faq-answer {
    color: black;
}

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.sam {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.toast {
    margin-top: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.toast-success {
    background-color: #4caf50;
}

.toast-error {
    background-color: #f44336;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eef0fa;
    /* Because we want header to be sticky later */
    height: 9.6rem;
    padding: 0 4.8rem;
    position: relative;
}

.logo {
    height: 12rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1.8rem;
    transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
    color: #e42716;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
    padding: 1.2rem 2.4rem;
    border-radius: 9px;
    color: #fff;
    background-color: #2e4194;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
    background-color: #101735;
}

/* MOBILE */
.btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;

    display: none;
}

.icon-mobile-nav {
    height: 4.8rem;
    width: 4.8rem;
    color: #000;
}

.icon-mobile-nav[name="close-outline"] {
    display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 8rem;
    padding-top: 0;
    padding-bottom: 0;
    background-color: rgba(255, 255, 255, 0.97);
    z-index: 999;
    box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
    margin-top: 9.6rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
    background-color: #eef0fa;
    padding: 4.8rem 0 9.6rem 0;
}

.hero {
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 3.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9.6rem;
    align-items: center;
}

.hero-description {
    color: black;
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 4.8rem;
}

.hero-img {
    width: 100%;
}

.hero-list {

    list-style: disc;
    margin-left: 2rem;
}

.delivered-meals {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: 8rem;
}

.delivered-imgs {
    display: flex;
}

.delivered-imgs img {
    height: 4.8rem;
    width: 4.8rem;
    border-radius: 50%;
    margin-right: -1.6rem;
    border: 3px solid #fdf2e9;
}

.delivered-imgs img:last-child {
    margin: 0;
}

.delivered-text {
    font-size: 1.8rem;
    font-weight: 600;
}

.delivered-text span {
    color: #2e4194;
    font-weight: 700;
}

/**************************/
/* FEATURED IN SECTION */
/**************************/

.section-featured {
    padding: 4.8rem 0 3.2rem 0;
}

.heading-featured-in {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2.4rem;
    color: #888;
}

.logos {
    display: flex;
    justify-content: space-around;
}

.logos img {
    height: 6.2rem;
}

/**************************/
/* HOW IT WORKS SECTION */
/**************************/

.section-how {
    padding: 9.6rem 0;
}

.step-number {
    font-size: 8.6rem;
    font-weight: 600;
    color: black;
    margin-bottom: 1.2rem;
}

.step-description {
    text-align: justify;
    color: black;
    font-size: 1.8rem;
    line-height: 1.5;
}

.step-img-box {
    position: relative;

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

.step-img-box::before,
.step-img-box::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-img-box::before {
    width: 60%;
    /* height: 60%; */

    /* 60% of parent's width */
    padding-bottom: 60%;

    background-color: #384fb7;
    z-index: -2;
}

.step-img-box::after {
    width: 45%;
    padding-bottom: 45%;
    background-color: #7586d5;
    z-index: -1;
}

.step-img {
    width: 35%;
    /* z-index: 10; */
}

/**************************/
/* MEALS SECTION */
/**************************/

.section-meals {
    padding: 9.6rem 0;
}

.why-timeline {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 2.4rem;
    padding: 3.2rem;
    background-color: #fff;
    border: 2px solid #eef0fa;
    border-radius: 11px;
    width: 100%;
    transition: all 0.3s;
}

.timeline-step:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    border-color: #d0ebff;
}

.timeline-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef0fa;
    padding: 1.6rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-icon {
    height: 3.2rem;
    width: 3.2rem;
    color: #2e4194;
}

.timeline-content {
    flex: 1;
}

.timeline-connector {
    color: #2e4194;
    font-size: 3.2rem;
    opacity: 0.5;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Solution Step Styling */
.step-solution {
    background-color: #2e4194;
    border: none;
    color: white;
}

.step-solution:hover {
    transform: scale(1.02);
    box-shadow: 0 3.2rem 6.4rem rgba(46, 65, 148, 0.2);
}

.icon-solution {
    background-color: rgba(255, 255, 255, 0.2);
}

.step-solution .timeline-icon {
    color: white;
}

.step-solution .heading-tertiary {
    color: white;
    margin-bottom: 1.6rem;
}

.text-white {
    color: #eef0fa !important;
}

.why-text {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #000;
}

.why-cta-box {
    margin-top: 6.4rem;
}

.why-conclusion {
    font-size: 3.4rem;
    font-weight: 700;
    color: #2e4194;
    margin: 0 auto;
    line-height: 1.4;
}

.tag--vegetarian {
    background-color: #51cf66;
}

.tag--vegan {
    background-color: #94d82d;
}

.tag--paleo {
    background-color: #ffd43b;
}

.meal-title {
    font-size: 2.4rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 3.2rem;
}

.meal-attributes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.meal-attribute {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.meal-icon {
    height: 2.4rem;
    width: 2.4rem;
    color: #2e4194;
}

.meal-img {
    width: 100%;
}

.all-recipes {
    text-align: center;
    font-size: 1.8rem;
}

/**************************/
/* TESTIMONIALS SECTION */
/**************************/

.section-testimonials {
    background-color: #eef0fa;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.testimonials-container {
    padding: 9.6rem;
}

.testimonials {
    display: flex;
    width: 100%;
    row-gap: 4.8rem;
    column-gap: 2rem;
}

.testimonial-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
}

.testimonial-name {
    font-size: 1.6rem;
    color: #6f6f6f;
}

/**************************/
/* MEALS SECTION */
/**************************/
.section-pricing {
    padding: 9.6rem 0;
}

.pricing-plan {
    border-radius: 11px;
    width: 100%;
    color: black;
    min-height: 44rem;
    display: flex;
    flex-direction: column;
}

.pricing-plan--starter {
    justify-self: end;
    border: 2px solid #fdf2e9;
    padding: 4.6rem;
}

.pricing-plan--complete {
    background-color: #d0ebff;
    padding: 4.8rem;
    position: relative;
    overflow: hidden;
}

.pricing-plan--complete::after {
    content: "Le plus apprécié";
    position: absolute;
    top: 6%;
    right: -18%;

    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    background-color: #1864ab;
    padding: 0.8rem 8rem;
    transform: rotate(45deg);
}

.why-container {
    font-size: 4rem;
    text-align: justify;
    color: black;
    font-size: 1.8rem;
    line-height: 1.5;
    padding-bottom: 2rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 4.8rem;
}

.plan-name {
    color: #212e6a;
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0.75;
    margin-bottom: 3.2rem;
}

.plan-subtitle {
    font-size: 1.6rem;
    width: 100%;
    color: red;
    margin-bottom: 1rem;
}

.prix-barre {
    color: black;
    font-size: 2.2rem;
    text-decoration: line-through;
    text-decoration-color: red;
    text-decoration-thickness: 3px;
}

.cfa {
    color: black;
    font-size: 1.6rem;
}

.plan-price {
    font-size: 4.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.6rem;
}

.plan-price span {
    font-size: 3rem;
    font-weight: 500;
    margin-right: 0.8rem;
}

.plan-text {
    font-size: 1.6rem;
    line-height: 1.2;
    color: black;
}

.plan-sing-up {
    text-align: center;
    display: flex;

    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    margin-top: auto;
}

.plan-sing-up a {
    width: 100%;
}

.plan-details {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: center;
}

.feature-icon {
    color: #2e4194;
    height: 3.2rem;
    width: 3.2rem;
    background-color: #d0ebff;
    margin-bottom: 3.2rem;
    padding: 1.6rem;
    border-radius: 50%;
}

.feature-title {
    font-size: 2.4rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.feature-text {
    color: black;
    font-size: 1.8rem;
    line-height: 1.8;
}

/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
    /* top / right / bottom / left */
    /* padding: 9.6rem 0 12.8rem 0; */

    /* top / horizontal / left */
    padding: 4.8rem 0 12.8rem;
}

.cta {
    display: grid;
    /* 2/3 = 66.6% + 1/3 = 33.3% */
    grid-template-columns: 2fr 1fr;
    /* background-color: #2e4194; */
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
    border-radius: 11px;
    color: #fff;
    background-image: linear-gradient(to right bottom, #2e4194, #2e4194);
    overflow: hidden;
}

.cta2 {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #2e4194; */
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
    border-radius: 11px;

    background-image: linear-gradient(to right bottom, #2e4194, #2e4194);
    overflow: hidden;
}

.cta-text-box {
    padding: 4.8rem 6.4rem 6.4rem 6.4rem;
    color: #fff;
}

.cta .heading-secondary {
    /* color: #45260a; */
    color: inherit;
    margin-bottom: 3.2rem;
}

.cta-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 4.8rem;
}

.cta-img-box {
    background-image: url("https://res.cloudinary.com/ds4fu1hcz/image/upload/v1763460086/black-girls-spending-time-together_urb4pp.jpg");
    background-size: cover;
    background-position: center;
}

.form2 {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    color: black;
}

.cta2 .heading-secondary {
    color: white;
}

.form2 label {
    display: block;
    font-size: 2.2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.2rem;
}

.form2 input,
.form2 select,
.form2 textarea {
    margin-bottom: 3.2rem;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.8rem;
    font-family: inherit;
    color: inherit;
    border: none;
    background-color: #fdf2e9;
    border-radius: 9px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form2 input::placeholder {
    color: #aaa;
}

.cta2 *:focus {
    outline: none;
    box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

.cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3.2rem;
    row-gap: 2.4rem;
}

.cta-form label {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.8rem;
    font-family: inherit;
    color: black;
    border: none;
    background-color: #fdf2e9;
    border-radius: 9px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
    color: #aaa;
}

.cta *:focus {
    outline: none;
    box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/**************************/
/* FOOTER */
/**************************/

.footer {
    padding: 6rem 0;
    border-top: 1px solid #eee;
}

.grid--footer {
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    margin-bottom: 1rem;
}

.logo-col {
    color: black;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: block;
    margin-bottom: 3.2rem;
}

.footer-logo .logo {
    height: 15rem;
}

.social-links {
    color: black;
    list-style: none;
    display: flex;
    gap: 2.4rem;
}

.social-icon {
    height: 2.4rem;
    width: 2.4rem;
}

.copyright {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #767676;
    margin-top: auto;
}

.footer-heading {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.contacts {
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: black;
}

.address {
    margin-bottom: 2.4rem;
    color: black;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.4rem;
    color: black;
}

.footer-link:link,
.footer-link:visited {
    text-decoration: none;
    font-size: 1.6rem;
    color: black;
    transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
    color: #000;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
    font-size: 2rem;
}

.faq-question {
    width: 100%;
    font-size: 2rem;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.faq-question .icon {
    transition: transform 0.3s ease;
    font-weight: bold;
    line-height: 4rem;
    font-size: 1.8rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 2rem;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
    padding: 0 0;
}

.faq-answer p {
    margin: 1rem 0;
}

.faq-item.active .faq-answer {
    max-height: 30rem;

    padding: 1rem 0;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
    content: "–";
}

.mini-styled-text {
    border-radius: 1rem;
    color: black;
    padding: 2rem;
    column-gap: 6rem;
}

.text-cry-div {
    display: flex;
    align-self: center;
    justify-content: center;
}

.text-cry {
    font-size: 1.8rem;
    font-style: italic;
    padding: 1.2rem 2.4rem;
    border-radius: 2rem;
    color: white;

    background-color: red;
}

.text-cry-cas {
    font-size: 1.8rem;
    font-style: italic;
    padding: 0.6rem 1.6rem;
    border-radius: 2rem;
    color: white;
    background-color: red;
}

.mini-styled-text .image {
    overflow: hidden;
    border-radius: 1rem;
}

.glow-text {
    position: relative;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    animation: glow 2.5s ease-in-out infinite alternate;
}

.glow-text::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    animation: shine 5s infinite;
}

/* Glow animation */
@keyframes glow {
    from {
        text-shadow:
            0 0 5px rgba(255, 255, 255, 0.3),
            0 0 10px rgba(255, 255, 255, 0.5);
    }

    to {
        text-shadow:
            0 0 15px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6);
    }
}

/* Shine animation */
@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/**************************/
/* STATS SECTION REDESIGN */
/**************************/

.section-stats {
    padding: 9.6rem 0;
}

.stats-visual-box {
    background-color: #fdf2e9;
    padding: 4.8rem;
    border-radius: 11px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
    margin-top: 3.2rem;
}

.stat-card {
    background-color: #fff;
    padding: 2.4rem;
    border-radius: 9px;
    text-align: center;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 4.4rem;
    font-weight: 700;
    color: #2e4194;
    margin-bottom: 1.2rem;
}

.stat-desc {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #000;
}

.future-box {
    padding: 4.8rem;
}

/**************************/
/* FOOTER REDESIGN */
/**************************/

.footer {
    background-color: #fff;
    color: #000;
    padding: 9.6rem 0 4.8rem 0;
    border-top: 1px solid #eee;
}

.footer-heading {
    color: #000;
}

.footer-logo {
    display: block;
    margin-bottom: 3.2rem;
}

.footer-link:link,
.footer-link:visited {
    color: #000;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
    color: #2e4194;
    text-decoration: underline;
}

.copyright {
    color: #767676;
    font-size: 1.4rem;
    margin-top: 6.4rem;
}

.social-icon-img {
    width: 2.4rem;
    height: 2.4rem;
    /* filter: brightness(0) invert(1); Removed to keep original colors */
}

/**************************/
/* UTILITIES */
/**************************/

.text-primary {
    color: #2e4194 !important;
}

.text-red {
    color: #e42716 !important;
}

.text-lg {
    font-size: 2.4rem !important;
}

.text-xl {
    font-size: 2.2rem !important;
}

.margin-top-xl {
    margin-top: 9.6rem !important;
}

.margin-top-lg {
    margin-top: 6.4rem !important;
}

.margin-bottom-lg {
    margin-bottom: 6.4rem !important;
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}

.margin-y-sm {
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
}

.align-center {
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-align-center {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

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

.font-bold {
    font-weight: 700;
}

.row-gap-sm {
    row-gap: 2.4rem;
}

.calendly-widget {
    min-width: 320px;
    height: 700px;
}

/**************************/
/* OFFER LIST STYLING */
/**************************/

.offer-box {
    background-color: #fff;
    border: 2px solid #eef0fa;
    border-radius: 11px;
    padding: 4.8rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.03);
}

.offer-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    margin-top: 3.2rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    font-size: 1.8rem;
    color: #000;
}

.offer-icon {
    color: #2e4194;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .offer-list {
        grid-template-columns: 1fr;
    }
}

/**************************/
/* CASE STUDY SECTION */
/**************************/

.section-case-study {
    padding: 9.6rem 0;
    background-color: #fafbff;
}

/* Avant SAPR Card */
.case-before-card {
    background-color: #fff;
    border: 2px solid #eef0fa;
    border-radius: 11px;
    padding: 4.8rem;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    max-width: 90rem;
    margin: 0 auto;
}

.case-card-header {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
}

.case-icon {
    width: 4.8rem;
    height: 4.8rem;
    flex-shrink: 0;
}

.case-icon-before {
    color: #e42716;
}

.case-profile {
    background-color: #eef0fa;
    padding: 2.4rem;
    border-radius: 9px;
    margin-bottom: 3.2rem;
}

.case-profile-text {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1.2rem;
}

.case-quote {
    font-size: 2.4rem;
    font-style: italic;
    color: #2e4194;
    font-weight: 600;
}

.case-intro-text {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 2.4rem;
}

.case-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 3.2rem;
}

.case-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    font-size: 1.8rem;
    color: #000;
    line-height: 1.6;
}

.case-list-icon {
    width: 2.4rem;
    height: 2.4rem;
    color: #e42716;
    flex-shrink: 0;
    margin-top: 0.4rem;
}

.case-list-item em {
    color: #888;
    font-size: 1.6rem;
}

.case-reality {
    font-size: 2rem;
    color: #e42716;
    text-align: center;
    padding: 2.4rem;
    background-color: #fff5f5;
    border-radius: 9px;
    border-left: 4px solid #e42716;
}

/* Le Déclic Box */
.case-trigger-box {
    background: linear-gradient(135deg, #2e4194 0%, #101735 100%);
    border-radius: 11px;
    padding: 4.8rem;
    color: #fff;
    box-shadow: 0 2.4rem 4.8rem rgba(46, 65, 148, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 90rem;
    margin: 0 auto;
}

.case-trigger-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.case-trigger-icon {
    width: 6.4rem;
    height: 6.4rem;
    color: #ffd43b;
    margin-bottom: 2.4rem;
}

.case-trigger-content {
    position: relative;
    z-index: 1;
}

.case-trigger-text {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 2.4rem;
    color: #eef0fa;
}

.case-trigger-question {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffd43b;
    margin-bottom: 1.6rem;
    text-align: center;
    padding: 2.4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9px;
}

.case-trigger-answer {
    font-size: 2rem;
    text-align: center;
    color: #fff;
    margin-bottom: 3.2rem;
}

.case-unknowns {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.4rem;
    border-radius: 9px;
    margin-top: 2.4rem;
}

.case-unknowns p {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
    color: #fff;
}

.case-unknowns ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.case-unknowns li {
    font-size: 1.6rem;
    color: #eef0fa;
    padding-left: 2.4rem;
    position: relative;
}

.case-unknowns li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e42716;
    font-weight: 700;
}

/* Après SAPR */
.case-after-header {
    margin-bottom: 4.8rem;
}

.case-after-subtitle {
    font-size: 2rem;
    color: #000;
    margin-top: 1.6rem;
}

.case-section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2e4194;
    margin-bottom: 3.2rem;
    text-align: center;
}

.case-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
    margin-top: 3.2rem;
}

.case-pillar {
    background-color: #fff;
    border: 2px solid #eef0fa;
    border-radius: 11px;
    padding: 3.2rem;
    transition: all 0.3s;
    box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.05);
}

.case-pillar:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);
    border-color: #2e4194;
}

.case-pillar-header {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
}

.case-pillar-icon {
    width: 4rem;
    height: 4rem;
    color: #2e4194;
    background-color: #eef0fa;
    padding: 0.8rem;
    border-radius: 50%;
}

.case-pillar-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2e4194;
}

.case-pillar-subtitle {
    font-size: 1.6rem;
    color: #888;
    font-style: italic;
    margin-bottom: 2.4rem;
}

.case-pillar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.case-pillar-list li {
    font-size: 1.6rem;
    color: #000;
    padding-left: 2.4rem;
    position: relative;
    line-height: 1.5;
}

.case-pillar-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #51cf66;
    font-weight: 700;
}

.case-pillar-conclusion {
    margin-top: 1.6rem;
    font-size: 2rem;
    font-style: italic;
    font-weight: 600;
    color: #2e4194;
    line-height: 1.6;
}

/* Comparaison Grid */
.case-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
    margin-top: 3.2rem;
}

.case-comparison-before,
.case-comparison-after {
    padding: 3.2rem;
    border-radius: 11px;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
}

.case-comparison-before {
    background-color: #fff5f5;
    border: 2px solid #ffcccc;
}

.case-comparison-after {
    background-color: #f0f9ff;
    border: 2px solid #d0ebff;
}

.case-comparison-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    text-align: center;
}

.case-comparison-before .case-comparison-title {
    color: #e42716;
}

.case-comparison-after .case-comparison-title {
    color: #2e4194;
}

.case-comparison-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: #000;
    margin-bottom: 2.4rem;
    text-align: center;
    padding: 1.6rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 9px;
}

.case-comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.case-comparison-list li {
    font-size: 2rem;
    text-align: center;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

/* Comparison Icons */
.comparison-icon {
    height: 2.4rem;
    width: 2.4rem;
    flex-shrink: 0;
}

.comparison-icon-negative {
    color: #c92a2a;
}

.comparison-icon-positive {
    color: #2b8a3e;
}


/* Testimonial Box */
.case-testimonial-box {
    background: linear-gradient(135deg, #eef0fa 0%, #d0ebff 100%);
    border-radius: 11px;
    padding: 4.8rem;
    text-align: center;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    max-width: 90rem;
    margin: 0 auto;
    position: relative;
}

.case-testimonial-icon {
    width: 6.4rem;
    height: 6.4rem;
    color: #2e4194;
    margin-bottom: 2.4rem;
}

.case-testimonial-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2e4194;
    margin-bottom: 2.4rem;
}

.case-testimonial-quote {
    font-size: 2.2rem;
    font-style: italic;
    color: #000;
    line-height: 1.6;
    margin-bottom: 2.4rem;
    padding: 0 3.2rem;
    position: relative;
}

.case-testimonial-quote::before {
    content: "“";
    font-size: 6.4rem;
    color: #2e4194;
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: 0;
}

.case-testimonial-author {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2e4194;
}

/* CTA Box */
.case-cta-box {
    text-align: center;
    padding: 4.8rem;
    background-color: #fff;
    border-radius: 11px;
    border: 2px solid #eef0fa;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    max-width: 90rem;
    margin: 0 auto;
}

.case-cta-text {
    font-size: 2.4rem;
    color: #000;
    margin-bottom: 2.4rem;
}

.case-cta-question {
    font-size: 2rem;
    color: #000;
    margin-bottom: 2.4rem;
    line-height: 1.8;
}

.case-cta-question strong {
    color: #2e4194;
}

.case-cta-closing {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 3.2rem;
    line-height: 1.6;
}

.case-cta-button {
    margin-top: 3.2rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .case-pillars-grid {
        grid-template-columns: 1fr;
    }

    .case-comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .case-before-card,
    .case-trigger-box,
    .case-testimonial-box,
    .case-cta-box {
        padding: 3.2rem 2.4rem;
    }

    .case-pillar {
        padding: 2.4rem;
    }

    .case-testimonial-quote {
        font-size: 1.8rem;
        padding: 0 1.6rem;
    }

    .case-cta-text {
        font-size: 2rem;
    }
}

/**************************/
/* SOPHIE CASE STUDY SECTION */
/**************************/

.section-eva-study {
    padding: 9.6rem 0;
    background: #fafbff;
}

.eva-profile-card {
    background: white;
    border-radius: 11px;
    padding: 4.8rem;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
}

.eva-profile-header {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
}

.eva-icon {
    height: 6.4rem;
    width: 6.4rem;
    color: #2e4194;
}

.eva-subtitle {
    font-size: 1.8rem;
    color: #000;
    margin-top: 0.8rem;
}

.eva-intro {
    font-size: 2rem;
    margin-bottom: 2.4rem;
}

.eva-challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    margin-bottom: 3.2rem;
}

.eva-challenge-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.6rem;
    background: #eef0fa;
    border-radius: 8px;
}

.eva-challenge-item ion-icon {
    height: 2.4rem;
    width: 2.4rem;
    color: #2e4194;
    flex-shrink: 0;
}

.eva-challenge-item span {
    font-size: 1.6rem;
    color: #000;
}

.eva-quote {
    font-size: 2rem;
    font-style: italic;
    color: #000;
    padding: 2.4rem;
    background: #f8f9fa;
    border-left: 4px solid #2e4194;
    border-radius: 8px;
    margin-top: 2.4rem;
}

.eva-error-box {
    background: white;
    border: 2px solid #c92a2a;
    border-radius: 11px;
    padding: 4.8rem;
    box-shadow: 0 2.4rem 4.8rem rgba(201, 42, 42, 0.1);
}

.eva-error-text {
    font-size: 2rem;
    margin-bottom: 2.4rem;
    color: #000;
}

.eva-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    margin-bottom: 3.2rem;
}

.eva-result-item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 2.4rem;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 600;
}

.eva-result-success {
    background: #d3f9d8;
    color: #2b8a3e;
}

.eva-result-success ion-icon {
    height: 3.2rem;
    width: 3.2rem;
    color: #2b8a3e;
}

.eva-result-fail {
    background: #ffe0e0;
    color: #c92a2a;
}

.eva-result-fail ion-icon {
    height: 3.2rem;
    width: 3.2rem;
    color: #c92a2a;
}

.eva-section-subtitle {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2e4194;
    margin: 3.2rem 0 1.6rem 0;
}

.eva-explanation {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 2.4rem;
}

.eva-tasks-list {
    list-style: none;
}

.eva-tasks-list li {
    font-size: 1.8rem;
    padding-left: 3.2rem;
    position: relative;
    margin-bottom: 1.2rem;
    color: #000;
}

.eva-tasks-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #c92a2a;
    font-weight: 700;
}

.eva-reality {
    font-size: 2rem;
    font-weight: 600;
    color: #2e4194;
    margin: 3.2rem 0 2.4rem 0;
}

.eva-quote-secondary {
    font-size: 1.8rem;
    font-style: italic;
    color: #000;
    padding: 2.4rem;
    background: #fff3cd;
    border-left: 4px solid #ffa94d;
    border-radius: 8px;
    margin-top: 2.4rem;
}

.eva-turning-point {
    background: linear-gradient(135deg, #2e4194 0%, #1864ab 100%);
    border-radius: 11px;
    padding: 4.8rem;
    text-align: center;
    position: relative;
}

.eva-turning-icon {
    height: 6.4rem;
    width: 6.4rem;
    color: #ffd43b;
    margin-bottom: 2.4rem;
}

.eva-turning-text {
    font-size: 2rem;
    color: white;
    line-height: 1.6;
}

.eva-subtitle-text {
    font-size: 1.8rem;
    color: #000;
    font-style: italic;
    margin-top: 0.8rem;
    margin-bottom: 4.8rem;
}

.eva-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
}

.eva-service-card {
    background: white;
    border-radius: 11px;
    padding: 3.2rem;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.eva-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.1);
}

.eva-service-header {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}

.eva-service-icon {
    height: 4rem;
    width: 4rem;
    color: #2e4194;
    padding: 1.2rem;
    background: #eef0fa;
    border-radius: 8px;
}

.eva-service-header h4 {
    font-size: 2.2rem;
    color: #2e4194;
    margin: 0;
}

.eva-before-after {
    background: #f8f9fa;
    padding: 2.4rem;
    border-radius: 8px;
    margin-bottom: 2.4rem;
}

.eva-before-after p {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #000;
}

.eva-before-after p:last-child {
    margin-bottom: 0;
}

.eva-service-intro {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 2.4rem;
}

.eva-benefits-list {
    list-style: none;
}

.eva-benefits-list li {
    font-size: 1.6rem;
    padding-left: 3.2rem;
    position: relative;
    margin-bottom: 1.2rem;
    color: #000;
}

.eva-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2b8a3e;
    font-weight: 700;
}

.eva-highlight {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2e4194;
    background: #eef0fa;
    padding: 1.6rem 2.4rem;
    border-radius: 8px;
    margin-top: 2.4rem;
}

.eva-crisis-box {
    background: white;
    border: 2px solid #fa5252;
    border-radius: 11px;
    padding: 4.8rem;
    box-shadow: 0 2.4rem 4.8rem rgba(250, 82, 82, 0.1);
}

.eva-crisis-header {
    text-align: center;
    margin-bottom: 3.2rem;
}

.eva-crisis-icon {
    height: 6.4rem;
    width: 6.4rem;
    color: #fa5252;
    margin-bottom: 1.6rem;
}

.eva-crisis-date {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fa5252;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eva-crisis-event {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 3.2rem;
}

.eva-crisis-consequences {
    margin-bottom: 3.2rem;
}

.eva-crisis-consequences h4 {
    font-size: 2rem;
    color: #2e4194;
    margin-bottom: 1.6rem;
}

.eva-crisis-consequences ul {
    list-style: none;
}

.eva-crisis-consequences li {
    font-size: 1.8rem;
    padding-left: 3.2rem;
    position: relative;
    margin-bottom: 1.2rem;
    color: #000;
}

.eva-crisis-consequences li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #fa5252;
}

.eva-crisis-quote {
    font-size: 2rem;
    font-style: italic;
    color: #c92a2a;
    padding: 2.4rem;
    background: #ffe0e0;
    border-left: 4px solid #c92a2a;
    border-radius: 8px;
    margin-bottom: 2.4rem;
}

.eva-crisis-fear {
    font-size: 1.8rem;
    color: #000;
}

.eva-solution-box {
    background: white;
    border: 2px solid #2b8a3e;
    border-radius: 11px;
    padding: 4.8rem;
    box-shadow: 0 2.4rem 4.8rem rgba(43, 138, 62, 0.1);
}

.eva-solution-intro {
    font-size: 2rem;
    color: #000;
    margin-bottom: 2.4rem;
}

.eva-solution-quote {
    font-size: 2rem;
    font-style: italic;
    color: #2b8a3e;
    padding: 2.4rem;
    background: #d3f9d8;
    border-left: 4px solid #2b8a3e;
    border-radius: 8px;
    margin-bottom: 3.2rem;
}

.eva-adjustments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
}

.eva-adjustment-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2.4rem;
    position: relative;
}

.eva-adjustment-number {
    position: absolute;
    top: -1.6rem;
    left: 2.4rem;
    background: #2e4194;
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.eva-adjustment-card h5 {
    font-size: 1.8rem;
    color: #2e4194;
    margin: 2.4rem 0 1.6rem 0;
}

.eva-adjustment-card ul {
    list-style: none;
}

.eva-adjustment-card li {
    font-size: 1.6rem;
    padding-left: 3.2rem;
    position: relative;
    margin-bottom: 1.2rem;
    color: #000;
}

.eva-adjustment-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2e4194;
    font-weight: 700;
}

.eva-results-table {
    background: white;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    margin-bottom: 4.8rem;
}

.eva-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #2e4194;
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
}

.eva-table-header div {
    padding: 2.4rem;
    text-align: center;
}

.eva-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.eva-table-row:last-child {
    border-bottom: none;
}

.eva-table-row div {
    padding: 2.4rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.eva-table-row div:first-child {
    font-weight: 600;
    color: #2e4194;
    background: #fafbff;
}

.eva-feared {
    color: #c92a2a;
    font-weight: 600;
}

.eva-reality-good {
    color: #2b8a3e;
    font-weight: 600;
}

.eva-testimonial {
    font-size: 2rem;
    font-style: italic;
    color: #000;
    padding: 4.8rem;
    background: linear-gradient(135deg, #eef0fa 0%, #d0ebff 100%);
    border-left: 4px solid #2e4194;
    border-radius: 11px;
    line-height: 1.6;
}

.eva-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
}

.eva-pillar-card {
    background: white;
    border-radius: 11px;
    padding: 3.2rem;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    padding-top: 6.4rem;
}

.eva-pillar-number {
    position: absolute;
    top: -1.6rem;
    left: 50%;
    transform: translateX(-50%);
    background: #2e4194;
    color: white;
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
}

.eva-pillar-card h4 {
    font-size: 2.2rem;
    color: #2e4194;
    margin-bottom: 1.6rem;
}

.eva-pillar-card p {
    font-size: 1.6rem;
    color: #000;
    line-height: 1.6;
}

.eva-comparison-table {
    background: white;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
}

.eva-comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #2e4194;
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
}

.eva-comparison-header div {
    padding: 2.4rem;
    text-align: center;
}

.eva-comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.eva-comparison-row:last-child {
    border-bottom: none;
}

.eva-comparison-row div {
    padding: 2.4rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.eva-comparison-row div:first-child {
    font-weight: 600;
    color: #2e4194;
    background: #fafbff;
    justify-content: flex-start;
    text-align: left;
}

.eva-final-cta {
    background: linear-gradient(135deg, #2e4194 0%, #1864ab 100%);
    border-radius: 11px;
    padding: 6.4rem 4.8rem;
    text-align: center;
}

.eva-final-question {
    font-size: 2.4rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 2.4rem;
}

.eva-final-insight {
    font-size: 2rem;
    color: #d0ebff;
    line-height: 1.6;
    margin-bottom: 2.4rem;
}

.eva-final-tagline {
    font-size: 1.8rem;
    color: #ffd43b;
    margin-bottom: 3.2rem;
}

.eva-cta-button {
    display: flex;
    justify-content: center;
}

/* Responsive Design for Eva Section */
@media (max-width: 900px) {

    .eva-challenges-grid,
    .eva-services-grid,
    .eva-adjustments-grid,
    .eva-pillars-grid {
        grid-template-columns: 1fr;
    }

    .eva-table-header,
    .eva-table-row,
    .eva-comparison-header,
    .eva-comparison-row {
        grid-template-columns: 1fr;
    }

    .eva-table-header div,
    .eva-comparison-header div {
        background: #2e4194;
        color: white;
        font-weight: 700;
    }

    .eva-table-row div:first-child,
    .eva-comparison-row div:first-child {
        background: #eef0fa;
    }
}

@media (max-width: 600px) {

    .eva-profile-card,
    .eva-error-box,
    .eva-turning-point,
    .eva-crisis-box,
    .eva-solution-box,
    .eva-final-cta {
        padding: 3.2rem 2.4rem;
    }

    .eva-quote,
    .eva-quote-secondary,
    .eva-crisis-quote,
    .eva-solution-quote,
    .eva-testimonial {
        font-size: 1.8rem;
        padding: 2.4rem;
    }
}

/* Profile Card */
.eva-profile-card {
    background-color: #fff;
    border-radius: 11px;
    padding: 4.8rem;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    border: 2px solid #eef0fa;
}

.eva-profile-header {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
}

.eva-icon {
    height: 6.4rem;
    width: 6.4rem;
    color: #2e4194;
}

.eva-subtitle {
    font-size: 1.8rem;
    color: #000;
    margin-top: 0.8rem;
}

.eva-intro {
    font-size: 2rem;
    margin-bottom: 2.4rem;
    color: #000;
}

.eva-challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    margin-bottom: 3.2rem;
}

.eva-challenge-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.6rem;
    background-color: #eef0fa;
    border-radius: 8px;
}

.eva-challenge-item ion-icon {
    height: 2.4rem;
    width: 2.4rem;
    color: #2e4194;
    flex-shrink: 0;
}

.eva-challenge-item span {
    font-size: 1.6rem;
    color: #000;
}

.eva-quote {
    font-size: 2rem;
    font-style: italic;
    color: #000;
    padding: 2.4rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2e4194;
    border-radius: 8px;
    margin-top: 2.4rem;
}

/* Error Box */
.eva-error-box {
    background-color: #fff;
    border-radius: 11px;
    padding: 4.8rem;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    border: 2px solid #ffe0e0;
}

.eva-error-text {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 2.4rem;
    text-align: center;
}

.eva-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    margin-bottom: 3.2rem;
}

.eva-result-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 2.4rem;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 600;
}

.eva-result-success {
    background-color: #d3f9d8;
    color: #2b8a3e;
}

.eva-result-success ion-icon {
    height: 3.2rem;
    width: 3.2rem;
    color: #2b8a3e;
}

.eva-result-fail {
    background-color: #ffe0e0;
    color: #c92a2a;
}

.eva-result-fail ion-icon {
    height: 3.2rem;
    width: 3.2rem;
    color: #c92a2a;
}

.eva-section-subtitle {
    font-size: 2.4rem;
    color: #2e4194;
    margin-bottom: 1.6rem;
    margin-top: 3.2rem;
}

.eva-explanation {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1.6rem;
}

.eva-tasks-list {
    list-style: none;
    margin-bottom: 2.4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 2.4rem;
}

.eva-tasks-list li {
    font-size: 1.8rem;
    color: #000;
    padding-left: 3.2rem;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 3.2rem;
}

.eva-tasks-list li::before {
    content: "•";
    position: absolute;
    left: 1.2rem;
    color: #2e4194;
    font-size: 2.4rem;
    line-height: 1;
}

.eva-reality {
    font-size: 1.8rem;
    color: #000;
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;
}

.eva-quote-secondary {
    font-size: 1.8rem;
    font-style: italic;
    color: #000;
    padding: 2.4rem;
    background-color: #fff8dc;
    border-left: 4px solid #ffa94d;
    border-radius: 8px;
    margin-top: 2.4rem;
}

/* Turning Point */
.eva-turning-point {
    background: linear-gradient(135deg, #2e4194 0%, #1864ab 100%);
    border-radius: 11px;
    padding: 4.8rem;
    text-align: center;
    box-shadow: 0 2.4rem 4.8rem rgba(46, 65, 148, 0.3);
    position: relative;
    overflow: hidden;
}

.eva-turning-icon {
    height: 6.4rem;
    width: 6.4rem;
    color: #ffd43b;
    margin-bottom: 2.4rem;
}

.eva-turning-text {
    font-size: 2rem;
    color: #fff;
    line-height: 1.6;
}

.eva-subtitle-text {
    font-size: 1.8rem;
    color: #000;
    font-style: italic;
    margin-bottom: 3.2rem;
}

/* Services Grid */
.eva-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
    margin-top: 4.8rem;
}

.eva-service-card {
    background-color: #fff;
    border-radius: 11px;
    padding: 3.2rem;
    box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.05);
    border: 2px solid #eef0fa;
    transition: all 0.3s;
}

.eva-service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);
    border-color: #2e4194;
}

.eva-service-header {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}

.eva-service-icon {
    height: 4.8rem;
    width: 4.8rem;
    color: #2e4194;
    background-color: #eef0fa;
    padding: 1.2rem;
    border-radius: 50%;
}

.eva-service-header h4 {
    font-size: 2.2rem;
    color: #2e4194;
    font-weight: 700;
}

.eva-before-after {
    background-color: #f8f9fa;
    padding: 1.6rem;
    border-radius: 8px;
    margin-bottom: 2.4rem;
}

.eva-before-after p {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 0.8rem;
}

.eva-before-after p:last-child {
    margin-bottom: 0;
}

.eva-service-intro {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1.6rem;
}

.eva-benefits-list {
    list-style: none;
    margin-bottom: 1.6rem;
}

.eva-benefits-list li {
    font-size: 1.6rem;
    color: #000;
    padding: 0.8rem 0;
    padding-left: 2.4rem;
    position: relative;
}

.eva-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e4194;
    font-weight: 700;
}

.eva-highlight {
    font-size: 1.6rem;
    color: #2e4194;
    font-weight: 600;
    font-style: italic;
    margin-top: 1.6rem;
}

/* Crisis Box */
.eva-crisis-box {
    background-color: #fff;
    border-radius: 11px;
    padding: 4.8rem;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    border: 2px solid #ffe0e0;
}

.eva-crisis-header {
    text-align: center;
    margin-bottom: 3.2rem;
}

.eva-crisis-icon {
    height: 6.4rem;
    width: 6.4rem;
    color: #fa5252;
    margin-bottom: 1.6rem;
}

.eva-crisis-date {
    font-size: 1.6rem;
    color: #000;
    font-weight: 600;
    margin-top: 0.8rem;
}

.eva-crisis-event {
    font-size: 2rem;
    color: #000;
    text-align: center;
    margin-bottom: 3.2rem;
}

.eva-crisis-consequences {
    background-color: #fff5f5;
    padding: 2.4rem;
    border-radius: 8px;
    margin-bottom: 2.4rem;
}

.eva-crisis-consequences h4 {
    font-size: 1.8rem;
    color: #c92a2a;
    margin-bottom: 1.6rem;
}

.eva-crisis-consequences ul {
    list-style: none;
}

.eva-crisis-consequences li {
    font-size: 1.6rem;
    color: #000;
    padding: 0.8rem 0;
    padding-left: 2.4rem;
    position: relative;
}

.eva-crisis-consequences li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #fa5252;
}

.eva-crisis-quote {
    font-size: 2rem;
    font-style: italic;
    color: #c92a2a;
    padding: 2.4rem;
    background-color: #fff5f5;
    border-left: 4px solid #fa5252;
    border-radius: 8px;
    margin-bottom: 2.4rem;
}

.eva-crisis-fear {
    font-size: 1.6rem;
    color: #000;
    text-align: center;
    font-style: italic;
}

/* Solution Box */
.eva-solution-box {
    background-color: #fff;
    border-radius: 11px;
    padding: 4.8rem;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    border: 2px solid #d3f9d8;
}

.eva-solution-intro {
    font-size: 1.8rem;
    color: #000;
    text-align: center;
    margin-bottom: 2.4rem;
}

.eva-solution-quote {
    font-size: 2rem;
    font-style: italic;
    color: #2b8a3e;
    padding: 2.4rem;
    background-color: #ebfbee;
    border-left: 4px solid #51cf66;
    border-radius: 8px;
    margin-bottom: 3.2rem;
}

.eva-adjustments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    margin-top: 3.2rem;
}

.eva-adjustment-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2.4rem;
    border: 2px solid #e9ecef;
}

.eva-adjustment-number {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    background-color: #2e4194;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.eva-adjustment-card h5 {
    font-size: 1.8rem;
    color: #2e4194;
    margin-bottom: 1.6rem;
}

.eva-adjustment-card ul {
    list-style: none;
}

.eva-adjustment-card li {
    font-size: 1.6rem;
    color: #000;
    padding: 0.8rem 0;
    padding-left: 2.4rem;
    position: relative;
}

.eva-adjustment-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2e4194;
    font-weight: 700;
}

/* Results Table */
.eva-results-table {
    background-color: #fff;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    margin-bottom: 3.2rem;
}

.eva-table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 1.6rem;
    background-color: #2e4194;
    color: #fff;
    padding: 2.4rem;
    font-weight: 700;
    font-size: 1.8rem;
}

.eva-table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 1.6rem;
    padding: 2.4rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.6rem;
}

.eva-table-row:last-child {
    border-bottom: none;
}

.eva-table-row:nth-child(even) {
    background-color: #f8f9fa;
}

.eva-feared {
    color: #c92a2a;
    font-weight: 600;
}

.eva-reality-good {
    color: #2b8a3e;
    font-weight: 600;
}

.eva-testimonial {
    font-size: 2rem;
    font-style: italic;
    color: #000;
    padding: 3.2rem;
    background-color: #fff;
    border-left: 4px solid #2e4194;
    border-radius: 8px;
    box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.05);
    line-height: 1.6;
}

/* Pillars Grid */
.eva-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
    margin-top: 4.8rem;
}

.eva-pillar-card {
    background-color: #fff;
    border-radius: 11px;
    padding: 3.2rem;
    box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.05);
    border: 2px solid #eef0fa;
    text-align: center;
    transition: all 0.3s;
}

.eva-pillar-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);
    border-color: #2e4194;
}

.eva-pillar-number {
    display: inline-block;
    width: 6.4rem;
    height: 6.4rem;
    background: linear-gradient(135deg, #2e4194 0%, #1864ab 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0 auto 2.4rem;
}

.eva-pillar-card h4 {
    font-size: 2.2rem;
    color: #2e4194;
    margin-bottom: 1.6rem;
}

.eva-pillar-card p {
    font-size: 1.6rem;
    color: #000;
    line-height: 1.6;
}

/* Comparison Table */
.eva-comparison-table {
    background-color: #fff;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    margin-top: 4.8rem;
}

.eva-comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.6rem;
    background-color: #2e4194;
    color: #fff;
    padding: 2.4rem;
    font-weight: 700;
    font-size: 1.8rem;
}

.eva-comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.6rem;
    padding: 2.4rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.6rem;
    align-items: center;
}

.eva-comparison-row:last-child {
    border-bottom: none;
}

.eva-comparison-row:nth-child(even) {
    background-color: #f8f9fa;
}

.eva-comparison-row div:nth-child(2),
.eva-comparison-row div:nth-child(3) {
    font-size: 2rem;
}

/* Final CTA */
.eva-final-cta {
    background: linear-gradient(135deg, #2e4194 0%, #1864ab 100%);
    border-radius: 11px;
    padding: 6.4rem 4.8rem;
    text-align: center;
    box-shadow: 0 2.4rem 4.8rem rgba(46, 65, 148, 0.3);
}

.eva-final-question {
    font-size: 2.2rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 2.4rem;
}

.eva-final-insight {
    font-size: 2rem;
    color: #d0ebff;
    line-height: 1.6;
    margin-bottom: 2.4rem;
}

.eva-final-tagline {
    font-size: 1.8rem;
    color: #a5d8ff;
    margin-bottom: 3.2rem;
}

.eva-cta-button {
    margin-top: 3.2rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .eva-challenges-grid {
        grid-template-columns: 1fr;
    }

    .eva-result-grid {
        grid-template-columns: 1fr;
    }

    .eva-services-grid {
        grid-template-columns: 1fr;
    }

    .eva-adjustments-grid {
        grid-template-columns: 1fr;
    }

    .eva-tasks-list {
        grid-template-columns: 1fr;
    }

    .eva-pillars-grid {
        grid-template-columns: 1fr;
    }

    /* Tableau des résultats - Responsive */
    .eva-table-header {
        display: none;
    }

    .eva-table-row {
        display: block;
        padding: 2.4rem;
        margin-bottom: 1.6rem;
        border: 2px solid #2e4194;
        border-radius: 8px;
        background-color: #fff !important;
    }

    .eva-table-row>div {
        display: flex;
        justify-content: space-between;
        align-items: start;
        padding: 1.2rem 0;
        border-bottom: 1px solid #e9ecef;
        gap: 1.2rem;
    }

    .eva-table-row>div:last-child {
        border-bottom: none;
    }

    .eva-table-row>div::before {
        content: attr(data-label);
        font-weight: 700;
        color: #2e4194;
        font-size: 1.4rem;
        min-width: 140px;
        flex-shrink: 0;
    }

    .eva-table-row>div:first-child::before {
        content: "Indicateur:";
    }

    .eva-table-row>div:nth-child(2)::before {
        content: "Crainte:";
    }

    .eva-table-row>div:nth-child(3)::before {
        content: "Réalité SAPR:";
    }

    /* Tableau de comparaison - Responsive */
    .eva-comparison-header {
        display: none;
    }

    .eva-comparison-row {
        display: block;
        padding: 2.4rem;
        margin-bottom: 1.6rem;
        border: 2px solid #2e4194;
        border-radius: 8px;
        background-color: #fff !important;
    }

    .eva-comparison-row>div {
        display: flex;
        justify-content: space-between;
        align-items: start;
        padding: 1.2rem 0;
        border-bottom: 1px solid #e9ecef;
        gap: 1.2rem;
    }

    .eva-comparison-row>div:last-child {
        border-bottom: none;
    }

    .eva-comparison-row>div::before {
        content: attr(data-label);
        font-weight: 700;
        color: #2e4194;
        font-size: 1.4rem;
        min-width: 140px;
        flex-shrink: 0;
    }

    .eva-comparison-row>div:first-child::before {
        content: "Critère:";
    }

    .eva-comparison-row>div:nth-child(2)::before {
        content: "Plan seul:";
    }

    .eva-comparison-row>div:nth-child(3)::before {
        content: "Avec SAPR:";
    }

    .eva-comparison-row div:nth-child(2),
    .eva-comparison-row div:nth-child(3) {
        text-align: left;
    }
}

@media (max-width: 600px) {

    .eva-profile-card,
    .eva-error-box,
    .eva-turning-point,
    .eva-crisis-box,
    .eva-solution-box,
    .eva-final-cta {
        padding: 3.2rem 2.4rem;
    }

    .eva-service-card,
    .eva-pillar-card {
        padding: 2.4rem;
    }

    .eva-quote,
    .eva-testimonial {
        font-size: 1.8rem;
        padding: 2.4rem 1.6rem;
    }

    .eva-final-question {
        font-size: 1.8rem;
    }

    .eva-final-insight {
        font-size: 1.6rem;
    }
}

.eva-community-box {
    background-image: linear-gradient(rgba(231, 245, 255, 0.85), rgba(231, 245, 255, 0.85)), url('https://res.cloudinary.com/ds4fu1hcz/image/upload/v1764695111/group-happy-african-volunteers-put-hands-hands-park-africa-volunteering-charity-people-ecology-concept_tob3mt.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 11px;
    padding: 4.8rem;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
    border: 2px solid #a5d8ff;
}

.eva-community-content {
    background-color: white;
    padding: 3.2rem;
    border-radius: 9px;
    margin-bottom: 3.2rem;
}

/**************************/
/* VIDEO INTRODUCTION SECTION */
/**************************/

.section-video-intro {
    padding: 9.6rem 0;
    background-color: #f8f9fa;
}

.section-video-intro .subheading {
    display: block;
    text-align: center;
    margin-bottom: 1.6rem;
}

.section-video-intro .heading-secondary {
    text-align: center;
    margin-bottom: 4.8rem;
}

.video-container {
    max-width: 90rem;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Personnalisation des contrôles Plyr */
.plyr--video {
    border-radius: 16px;
}

.plyr__control--overlaid {
    background: rgba(46, 65, 148, 0.9);
}

.plyr__control--overlaid:hover {
    background: #2e4194;
}

.plyr--full-ui input[type=range] {
    color: #2e4194;
}

.plyr__control:hover,
.plyr__control[aria-expanded=true] {
    background: #2e4194;
}