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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000;
            color: white;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 5%; /* Réduit le padding vertical pour gagner de la place */
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #BC8F34;
            transform: translateY(-2px);
        }

.cta-nav {
    padding: 12px 24px;
    background: linear-gradient(135deg, #FFE5B4 0%, #BC8F34 100%);
    border-radius: 50px;
    text-decoration: none;
    color: black;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(188, 143, 52, 0.3);
}


.cta-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(188, 143, 52, 0.5);
}


        /* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(188, 143, 52, 0.2) 0%, rgba(0, 0, 0, 1) 70%);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Ajoute un padding-top pour éviter le chevauchement avec la navbar */
    box-sizing: border-box; /* Assure que le padding est inclus dans la hauteur totale */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%23BC8F34;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%238B6B1A;stop-opacity:0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23a)"/></svg>');
    animation: pulse 4s ease-in-out infinite;
}


        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem); /* Réduit légèrement la taille max pour éviter le débordement */
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFE5B4 0%, #BC8F34 50%, #8B6B1A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

        .hero p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .btn-primary, .btn-secondary {
            padding: 18px 36px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

.btn-primary {
    background: linear-gradient(135deg, #FFE5B4 0%, #BC8F34 100%);
    color: black;
    box-shadow: 0 15px 35px rgba(188, 143, 52, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(188, 143, 52, 0.6);
}


        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        /* Stats Section */
.stats {
    padding: 100px 5%;
    background: linear-gradient(135deg, #BC8F34 0%, #8B6B1A 100%);
    text-align: center;
}

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
        }

        .stat-item {
            animation: slideInUp 0.8s ease-out;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        /* Features Section */
        .features {
            padding: 150px 5%;
            background: #000;
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFE5B4 0%, #BC8F34 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


        .section-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin-bottom: 80px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            backdrop-filter: blur(20px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #BC8F34, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}


        .feature-card:hover::before {
            transform: translateX(100%);
        }

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(188, 143, 52, 0.1);
    border-color: rgba(188, 143, 52, 0.3);
    box-shadow: 0 20px 60px rgba(188, 143, 52, 0.2);
}

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, #FFE5B4 0%, #BC8F34 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 2rem;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: white;
        }

        .feature-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* CTA Section */
.cta-section {
    padding: 150px 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a20 50%, #654910 100%);
    text-align: center;
    position: relative;
    color: white; /* Pour assurer la lisibilité du texte */
}


        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(102,126,234,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFE5B4 0%, #BC8F34 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


        .cta-description {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .footer .logo {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .footer-title {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 3rem 0;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--accent-gold);
            transform: translateY(-3px);
            background-color: #BC8F34;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 2rem;
            opacity: 0.6;
        }


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

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

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Pricing Section */
        .pricing-section {
            padding: 100px 5%;
            background: #000;
        }

        .pricing-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            backdrop-filter: blur(20px);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .pricing-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }

.pricing-subtitle {
    color: #BC8F34; /* Ton doré principal */
    font-size: 1.1rem;
    font-weight: 600;
}


        .pricing-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .pricing-features {
            margin: 30px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.9);
        }

        .feature-check {
            width: 24px;
            height: 24px;
            background: #22c55e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }

.pricing-guarantee {
    background: rgba(188, 143, 52, 0.1);
    padding: 20px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 30px 0;
    border-left: 4px solid #BC8F34;
}


.pricing-cta {
    display: block;
    text-align: center;
    padding: 18px 36px;
    background: linear-gradient(135deg, #FFE5B4 0%, #BC8F34 100%);
    color: black;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(188, 143, 52, 0.3);
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(188, 143, 52, 0.5);
}


        /* Testimonials Section */
.testimonials-section {
    padding: 80px 5%;
    background: radial-gradient(ellipse at center, rgba(188, 143, 52, 0.1) 0%, rgba(0, 0, 0, 1) 70%);
}

        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 24px;
            backdrop-filter: blur(20px);
        }

        .testimonial-avatars {
            display: flex;
            justify-content: center;
            gap: -10px;
            margin-bottom: 30px;
        }

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    margin-left: -10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(188, 143, 52, 0.3);
}

.avatar:nth-child(1) {
    background: linear-gradient(45deg, #BC8F34 25%, #FFE5B4 25%, #FFE5B4 50%, #BC8F34 50%, #BC8F34 75%, #FFE5B4 75%);
    background-size: 8px 8px;
}

.avatar:nth-child(2) {
    background: radial-gradient(circle at center, #BC8F34 30%, #FFE5B4 30%, #FFE5B4 40%, #BC8F34 40%);
}

.avatar:nth-child(3) {
    background: linear-gradient(135deg, #BC8F34 0%, #FFE5B4 50%, #BC8F34 100%);
}


        .testimonial-quote {
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author strong {
            color: white;
            font-size: 1.1rem;
        }

        .testimonial-author span {
            color: rgba(255, 255, 255, 0.7);
            display: block;
            margin-top: 5px;
        }

        /* Wrapper du slider */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

/* Flèches de navigation */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(188, 143, 52, 0.2);
    border: 2px solid rgba(188, 143, 52, 0.4);
    color: #BC8F34;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-arrow:hover {
    background: rgba(188, 143, 52, 0.3);
    border-color: rgba(188, 143, 52, 0.6);
    color: #FFE5B4;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow.prev {
    left: -25px;
}

.testimonial-arrow.next {
    right: -25px;
}

/* Points de navigation */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(188, 143, 52, 0.3);
    border: 2px solid rgba(188, 143, 52, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(188, 143, 52, 0.5);
    border-color: rgba(188, 143, 52, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: linear-gradient(135deg, #FFE5B4 0%, #BC8F34 100%);
    border-color: #BC8F34;
    transform: scale(1.3);
}

/* Responsive pour tablettes */
@media (max-width: 1024px) {
    .testimonial-arrow.prev {
        left: -15px;
    }
    
    .testimonial-arrow.next {
        right: -15px;
    }
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .testimonial-arrow.prev {
        left: -10px;
    }
    
    .testimonial-arrow.next {
        right: -10px;
    }
    
    .testimonials-section {
        padding: 60px 3%;
    }
}

/* Responsive pour petits écrans */
@media (max-width: 600px) {
    .testimonial-arrow.prev {
        left: -5px;
    }
    
    .testimonial-arrow.next {
        right: -5px;
    }
}

/* Pour très petits écrans - flèches en bas */
@media (max-width: 480px) {
    .testimonial-slider-wrapper {
        padding-bottom: 60px;
    }
    
    .testimonial-arrow {
        position: absolute;
        top: auto;
        bottom: 0;
        transform: none;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .testimonial-arrow.prev {
        left: calc(50% - 60px);
    }
    
    .testimonial-arrow.next {
        right: calc(50% - 60px);
    }
    
    .testimonial-arrow:hover {
        transform: scale(1.1);
    }
    
    .testimonials-section {
        padding: 60px 2%;
    }
    
    .testimonial-dots {
        margin-top: 15px;
        margin-bottom: 50px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Pour écrans extra petits */
@media (max-width: 380px) {
    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .testimonial-arrow.prev {
        left: calc(50% - 55px);
    }
    
    .testimonial-arrow.next {
        right: calc(50% - 55px);
    }
}


        /* Process Section */
.process-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a20 50%, #654910 100%);
    position: relative;
}


        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid2" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(102,126,234,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }

        .process-step {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(188, 143, 52, 0.1);
    border-color: rgba(188, 143, 52, 0.3);
}


.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFE5B4 0%, #BC8F34 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
}

        .step-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }

        .step-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .process-cta {
            margin-top: 50px;
        }

        /* About Section */
        .about-section {
            padding: 100px 5%;
            background: #000;
        }

        .about-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
        }

.about-cta {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #BC8F34;
    color: #BC8F34;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.about-cta:hover {
    background: linear-gradient(135deg, #FFE5B4 0%, #BC8F34 100%);
    color: black;
    transform: translateY(-2px);
}


        /* Benefits Section */
.benefits-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a20 50%, #654910 100%);
}


        .benefits-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            backdrop-filter: blur(20px);
            transition: all 0.4s ease;
        }

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(188, 143, 52, 0.1);
    border-color: rgba(188, 143, 52, 0.3);
}


        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .benefit-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: white;
        }

        .benefit-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* Update section titles for dark sections */
        .about-section .section-title,
        .benefits-section .section-title {
            color: white;
        }

        /* Update section titles for consistent dark theme */
.process-section .section-title {
    color: white;
    background: linear-gradient(135deg, #FFE5B4 0%, #BC8F34 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


        .process-section .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-image {
            width: 50px; 
            height: 50px;
            object-fit: contain;
        }

        button {
  border: none;
  outline: none; /* enlève aussi le contour bleu quand on clique */
  background: inherit; /* optionnel : garde la couleur du parent */
}