:root {
    /* Updated Color Palette */
    --primary-color: #1A1A1A;       /* Main text, headers, navigation */
    --secondary-color: #dec014;     /* Primary accent - gold */
    --accent-color: #e2c104;        /* Secondary accent - yellow */
    --text-color: #1A1A1A;          /* Main text color - black */
    --light-bg: #FDF8F0;            /* Light warm background */
    --white: #FFFFFF;               /* Pure white */
    --transition: all 0.3s ease;    /* Global transition */
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-bg);
}

/* ===== Header & Navigation ===== */
header {
    background: #000000;
    color: #FFFFFF;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
}

.header-scrolled {
    padding: 1.25rem 5%;
    height: 80px;
}

.header-scrolled .logo-icon {
    transform: scale(0.9);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 70px; /* Hauteur fixe pour le logo */
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 500px; /* Largeur maximale pour le logo */
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo-img {
        max-width: 50px; /* Largeur minimale pour rester lisible */
        height: auto;
        padding:  0; /* Espacement vertical réduit */
    }
}

.logo:hover {
     transform: scale(1.1); /* Augmente la taille de 10% */
    transition: transform 0.3s ease; /* Animation fluide */
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li {
    margin-left: 2.25rem;
    position: relative;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0.25rem;
    white-space: nowrap;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 2px;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.6rem;
    color: var(--primary-color);
    background: none;
    border: none;
    padding: 0.5rem;
    margin-left: 1rem;
    transition: var(--transition);
}

.menu-toggle {
    color: #FFFFFF;
}

/* ===== Hero Section ===== */
.hero {
    padding: 180px 5% 120px;
    background: var(--light-bg);
    color: var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Bordure supprimée pour un design plus épuré */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBmaWxsPSIjZmZmZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDMiPjwvcmVjdD48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiPjwvcmVjdD48L3N2Zz4=');
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.hero-content .offer-features {
    flex-grow: 1;
    margin: 1.25rem 0;
    overflow: hidden;
    padding-right: 0.5rem;
}

.hero-content .offer-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-content .offer-features li {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    opacity: 0.9;
    transform: translateX(0);
    padding: 0.25rem 0;
}

.hero-content .offer-features li:nth-child(n+5) {
    display: none;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 auto 1.75rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
    font-weight: 800;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
    color: var(--primary-color);
}

.hero p {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin: 0 auto 3rem;
    color: var(--text-color);
    max-width: 750px;
    line-height: 1.5;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-tagline {
    display: inline-flex;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: fadeIn 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 6px solid var(--secondary-color);
    margin: 0 auto 2.5rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: fadeIn 1s ease 0.4s;
    animation-fill-mode: both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.profile-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

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

/* ===== CTA Buttons ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    margin: 0.3rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.cta-button i {
    margin-right: 0.75rem;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    background: var(--accent-color);
    color: var(--primary-color);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--light-bg);
    border-color: var(--primary-color);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem auto 0;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out 0.5s;
    animation-fill-mode: both;
}

.hero-cta .cta-button {
    min-width: 280px;
    margin: 0;
    padding: 1rem 2rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

/* Styles pour mobile */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .hero-cta .cta-button {
        width: 100%;
        max-width: 350px;
        margin: 0.5rem 0;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        display: block;
    }

    /* Afficher les deux boutons sur mobile */
    .hero-cta .cta-button.secondary {
        display: block !important;
    }
}

/* ===== Section Styles ===== */
section {
    padding: 6.5rem 5%;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    text-align: center;
    font-weight: 800;
}

/* Trait de soulignement sous les titres de section supprimé pour un design plus épuré */

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
}

/* ===== About Section ===== */
.about {
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--light-bg), transparent);
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
    max-width: 600px;
    animation: fadeInLeft 0.8s ease-out;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.75rem;
    color: var(--secondary-color);
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

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

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-width: 550px;
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-image:hover::before {
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text {
        max-width: 100%;
        padding: 0 1rem;
    }

    .about-image {
        max-width: 100%;
        order: -1;
        margin-bottom: 1.5rem;
    }

    .about-image img {
        max-width: 300px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .about h2.section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
        color: var(--secondary-color);
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
        color: var(--text-color);
    }

    /* Cacher tous les paragraphes sauf le premier sur mobile */
    @media (max-width: 768px) {
        .about-text p:not(:first-child) {
            display: none;
        }

        .about-text p:first-child {
            font-weight: 500;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .about-cta .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            font-size: 0.95rem;
            background: var(--secondary-color);
            color: var(--primary-color);
            border-radius: 50px;
            text-decoration: none;
            margin-top: 1rem;
        }
    }
}

/* ===== Problems Section ===== */
.problems {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--white), transparent);
    z-index: 0;
}

.problems .container {
    position: relative;
    z-index: 1;
}

.problems .section-title {
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    position: relative;
}

.problem-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.75rem;
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.problem-card h3 {
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.problem-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    opacity: 0.7;
    transition: width 0.3s ease;
}

.problem-card:hover h3::after {
    width: 60px;
    opacity: 1;
}

.problem-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .problem-card {
        padding: 2rem 1.5rem;
    }
}

        /* Solution Section */
        .solution {
        
            position: relative;
            overflow: hidden;
        }

        .solution::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, var(--white), transparent);
            z-index: 0;
        }

        .solution .container {
            position: relative;
            z-index: 1;
        }

        .solution-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 5rem;
            position: relative;
        }

        .solution-content h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 2rem;
            line-height: 1.4;
            position: relative;
            display: inline-block;
        }

        .solution-content h3::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .solution-content > p {
            font-size: 1.2rem;
            color: #4a5568;
            line-height: 1.8;
            margin: 0 auto;
            max-width: 700px;
        }

        .solution-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
            position: relative;
        }

        .step {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            text-align: left;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.03);
            z-index: 1;
        }

        .step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
            transition: all 0.3s ease;
        }

        .step:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
        }

        .step:hover::before {
            width: 6px;
            opacity: 1;
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border-radius: 50%;
            font-weight: 700;
            margin-bottom: 1.75rem;
            font-size: 1.4rem;
            box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .step:hover .step-number {
            transform: scale(1.1) rotate(5deg);
        }

        .step h3 {
            margin-bottom: 1.25rem;
            color: var(--secondary-color);
            font-size: 1.5rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .step h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
            opacity: 0.7;
            transition: width 0.3s ease;
        }

        .step:hover h3::after {
            width: 60px;
            opacity: 1;
        }

        .step p {
            color: #4a5568;
            line-height: 1.8;
            margin: 1rem 0 0;
            font-size: 1.05rem;
        }

        .solution-cta {
            text-align: center;
            margin-top: 5rem;
            position: relative;
        }

        .solution-cta h4 {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }

        .solution-cta .cta-button {
            background: var(--accent-color);
            padding: 1.1rem 2.5rem;
            font-size: 1.1rem;
            min-width: 300px;
        }

        .solution-cta .cta-button i {
            margin-right: 0.75rem;
        }

        @media (max-width: 992px) {
            .solution-content {
                margin-bottom: 3rem;
            }

            .solution-steps {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 3rem auto 0;
            }

            .step {
                padding: 2rem 1.75rem;
            }

            .solution-cta {
                margin-top: 3.5rem;
            }
        }

        /* ===== Offers Section ===== */
.offers {
    padding: 6rem 0;

    position: relative;
    overflow: hidden;
}

.offers .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.offers .section-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.offers .section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.offers {
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
            padding: 6rem 0;
        }

        .offers::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, var(--white), transparent);
            z-index: 0;
        }

        .offers .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .offers .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .offers .section-title {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            position: relative;
           
        }

        /* Trait de soulignement sous les titres de section supprimé pour un design plus épuré */
        .offers .section-title::after {
            display: none;
        }

        .offers .section-subtitle {
            color: var(--text-color);
            font-size: 1.2rem;
            opacity: 0.9;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }

        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
            gap: 1.1rem;
            margin: 3rem auto 0;
            max-width: 1100px;
            padding: 0 1rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
        }

        .offer-card {
            background: white;
            border-radius: 16px;
            padding: 1.75rem 1.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            min-height: 500px;
            max-width: 280px;
            margin: 0 auto;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .offer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .offer-card.popular {
            border: 2px solid var(--accent-color);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
            position: relative;
            z-index: 1;
        }

        .offer-card.popular::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
            z-index: -1;
            border-radius: 14px;
        }

        .offer-badge {
            position: absolute;
            top: 25px;
            right: -70px;
            background: var(--accent-color);
            color: var(--primary-color);
            padding: 0rem 0.5rem;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
            z-index: 10;
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }

        .offer-card:hover .offer-badge {
            animation: none;
             padding: 0rem 2rem;
            transform: rotate(45deg) scale(1.05);
        }

        .offer-header {
            margin-bottom: 1.5rem;
            text-align: center;
            padding: 0 0 1.25rem;
            /* Bordure supprimée pour un design plus épuré */
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .offer-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .offer-card:hover .offer-header::after {
            width: 100px;
        }

        .offer-title {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin: 0 0 0.5rem;
            font-weight: 700;
            transition: color 0.3s ease;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 3.6rem;
            line-height: 1.2;
        }

        .offer-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 1.5rem 0;
            text-align: center;
        }

        .offer-price span {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-color);
            opacity: 0.8;
        }

        .offer-features {
            margin: 1.5rem 0;
            flex-grow: 1;
        }

        .offer-features li {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            color: var(--text-color);
            font-size: 0.95rem;
            line-height: 1.4;
            transition: all 0.3s ease;
            opacity: 0.9;
            transform: translateX(0);
            padding: 0.25rem 0;
        }

        .offer-features li:nth-child(n+5) {
            display: none;
        }

        .offer-card:hover .offer-features li {
            transform: translateX(5px);
        }

        .offer-card:hover .offer-features li:nth-child(1) { transition-delay: 0.05s; }
        .offer-card[data-aos-delay="50"] { animation-delay: 0.1s; }
        .offer-card[data-aos-delay="100"] { animation-delay: 0.2s; }
        .offer-card[data-aos-delay="150"] { animation-delay: 0.3s; }
        .offer-card[data-aos-delay="200"] { animation-delay: 0.4s; }
        .offer-card:hover .offer-features li:nth-child(5) { transition-delay: 0.25s; }
        .offer-card:hover .offer-features li:nth-child(6) { transition-delay: 0.3s; }
        .offer-card:hover .offer-features li:nth-child(7) { transition-delay: 0.35s; }

        .offer-features i {
            color: var(--accent-color);
            margin-right: 0.75rem;
            font-size: 1.1rem;
            min-width: 20px;
        }

        .offer-cta {
            text-align: center;
            margin-top: auto;
            padding-top: 1.5rem;
            flex-shrink: 0;
        }

        .btn-offer {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-color);
            color: var(--primary-color);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            cursor: pointer;
            width: 100%;
            max-width: 200px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .btn-offer::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%, -50%);
            transform-origin: 50% 50%;
        }

        .btn-offer:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }

        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }

        .btn-offer:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            letter-spacing: 0.8px;
        }

        .btn-offer i {
            margin-right: 8px;
            transition: transform 0.3s ease;
        }

        .btn-offer:hover i {
            transform: translateX(3px);
        }

        .btn-offer.secondary {
            background: transparent;
            color: var(--accent-color);
            border: 2px solid var(--accent-color);
            margin-top: 0.75rem;
        }

        .btn-offer.secondary:hover {
            background: rgba(255, 215, 0, 0.1);
        }

        /* ===== Media Queries ===== */
@media (max-width: 768px) {
    /* Ajustement des tailles de titres */
    h1 {
        font-size: 1.4rem !important;
        line-height: 1.1;
        margin-bottom: 0.6rem;
    }
    
    h2 {
        font-size: 1.2rem !important;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    h3 {
        font-size: 1rem !important;
        line-height: 1.1;
        margin-bottom: 0.4rem;
    }
    
    h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.3rem;
    }
    
    h5, h6 {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem;
    }
    
    /* Ajustement des paragraphes */
    p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }
    
    /* Ajustement des boutons */
    .cta-button, .btn-offer {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        margin: 0.2rem 0;
    }
    
    /* Ajustement spécifique pour les boutons dans le hero */
    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-cta .cta-button {
        width: 100%;
        max-width: 350px;
        text-align: center;
        margin: 0.5rem 0;
        display: block;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Afficher les deux boutons sur mobile */
    .hero-cta .cta-button.secondary {
        display: block;
    }
    
    /* Ajustement des cartes d'offres */
    .offer-card {
        padding: 1.5rem;
    }
    
    .offer-price {
        font-size: 2.2rem !important;
    }
    
    /* Ajustement de l'espacement global */
    .hero, section {
        padding: 100px 5% 80px;
    }
    
    /* Optimisations pour les performances mobile */
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        /* Optimisation du rendu des polices */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Amélioration des performances de défilement */
        -webkit-overflow-scrolling: touch;
    }

    /* Respect des préférences de mouvement réduit */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }

    /* Optimisation des images pour mobile */
    img {
        max-width: 100%;
        height: auto;
        /* Amélioration du rendu des images */
        image-rendering: -webkit-optimize-contrast;
    }

    /* Amélioration de l'accessibilité tactile */
    .cta-button,
    .btn-offer,
    button,
    [role="button"] {
        min-height: 44px; /* Taille minimum recommandée pour les éléments tactiles */
        min-width: 44px;
    }

    /* Optimisation des animations pour mobile */
    .hero-cta .cta-button {
        /* Réduction des animations lourdes sur mobile */
        will-change: transform;
        /* Amélioration des performances GPU */
        transform: translateZ(0);
    }
}

/* Mentions Légales */
.mentions-legales {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: var(--text-color);
    line-height: 1.8;
}

.mentions-legales h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.mentions-legales h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
}

.mentions-legales h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--secondary-color);
}

.mentions-legales h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.mentions-legales p,
.mentions-legales ul,
.mentions-legales ol {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.mentions-legales ul,
.mentions-legales ol {
    padding-left: 1.5rem;
}

.mentions-legales a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.mentions-legales a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.mentions-legales .last-update {
    font-style: italic;
    color: #666;
    text-align: right;
    margin-top: 3rem;
    font-size: 0.9rem;
}

.mentions-legales .back-to-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.8rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.mentions-legales .back-to-home:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .mentions-legales {
        padding: 3rem 1.5rem;
    }
    
    .mentions-legales h1 {
        font-size: 2rem;
    }
    
    .mentions-legales h2 {
        font-size: 1.5rem;
    }
}

/* Responsive Adjustments */
        @media (max-width: 991px) {
            .offers-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
                padding: 0 1rem;
                max-width: 700px;
            }
            
            .offer-card {
                padding: 1.5rem 1.25rem;
                min-height: 18px; /* Ultra petit sur petits écrans */
                max-width: 100%;
            }
            
            .offer-card.popular {
                transform: none;
            }
            
            .offer-card:hover, 
            .offer-card.popular:hover {
                transform: translateY(-5px);
            }

            .offer-features {
                min-height: 180px;
            }
        }

        @media (max-width: 767px) {
            .offers-grid {
                grid-template-columns: 1fr;
                max-width: 340px;
                margin: 0 auto;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .offer-card {
                padding: 1.75rem 1.5rem;
                min-height: auto;
            }

            .offer-card.popular {
                order: -1;
            }

            .offer-features {
                min-height: auto;
                margin: 1.25rem 0;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }
        }

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

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
}

.offer-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 320px;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offer-card:nth-child(1) .offer-header {
    background: linear-gradient(135deg, #FFD700, #FFC107);
}

.offer-card:nth-child(2) .offer-header {
    background: linear-gradient(135deg, #FFD700, #FF6B8B);
}

.offer-card:nth-child(3) .offer-header {
    background: linear-gradient(135deg, #5A67D8, #38B2AC);
}

.offer-card:nth-child(4) .offer-header {
    background: linear-gradient(135deg, #9F7AEA, #667EEA);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-header {
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--primary-color);
    text-align: center;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    z-index: 0;
}

.offer-header > * {
    position: relative;
    z-index: 1;
}

.offer-header h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .offer-tagline {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .offer-price {
            font-size: 3rem;
            font-weight: 800;
            margin: 0.5rem 0;
            position: relative;
            display: inline-block;
        }

        .offer-price::before {
            content: '€';
            font-size: 1.5rem;
            position: absolute;
            left: -1.25rem;
            top: 0.5rem;
            opacity: 0.8;
        }

        .offer-price span {
            font-size: 1.1rem;
            font-weight: 500;
            opacity: 0.9;
            display: block;
            margin-top: 0.5rem;
        }

        .offer-popular {
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 0.25rem 2rem;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
            width: 150px;
            text-align: center;
        }

        .offer-features {
            padding: 2.5rem 2rem;
            flex-grow: 1;
        }

        .offer-features ul {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
        }

        .offer-features li {
            padding: 0.75rem 0;
            position: relative;
            padding-left: 2.25rem;
            color: #4a5568;
            line-height: 1.6;
            /* Bordure supprimée pour un design plus épuré */
        }

        .offer-features li:last-child {
            border-bottom: none;
        }

        .offer-features li i {
            color: var(--accent-color);
            margin-right: 0.8rem;
            position: absolute;
            left: 0;
            top: 1rem;
            width: 24px;
            height: 24px;
            background: rgba(255, 101, 132, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .offer-footer {
            text-align: center;
            padding: 0 2rem 2.5rem;
        }

        .offer-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--secondary-color);
            color: var(--primary-color);
            text-align: center;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            margin: 1.5rem auto;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            width: auto;
            min-width: 180px;
        }
        
        .offer-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
            background: var(--accent-color);
            color: var(--primary-color);
        }

        .offer-cta i {
            margin-right: 0.75rem;
        }

        @media (max-width: 1200px) {
            .offers-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .offers-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 3rem auto 0;
            }

            .offer-features {
                padding: 2rem 1.5rem;
            }
        }

        /* Testimonials Section */
        .testimonials {
            text-align: center;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            border: 1px solid #eee;
        }

        .testimonial-card::before {
            content: '"\201C"';
            position: absolute;
            top: 30px;
            left: 30px;
            font-size: 6rem;
            color: rgba(255, 215, 0, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
            z-index: 1;
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            color: var(--text-color);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 1.5rem;
            color: var(--primary-color);
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 3px solid var(--secondary-color);
        }

        .testimonial-info h4 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .testimonial-info p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, var(--primary-color), var(--text-color));
            color: white;
            text-align: center;
            padding: 100px 5%;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 60%);
            z-index: 1;
        }

        .stats .container {
            position: relative;
            z-index: 2;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 3rem;
        }

        .stat-item {
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-color);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .stat-item.animated::before {
            transform: scaleX(1);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            display: block;
            margin-bottom: 15px;
            color: white;
            line-height: 1;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .stat-item.animated .stat-number {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            display: inline-block;
            position: relative;
            padding: 0 10px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.6s ease 0.2s;
        }

        .stat-item.animated .stat-label {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-label::before,
        .stat-label::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scaleX(0);
            transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.4s;
        }

        .stat-label::before {
            left: -15px;
            transform-origin: right;
        }

        .stat-label::after {
            right: -15px;
            transform-origin: left;
        }

        .stat-item.animated .stat-label::before,
        .stat-item.animated .stat-label::after {
            transform: translateY(-50%) scaleX(1);
        }

        /* Animation du compteur */
        @keyframes countUp {
            from { 
                opacity: 0;
                transform: translateY(10px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 991px) {
            .stats {
                padding: 80px 5%;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .stat-number {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 576px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .stat-item {
                padding: 25px 15px;
            }
            
            .stat-number {
                font-size: 2.5rem;
                margin-bottom: 10px;
            }
            
            .stat-label {
                font-size: 1rem;
            }
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 100px 5%;
            background: var(--light-bg);
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-buttons {
            margin-top: 3rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        /* Footer */
        footer {
            background: #1A202C;
            color: white;
            padding: 80px 5% 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        

        .footer-about p {
            opacity: 0.8;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            color: var(--white);
        }

        /* Trait de soulignement sous les titres des liens du footer supprimé pour un design plus épuré */
        .footer-links h3::after {
            display: none;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .footer-contact i {
            margin-right: 1rem;
            color: var(--accent-color);
            width: 20px;
            text-align: center;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Sticky CTA ultra minimal et discret */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95); /* Fond semi-transparent */
            padding: 0.4rem 5%; /* Ultra compact */
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); /* Ombre très discrète */
            z-index: 999;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            /* Bordure très discrète */
            border-top: 1px solid rgba(255, 193, 7, 0.2);
            backdrop-filter: blur(5px); /* Flou réduit */
        }

        .sticky-cta.visible {
            transform: translateY(0);
        }

        .sticky-cta .cta-text {
            font-weight: 500; /* Police plus légère */
            color: var(--text-color);
            /* Ultra petit et discret */
            font-size: 0.75rem;
            opacity: 0.8; /* Légèrement transparent */
            flex: 1;
            min-width: 0;
            line-height: 1.1;
        }

        .sticky-cta .cta-buttons {
            margin: 0;
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .sticky-cta .cta-button {
            margin: 0;
            padding: 0.35rem 1rem; /* Ultra compact */
            font-size: 0.75rem; /* Très petit */
            animation: none;
            /* Animation légèrement plus visible */
            animation: subtle-pulse 2.5s ease-in-out infinite;
            /* Style minimal */
            border: 1px solid rgba(255, 193, 7, 0.4); /* Bordure plus visible */
            border-radius: 20px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 24px; /* Ultra petit */
            transition: all 0.3s ease;
            background: rgba(255, 193, 7, 0.08); /* Fond légèrement plus visible */
            color: var(--primary-color);
        }

        /* Effet au survol plus visible */
        .sticky-cta .cta-button:hover {
            animation: subtle-glow 1.2s ease-in-out;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
            background: rgba(255, 193, 7, 0.15);
            border-color: rgba(255, 193, 7, 0.6);
        }

        /* Pause de l'animation au survol */
        .sticky-cta .cta-button:hover {
            animation-play-state: paused;
        }

        /* ===== Media Queries pour centrage desktop uniquement ===== */
        @media (min-width: 992px) {
            /* Centrage des boutons CTA sur desktop uniquement */

            /* About CTA - centrage desktop */
            .about-cta-container {
                text-align: center;
            }

            .about-cta-container .cta-button {
                display: inline-flex;
                margin: 0 auto;
            }

            /* Section CTA - centrage desktop */
            .section-cta {
                text-align: center;
            }

            .section-cta .cta-button {
                margin: 0 auto;
                display: inline-block;
            }

            /* Solution CTA - centrage desktop */
            .solution-cta {
                text-align: center;
            }

            .solution-cta .cta-button {
                display: inline-flex;
                margin: 0 auto;
            }

            /* Offer CTA - centrage desktop */
            .offer-cta {
                text-align: center;
            }

            .offer-cta .btn-offer {
                margin: 0 auto;
                display: inline-flex;
            }

            /* Uniformité des marges - desktop uniquement */
            .about-cta-container,
            .section-cta,
            .solution-cta {
                margin: 3rem auto 2rem;
                max-width: 600px;
            }

            .offer-cta {
                margin: 2rem auto 1rem;
                max-width: 400px;
            }

            /* Amélioration de la visibilité des boutons sur desktop */
            .cta-button,
            .btn-offer {
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            }

            .cta-button:hover,
            .btn-offer:hover {
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
                transform: translateY(-2px);
            }
        }

        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            max-width: 350px;
            z-index: 1000;
            transform: translateY(20px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .cookie-consent.visible {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .cookie-consent p {
            margin-bottom: 1rem;
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--text-color);
        }

        .cookie-consent .cookie-buttons {
            display: flex;
            gap: 0.8rem;
            justify-content: flex-end;
        }

        .cookie-consent button {
            padding: 0.5rem 1.2rem;
            border: none;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .cookie-accept {
            background: var(--primary-color);
            color: white;
        }

        .cookie-decline {
            background: #f5f5f5;
            color: var(--text-color);
        }

        .cookie-accept:hover {
            background: var(--secondary-color);
        }

        .cookie-decline:hover {
            background: #e0e0e0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            70% {
                transform: scale(1.2);
                opacity: 0;
            }
            100% {
                transform: scale(0.8);
                opacity: 0;
            }
        }

        @keyframes subtle-pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 0 0 12px rgba(255, 193, 7, 0);
                opacity: 1;
            }
        }

        @keyframes subtle-glow {
            0%, 100% {
                box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
            }
            50% {
                box-shadow: 0 0 25px rgba(255, 193, 7, 0.8), 0 0 35px rgba(255, 193, 7, 0.6);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }

            .about-image {
                margin-top: 2rem;
                max-width: 500px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
                color: white;
            }

            .header-scrolled .menu-toggle {
                color: var(--text-color);
            }

            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                padding: 1rem 5%;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }

            nav.active {
                transform: translateY(0);
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul li {
                margin: 0;
            }

            nav ul li a {
                color: var(--text-color);
                display: block;
                padding: 0.5rem 0;
            }

            .hero {
                padding: 150px 5% 80px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .sticky-cta {
                padding: 0.3rem 0.6rem; /* Ultra compact */
                /* Réduction du padding sur mobile */
                flex-direction: column;
                text-align: center;
                gap: 0.5rem; /* Gap très réduit pour économiser l'espace */
                /* Bordure plus fine sur mobile */
                border-top-width: 1px; /* Bordure très fine pour économiser l'espace */
            }

            .sticky-cta .cta-text {
                font-size: 0.7rem; /* Très petit */
                /* Texte plus petit sur mobile */
                line-height: 1.3;
            }

            .sticky-cta .cta-button {
                padding: 0.25rem 0.6rem; /* Bouton minimal absolu */
                font-size: 0.65rem; /* Ultra petit */
                min-width: 120px; /* Bouton très petit */
                min-height: 18px; /* Ultra petit sur petits écrans */
                border: 1px solid rgba(255, 193, 7, 0.25); /* Bordure légèrement plus visible */
                background: rgba(255, 193, 7, 0.05); /* Fond un peu plus visible */
            }

            /* Masquage intelligent pour éviter les conflits */
            .sticky-cta.visible {
                /* S'assurer que le bandeau n'interfère pas avec les autres éléments */
                padding-bottom: env(safe-area-inset-bottom);
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .profile-image {
                width: 150px;
                height: 150px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .offer-card {
                margin: 0 auto 2rem;
                max-width: 350px;
                padding: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .sticky-cta {
                padding: 0.3rem 0.6rem; /* Ultra compact */
                /* Réduction du padding sur mobile */
                flex-direction: column;
                text-align: center;
                gap: 0.5rem; /* Gap très réduit pour économiser l'espace */
                /* Bordure plus fine sur mobile */
                border-top-width: 1px; /* Bordure très fine pour économiser l'espace */
            }

            .sticky-cta .cta-text {
                font-size: 0.7rem; /* Très petit */
                /* Texte plus petit sur mobile */
                line-height: 1.3;
            }

            .sticky-cta .cta-button {
                padding: 0.3rem 0.8rem; /* Bouton minimal */
                font-size: 0.7rem; /* Très petit */
                min-width: 140px;
                min-height: 20px; /* Ultra petit sur mobile */
                animation-duration: 2.5s; /* Animation plus rapide que desktop */
                border: 1px solid rgba(255, 193, 7, 0.3); /* Bordure plus visible */
                background: rgba(255, 193, 7, 0.06); /* Fond légèrement plus visible */
            }

            /* Masquage intelligent pour éviter les conflits */
            .sticky-cta.visible {
                /* S'assurer que le bandeau n'interfère pas avec les autres éléments */
                padding-bottom: env(safe-area-inset-bottom);
            }
        }

        @media (max-width: 480px) {
            .sticky-cta {
                padding: 0.25rem 0.5rem; /* Quasi invisible */
                border-top-width: 1px; /* Bordure très fine pour économiser l'espace */
            }

            .sticky-cta .cta-text {
                font-size: 0.65rem; /* Ultra petit */
                margin-bottom: 0.3rem;
            }

            .sticky-cta .cta-button {
                padding: 0.25rem 0.6rem; /* Bouton minimal absolu */
                font-size: 0.65rem; /* Ultra petit */
                min-width: 120px; /* Bouton très petit */
                /* Bouton encore plus compact sur petits écrans */
            }
        }   }
        }