        :root {
            --vert-principal: #4F6F2F;
            --vert-fonce: #2E4A1F;
            --vert-clair: #7DA453;
            --orange-accent: #F4A825;
            --beige-fond: #F8F6F1;
            --blanc: #FFFFFF;
            --gris-doux: #6B6B6B;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: var(--beige-fond);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 10px;
        }
        
        /* ========== LOADER ========== */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--beige-fond);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid var(--vert-clair);
            border-top-color: var(--orange-accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* ========== HEADER ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
            background: transparent;
        }
        
        .header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            padding: 1px 0;
        }
        
        .header.scrolled .nav-link {
            color: #333 !important;
            text-shadow: none;
        }
        
        .header:not(.scrolled) .nav-link {
            color: white !important;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        
        .header:not(.scrolled) .logo-text {
            color: white;
        }
        
        .header:not(.scrolled) .logo-sub {
            color: var(--orange-accent);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Logo */
        .logo a {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 800;
            color: var(--vert-principal);
            letter-spacing: -0.5px;
            transition: color 0.3s ease;
        }
        
        .logo-sub {
            font-size: 12px;
            color: var(--orange-accent);
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }
        
        /* Logo avec image - Header */
        .logo-img {
            height: 90px;
            width: 90px;
            max-width: 180px;
            object-fit: contain;
            transition: all 0.3s ease;
        }
        
        /* Navigation */
        .nav {
            display: flex;
            align-items: center;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-link {
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            transition: var(--transition);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange-accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }
        
        .nav-toggle span {
            width: 25px;
            height: 2px;
            background: var(--vert-principal);
            transition: var(--transition);
        }
        
        .header:not(.scrolled) .nav-toggle span {
            background: white;
        }
        
        /* ========== BOUTONS ========== */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn:hover::after {
            width: 300px;
            height: 300px;
        }
        
        .btn-primary {
            background: var(--vert-principal);
            color: var(--blanc);
        }
        
        .btn-primary:hover {
            background: var(--vert-fonce);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-outline {
            background: transparent;
            border-color: var(--vert-principal);
            color: var(--vert-principal);
        }
        
        .btn-outline:hover {
            background: var(--vert-principal);
            color: var(--blanc);
        }
        
        .btn-commander {
            padding: 8px 20px;
            font-size: 14px;
        }
        
        /* ========== HERO SECTION WITH SLIDER ========== */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(46,74,31,0.6) 100%);
        }
        
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            filter: brightness(0.7);
            transform: scale(1.05);
            animation: slowZoom 20s infinite alternate ease-in-out;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-slide-1 { background-image: url('https://hbs-nutrition.com/wp-content/uploads/2026/03/Whisk_e1596b9abd0004ba37c490117d013868dr.webp'); }
        .hero-slide-2 { background-image: url('https://hbs-nutrition.com/wp-content/uploads/2026/03/Whisk_81d5683f905207eaacd42b4eab3c2787dr.webp'); }
        .hero-slide-3 { background-image: url('https://hbs-nutrition.com/wp-content/uploads/2026/03/Whisk_fc09b91bd7baa0088d84e3077e450d23dr.webp'); }
        
        @keyframes slowZoom {
            0% { transform: scale(1.05); }
            100% { transform: scale(1.15); }
        }
        
        .slider-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .slider-dot.active {
            background: var(--orange-accent);
            transform: scale(1.3);
            box-shadow: 0 0 20px var(--orange-accent);
            border-color: white;
        }
        
        .slider-dot:hover {
            background: white;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .hero-container {
            position: relative;
            z-index: 2;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            padding-top: 150px;
            padding-bottom: 80px;


        }
        
        .hero-content {
            max-width: 800px;
            color: var(--blanc);
            position: relative;
        }
        
        .hero-content::before {
            content: '';
            position: absolute;
            top: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
            border-left: 3px solid var(--orange-accent);
            border-top: 3px solid var(--orange-accent);
            opacity: 0.5;
        }
        
        .hero-content::after {
            content: '';
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 100px;
            height: 100px;
            border-right: 3px solid var(--orange-accent);
            border-bottom: 3px solid var(--orange-accent);
            opacity: 0.5;
        }
        
        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: var(--blanc);
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-weight: 300;
        }
        
        .hero-badge span {
            color: var(--orange-accent);
            font-weight: 600;
            margin-left: 5px;
        }
        
        .hero-title {
            font-size: 55px;
            line-height: 1.3;
            margin-bottom: 25px;
            font-weight: 300;
            text-transform: uppercase;
        }
        
        .hero-title-line {
            display: block;
            overflow: hidden;
            white-space: nowrap;
            animation: revealText 1.5s ease forwards;
        }
        
        .hero-title-line:nth-child(1) { animation-delay: 0.2s; }
        .hero-title-line:nth-child(2) { animation-delay: 0.4s; }
        .hero-title-line:nth-child(3) { animation-delay: 0.6s; }
        
        @keyframes revealText {
            0% { width: 0; opacity: 0; }
            100% { width: 100%; opacity: 1; }
        }
        
        .hero-title .light {
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .hero-title .bold {
            font-weight: 700;
            color: var(--blanc);
            position: relative;
            display: inline-block;
        }
        
        .hero-title .bold::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--orange-accent), transparent);
            opacity: 0.3;
            z-index: -1;
        }
        
        .hero-title .accent {
            color: var(--orange-accent);
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        .hero-title .accent::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 1px solid var(--orange-accent);
            opacity: 0.3;
            animation: borderPulse 2s infinite;
        }
        
        @keyframes borderPulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.05); opacity: 0.6; }
        }
        
        .hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.8;
            max-width: 600px;
            font-weight: 300;
            letter-spacing: 0.5px;
            border-left: 3px solid var(--orange-accent);
            padding-left: 20px;
            animation: fadeInLeft 1s ease 0.8s both;
        }
        
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease 1s both;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .btn-premium {
            padding: 15px 40px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 14px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: none;
        }
        
        .btn-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn-premium:hover::before {
            left: 100%;
        }
        
        .btn-premium-primary {
            background: var(--orange-accent);
            color: var(--blanc);
            box-shadow: 0 5px 20px rgba(244, 168, 37, 0.3);
        }
        
        .btn-premium-primary:hover {
            background: #d48c1f;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(244, 168, 37, 0.4);
        }
        
        .btn-premium-outline {
            background: transparent;
            color: var(--blanc);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
        }
        
        .btn-premium-outline:hover {
            border-color: var(--orange-accent);
            background: rgba(244, 168, 37, 0.1);
            transform: translateY(-3px);
        }
        
 /* ========== AVANTAGES SECTION ========== */
.avantages {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--beige-fond) 100%);
    overflow: hidden;
}

.avantages-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 111, 47, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(150px, -150px);
    animation: floatShape 20s infinite alternate ease-in-out;
}

.avantages-bg-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 168, 37, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-200px, 200px);
    animation: floatShape 25s infinite alternate-reverse ease-in-out;
}

@keyframes floatShape {
    0% { transform: translate(150px, -150px) scale(1); }
    100% { transform: translate(100px, -100px) scale(1.1); }
}

.avantages-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.avantages-subtitle {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--orange-accent);
    background: rgba(244, 168, 37, 0.08);
    padding: 10px 25px;
    border-radius: 40px;
    margin-bottom: 25px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(244, 168, 37, 0.1);
}

.avantages-title {
    font-size: 48px;
    color: var(--vert-fonce);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.2;
    position: relative;
}

.avantages-title strong {
    font-weight: 700;
    color: var(--vert-principal);
    position: relative;
    display: inline-block;
}

.avantages-title strong::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, transparent, rgba(244, 168, 37, 0.2), transparent);
    z-index: -1;
}

.avantages-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gris-doux);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
}

.avantages-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.avantage-card-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 45px 30px;
    border-radius: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02), 0 0 0 1px rgba(79, 111, 47, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.avantage-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 60px rgba(79, 111, 47, 0.1), 0 0 0 1px rgba(244, 168, 37, 0.3);
    background: #ffffff;
    border-color: rgba(244, 168, 37, 0.2);
}

.avantage-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange-accent), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.avantage-card-premium:hover::after {
    transform: translateX(100%);
}

.avantage-icon-modern {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, var(--vert-clair), var(--vert-principal));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 15px 25px rgba(79, 111, 47, 0.15), inset 0 -2px 0 rgba(0,0,0,0.1);
}

.avantage-icon-modern i {
    font-size: 42px;
    color: white;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
    transform: scale(1);
    transition: transform 0.5s ease;
}

.avantage-card-premium:hover .avantage-icon-modern {
    border-radius: 30px 10px 30px 10px;
    transform: rotate(5deg) scale(1.05);
    background: linear-gradient(145deg, var(--orange-accent), #f6b83e);
    box-shadow: 0 20px 30px rgba(244, 168, 37, 0.25), inset 0 -2px 0 rgba(0,0,0,0.1);
}

.avantage-card-premium:hover .avantage-icon-modern i {
    transform: scale(1.1) rotate(-5deg);
    color: white;
}

.avantage-card-premium h3 {
    font-size: 24px;
    color: var(--vert-fonce);
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.avantage-card-premium h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-accent), transparent);
    transition: width 0.4s ease;
}

.avantage-card-premium:hover h3::after {
    width: 100%;
}

.avantage-card-premium p {
    color: var(--gris-doux);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 300;
    flex-grow: 1;
}

.avantage-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vert-principal);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    opacity: 0.7;
    transform: translateX(0);
    margin-top: auto;
}

.avantage-card-premium:hover .avantage-link {
    opacity: 1;
    color: var(--orange-accent);
    gap: 15px;
}

.avantage-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.avantage-link:hover i {
    transform: translateX(5px);
}

.avantage-card-premium:nth-child(2) .avantage-icon-modern {
    background: linear-gradient(145deg, var(--orange-accent), #f6b83e);
}

.avantage-card-premium:nth-child(3) .avantage-icon-modern {
    background: linear-gradient(145deg, #7DA453, #4F6F2F);
}

.avantage-card-premium:nth-child(4) .avantage-icon-modern {
    background: linear-gradient(145deg, #F4A825, #d48c1f);
}

.avantage-card-premium:nth-child(2):hover .avantage-icon-modern {
    background: linear-gradient(145deg, #4F6F2F, #2E4A1F);
}

.avantage-card-premium:nth-child(3):hover .avantage-icon-modern {
    background: linear-gradient(145deg, #F4A825, #d48c1f);
}

.avantage-card-premium:nth-child(4):hover .avantage-icon-modern {
    background: linear-gradient(145deg, #4F6F2F, #2E4A1F);
}

.avantage-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(79, 111, 47, 0.03);
    line-height: 1;
    transition: all 0.5s ease;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -2px;
}

.avantage-card-premium:hover .avantage-number {
    color: rgba(244, 168, 37, 0.08);
    transform: scale(1.1) rotate(5deg);
}

.avantage-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange-accent);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(244, 168, 37, 0.3);
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.avantage-badge i {
    font-size: 12px;
}

.avantage-card-premium:hover .avantage-badge {
    opacity: 1;
    transform: translateY(0);
}

.avantage-decoration {
    position: absolute;
    bottom: 25px;
    left: 30px;
    display: flex;
    gap: 6px;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.avantage-card-premium:hover .avantage-decoration {
    opacity: 1;
}

.avantage-decoration span {
    width: 25px;
    height: 2px;
    background: var(--orange-accent);
    transition: all 0.5s ease;
}

.avantage-card-premium:hover .avantage-decoration span {
    width: 35px;
    background: var(--vert-principal);
}

.avantage-decoration span:nth-child(2) {
    transition-delay: 0.1s;
    background: var(--vert-clair);
}

.avantage-decoration span:nth-child(3) {
    transition-delay: 0.2s;
    background: var(--orange-accent);
}

@supports (backdrop-filter: blur(10px)) {
    .avantage-card-premium {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
    }
    
    .avantage-card-premium:hover {
        background: rgba(255, 255, 255, 0.95);
    }
}
        /* ========== video SECTION ========== */
.macbook-elite-section {
    position: relative;
    height: 90vh;
    min-height: 700px;
    overflow: hidden;
    background: #fff;
    isolation: isolate;

}

/* Video Background */
.elite-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.elite-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: eliteVideoZoom 20s ease-in-out infinite;
}

@keyframes eliteVideoZoom {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(1.05);
    }
}

.elite-overlay-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Geometric Elements */
.elite-geometric-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.elite-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 194, 77, 0.2);
    opacity: 0;
    animation: eliteGeoReveal 1s ease-out forwards;
}

.elite-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 0.5s;
}

.elite-2 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 12%;
    border-radius: 20px 0 20px 0;
    animation-delay: 0.8s;
}

.elite-3 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 15%;
    clip-path: circle(40% at 50% 50%);
    animation-delay: 1.1s;
}

.elite-4 {
    width: 60px;
    height: 60px;
    bottom: 35%;
    right: 20%;
    transform: rotate(45deg);
    border-radius: 15px;
    animation-delay: 1.4s;
}

.elite-5 {
    width: 140px;
    height: 80px;
    top: 65%;
    left: 10%;
    border-radius: 40px;
    animation-delay: 1.7s;
}

@keyframes eliteGeoReveal {
    to {
        opacity: 1;
    }
}

.elite-shape {
    animation: eliteGeoFloat 15s ease-in-out infinite;
}

.elite-1 { animation-delay: 0s; }
.elite-2 { animation-delay: 1.5s; }
.elite-3 { animation-delay: 3s; }
.elite-4 { animation-delay: 4.5s; }
.elite-5 { animation-delay: 6s; }

@keyframes eliteGeoFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-10px, 15px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, -10px) rotate(270deg);
    }
}

/* Content Styling */
.elite-content-center {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
      font-family: 'Playfair Display', serif;

}

.elite-content-stack {
    max-width: 1200px;
    padding: 0 20px;
    opacity: 0;
    transform: scale(0.9);
    animation: eliteContentReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@keyframes eliteContentReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Badge with Pulse Animation */
.elite-badge-pulse {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(229, 194, 77, 0.9), rgba(229, 194, 77, 0.7));
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    animation: eliteBadgePulse 3s ease-in-out infinite;
}

@keyframes eliteBadgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(229, 194, 77, 0.3);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 40px rgba(229, 194, 77, 0.5);
        transform: translateY(-2px);
    }
}

.elite-badge-sparkle {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin-left: 10px;
    animation: eliteSparkleFlash 2s ease-in-out infinite;
}

@keyframes eliteSparkleFlash {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Title Cascade Animation */
.elite-title-cascade {
    margin-bottom: 40px;
}

.elite-title-line {
    font-size: 5em;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 0.9;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(50px);
    animation: eliteTitleReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
      font-family: 'Playfair Display', serif;

}

.elite-line-1 {
    animation-delay: 0.8s;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px !important;
}

.elite-line-2 {
    animation-delay: 1.1s;
    background: linear-gradient(135deg, #F4A825, rgba(229, 194, 77, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.elite-title-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #E5C24D, rgba(229, 194, 77, 0.9), transparent);
    margin: -25px auto 0 auto !important;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: eliteDividerReveal 0.8s ease-out 1.4s forwards;
}

@keyframes eliteDividerReveal {
    to {
        opacity: 1;
    }
}

.elite-title-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: eliteDividerShine 3s ease-in-out infinite 1.6s;
}

@keyframes eliteDividerShine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

/* Subtitle Slide Animation */
.elite-subtitle-slide {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 60px 0;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateX(-50px);
    animation: eliteSubtitleSlide 1s ease-out 1.6s forwards;
}

@keyframes eliteSubtitleSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Elegant CTA Button */
.elite-cta-elegant {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.elite-cta-btn {
    position: relative;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 20px 50px;
    font-size: 1.2em;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
    border-radius: 50px;
}

.elite-btn-orbital {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.6s ease;
}

.elite-btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.elite-btn-arrow {
    margin-left: 15px;
    transition: all 0.4s ease;
    opacity: 0.7;
    font-size: 1.3em;
}

.elite-btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(229, 194, 77, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.8s ease;
}

.elite-cta-btn:hover {
    border-color: #E5C24D;
    background: rgba(229, 194, 77, 0.1);
    padding-left: 60px;
    padding-right: 60px;
    box-shadow: 
        0 15px 40px rgba(229, 194, 77, 0.4),
        inset 0 0 0 1px rgba(229, 194, 77, 0.2);
}

.elite-cta-btn:hover .elite-btn-orbital {
    width: 120%;
    height: 120%;
    border-color: rgba(229, 194, 77, 0.5);
    animation: eliteOrbitalSpin 3s linear infinite;
}

@keyframes eliteOrbitalSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.elite-cta-btn:hover .elite-btn-text {
    letter-spacing: 4px;
}

.elite-cta-btn:hover .elite-btn-arrow {
    transform: translateX(8px) rotate(45deg);
    opacity: 1;
}

.elite-cta-btn:hover .elite-btn-glow {
    width: 200px;
    height: 200px;
}

/* Feature Hint */
.elite-feature-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
    letter-spacing: 0.5px;
}

.elite-hint-dot {
    width: 8px;
    height: 8px;
    background: #E5C24D;
    border-radius: 50%;
    animation: eliteHintPulse 2s ease-in-out infinite;
}

@keyframes eliteHintPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Floating Devices */
.elite-floating-devices {
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 3;
    pointer-events: none;
}

.elite-device {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.elite-macbook {
    width: 180px;
    height: 110px;
    animation: eliteDeviceFloatA 8s ease-in-out infinite;
}

.elite-macbook-pro {
    width: 160px;
    height: 100px;
    top: 20px;
    left: 50px;
    animation: eliteDeviceFloatB 10s ease-in-out infinite;
}

@keyframes eliteDeviceFloatA {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-15px, 10px) rotate(-3deg);
    }
    75% {
        transform: translate(20px, 15px) rotate(2deg);
    }
}

@keyframes eliteDeviceFloatB {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, 15px) rotate(-5deg);
    }
    50% {
        transform: translate(15px, -10px) rotate(3deg);
    }
    75% {
        transform: translate(-10px, -20px) rotate(-2deg);
    }
}

/* Ambient Glow */
.elite-ambient-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(229, 194, 77, 0.15) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .elite-content-stack {
        max-width: 90%;
    }
    
    .elite-title-line {
        font-size: 4em;
    }
    
    .elite-subtitle-slide {
        font-size: 1.2em;
    }
    
    .elite-floating-devices {
        display: none;
    }
}

@media (max-width: 768px) {
    .macbook-elite-section {
        height: 80vh;
        min-height: 600px;
    }
    
    .elite-title-line {
        font-size: 3em;
        letter-spacing: 2px;
    }
    
    .elite-subtitle-slide {
        font-size: 1.1em;
    }
    
    .elite-cta-btn {
        padding: 18px 40px;
        font-size: 1.1em;
    }
    
    .elite-shape {
        display: none;
    }
    
    .elite-1, .elite-3 {
        display: block;
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .macbook-elite-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .elite-title-line {
        font-size: 2.2em;
    }
    
    .elite-subtitle-slide {
        font-size: 1em;
    }
    
    .elite-cta-btn {
        padding: 16px 35px;
        font-size: 1em;
    }
    
    .elite-badge-pulse {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .btn-premium-outline {
        display:none;
    }
    .hero-badge {
        font-size: 12px;
    }
}
    /* Dynamic Products Section - */
    .dynamic-products-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #fff 0%, #f8f6f1 100%);
        position: relative;
        overflow: hidden;
    }

    .dynamic-products-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .dynamic-products-tag {
        display: inline-block;
        background: linear-gradient(135deg, var(--orange-accent), #ffb347);
        color: white;
        padding: 10px 30px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        margin-bottom: 20px;
        text-transform: uppercase;
        box-shadow: 0 5px 15px rgba(244, 168, 37, 0.3);
    }

    .dynamic-products-title {
        font-size: 42px;
        font-weight: 700;
        font-family: 'Playfair Display', serif;
        color: var(--vert-fonce);
        margin-bottom: 15px;
    }

    .dynamic-products-title .bold {
        color: var(--vert-principal);
    }

    .dynamic-products-title .accent {
        color: var(--orange-accent);
    }

    .dynamic-products-description {
        color: var(--gris-doux);
        font-size: 16px;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.8;
    }

    /* Products Grid  */
    .dynamic-products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-bottom: 40px;
        max-width: 1400px;
        margin: 0 auto 40px;
        padding: 0 20px;
    }

    /* Product Card */
    .dynamic-product-card {
        background: white;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(79, 111, 47, 0.1);
        transition: var(--transition);
        position: relative;
        cursor: pointer;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .dynamic-product-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--orange-accent);
    }

    /* Product Badges */
    .dynamic-product-badges {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .dynamic-product-badge {
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: white;
        box-shadow: var(--shadow-sm);
    }

    .dynamic-product-badge.sale {
        background: linear-gradient(135deg, #ff6b6b, #ff4444);
    }

    .dynamic-product-badge.featured {
        background: linear-gradient(135deg, var(--orange-accent), #ffb347);
    }

    .dynamic-product-badge.new {
        background: linear-gradient(135deg, var(--vert-principal), var(--vert-clair));
    }

    /* Product Image */
    .dynamic-product-image-wrapper {
        position: relative;
        padding: 30px;
        background: linear-gradient(135deg, #f8f6f1, #f0ebe0);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 250px;
        overflow: hidden;
    }

    .dynamic-product-image {
        max-width: 100%;
        max-height: 200px;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform 0.5s ease;
    }

    .dynamic-product-card:hover .dynamic-product-image {
        transform: scale(1.1);
    }

    /* Quick Actions */
    .dynamic-product-actions {
        position: absolute;
        top: 15px;
        right: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
        z-index: 2;
    }

    .dynamic-product-card:hover .dynamic-product-actions {
        opacity: 1;
        transform: translateX(0);
    }

    .dynamic-action-btn {
        width: 45px;
        height: 45px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--vert-fonce);
        font-size: 18px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        text-decoration: none;
        border: none;
        cursor: pointer;
    }

    .dynamic-action-btn:hover {
        background: var(--orange-accent);
        color: white;
        transform: scale(1.1);
    }

    /* Product Info */
    .dynamic-product-info {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .dynamic-product-category {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--orange-accent);
        margin-bottom: 8px;
        font-weight: 600;
    }

    .dynamic-product-title {
        font-size: 18px;
        font-weight: 700;
        color: var(--vert-fonce);
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .dynamic-product-title a {
        color: inherit;
        text-decoration: none;
        transition: var(--transition);
    }

    .dynamic-product-title a:hover {
        color: var(--orange-accent);
    }

    .dynamic-product-description {
        font-size: 14px;
        color: var(--gris-doux);
        line-height: 1.6;
        margin-bottom: 15px;
        flex: 1;
    }

    .dynamic-product-price {
        font-size: 22px;
        font-weight: 800;
        color: var(--orange-accent);
        margin-bottom: 20px;
    }

    .dynamic-product-price del {
        color: var(--gris-doux);
        font-size: 16px;
        opacity: 0.6;
        margin-right: 8px;
        font-weight: 400;
    }

    .dynamic-product-price ins {
        text-decoration: none;
    }

    .dynamic-view-product-btn {
        width: 100%;
        padding: 14px 20px;
        background: transparent;
        border: 2px solid var(--vert-principal);
        border-radius: 50px;
        color: var(--vert-principal);
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        margin-top: auto;
    }

    .dynamic-view-product-btn:hover {
        background: linear-gradient(135deg, var(--orange-accent), #ffb347);
        border-color: transparent;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(244, 168, 37, 0.3);
    }

    /* View All Button */
    .dynamic-products-more {
        text-align: center;
        margin-top: 50px;
    }

    .dynamic-btn-more {
        display: inline-block;
        padding: 16px 40px;
        background: linear-gradient(135deg, var(--vert-principal), var(--vert-fonce));
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(79, 111, 47, 0.3);
    }

    .dynamic-btn-more:hover {
        background: linear-gradient(135deg, var(--orange-accent), #ffb347);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(244, 168, 37, 0.3);
        color: white;
    }

    .dynamic-btn-more span {
        margin-left: 8px;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .dynamic-btn-more:hover span {
        transform: translateX(5px);
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .dynamic-products-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 992px) {
        .dynamic-products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .dynamic-products-title {
            font-size: 36px;
        }
    }

    @media (max-width: 768px) {
        .dynamic-products-section {
            padding: 60px 0;
        }
        
        .dynamic-products-title {
            font-size: 28px;
        }
        
        .dynamic-products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 15px;
        }
        
        .dynamic-product-image-wrapper {
            height: 180px;
            padding: 20px;
        }
        
        .dynamic-product-image {
            max-height: 140px;
        }
        
        .dynamic-product-info {
            padding: 15px;
        }
        
        .dynamic-product-title {
            font-size: 14px;
        }
        
        .dynamic-product-price {
            font-size: 16px;
            margin-bottom: 15px;
        }
        
        .dynamic-view-product-btn {
            padding: 10px;
            font-size: 12px;
        }
    }

    @media (max-width: 480px) {
        .dynamic-products-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .dynamic-product-image-wrapper {
            height: 200px;
        }
        
        .dynamic-product-image {
            max-height: 160px;
        }
    }

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

    .dynamic-product-card {
        animation: fadeInUp 0.6s ease-out;
        animation-fill-mode: both;
    }


    /* ===== MOVING LOGO CAROUSEL ===== */
    .logo-carousel-section {
        background: white;
        border-radius: 40px;
        padding: 40px 20px;
        margin: 40px 0 60px;
        box-shadow: var(--shadow-md);
        overflow: hidden;
        position: relative;
    }

    .logo-carousel-title {
        text-align: center;
        margin-bottom: 30px;
        color: var(--vert-fonce);
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 0.8;
    }

    .logo-carousel {
        overflow: visible;
        width: 100%;
        position: relative;
    }

    .logo-carousel-track {
        display: flex;
        animation: scrollLogos 25s linear infinite;
        width: fit-content;
    }

    .logo-carousel-track:hover {
        animation-play-state: paused;
    }

    .logo-carousel-item {
        flex: 0 0 auto;
        width: 200px;
        height: 120px;
        margin: 0 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--beige-fond);
        border-radius: 20px;
        padding: 20px;
        border: 1px solid rgba(79,111,47,0.1);
        transition: var(--transition);
    }

    .logo-carousel-item:hover {
        border-color: var(--orange-accent);
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        background: white;
    }

    .logo-carousel-item img {
        max-width: 100%;
        max-height: 80px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(20%);
        transition: var(--transition);
    }

    .logo-carousel-item:hover img {
        filter: grayscale(0%);
        transform: scale(1.1);
    }

    @keyframes scrollLogos {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 5 - 300px)); /* Width of all logos + margins */
        }
    }

    /* Responsive adjustments for logo carousel */
    @media (max-width: 1200px) {
        .logo-carousel-item {
            width: 180px;
            margin: 0 20px;
        }
        @keyframes scrollLogos {
            100% {
                transform: translateX(calc(-180px * 5 - 200px));
            }
        }
    }

    @media (max-width: 992px) {
        .logo-carousel-item {
            width: 160px;
            height: 100px;
            margin: 0 15px;
        }
        @keyframes scrollLogos {
            100% {
                transform: translateX(calc(-160px * 5 - 150px));
            }
        }
    }

    @media (max-width: 768px) {
        .logo-carousel-section {
            padding: 30px 15px;
            margin: 30px 0 40px;
        }
        .logo-carousel-item {
            width: 140px;
            height: 80px;
            margin: 0 10px;
            padding: 10px;
        }
        .logo-carousel-item img {
            max-height: 60px;
        }
        @keyframes scrollLogos {
            100% {
                transform: translateX(calc(-140px * 5 - 100px));
            }
        }
    }

    @media (max-width: 480px) {
        .logo-carousel-title {
            font-size: 16px;
        }
        .logo-carousel-item {
            width: 120px;
            height: 70px;
            margin: 0 8px;
        }
        .logo-carousel-item img {
            max-height: 50px;
        }
        @keyframes scrollLogos {
            100% {
                transform: translateX(calc(-120px * 5 - 80px));
            }
        }
    }           
        /* ========== WHY CHOOSE SECTION ========== */
        .why-choose {
            position: relative;
            padding: 140px 0;
            background: linear-gradient(145deg, var(--vert-fonce) 0%, #1a3310 100%);
            overflow: hidden;
            isolation: isolate;
        }
        
        .why-choose::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
                              radial-gradient(circle at 80% 70%, rgba(244, 168, 37, 0.03) 0%, transparent 25%),
                              repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 2px, transparent 2px, transparent 6px);
            pointer-events: none;
            z-index: 1;
        }
        
        .why-choose-leaf {
            position: absolute;
            width: 300px;
            height: 300px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 Q70 30 60 50 Q80 40 75 65 Q90 60 80 80 Q70 75 65 85 Q50 90 40 80 Q25 85 20 70 Q10 65 25 50 Q15 35 30 30 Q25 15 45 20 Q40 10 50 10" fill="rgba(124, 164, 83, 0.1)"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.1;
            animation: leafFloat 20s infinite alternate ease-in-out;
            pointer-events: none;
            z-index: 1;
        }
        
        .why-choose-leaf-1 {
            top: -50px;
            right: -50px;
            transform: rotate(45deg);
            animation-duration: 25s;
        }
        
        .why-choose-leaf-2 {
            bottom: -80px;
            left: -30px;
            transform: rotate(-30deg) scaleX(-1);
            animation-duration: 30s;
            opacity: 0.08;
        }
        
        @keyframes leafFloat {
            0% { transform: rotate(45deg) translate(0, 0); }
            100% { transform: rotate(75deg) translate(30px, -30px); }
        }
        
        .why-choose-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(244, 168, 37, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
            animation: glowPulse 8s infinite alternate;
            z-index: 1;
        }
        
        @keyframes glowPulse {
            0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
            100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
        }
        
        .why-choose-container {
            position: relative;
            z-index: 3;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .why-choose-header {
            text-align: center;
            margin-bottom: 80px;
            color: white;
        }
        
        .why-choose-tag {
            display: inline-block;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 6px;
            color: var(--orange-accent);
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 28px;
            border-radius: 50px;
            margin-bottom: 25px;
            font-weight: 500;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(244, 168, 37, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .why-choose-title {
            font-size: 56px;
            color: white;
            margin-bottom: 25px;
            font-weight: 300;
            line-height: 1.2;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .why-choose-title .bold {
            font-weight: 800;
            color: var(--orange-accent);
            position: relative;
            display: inline-block;
        }
        
        .why-choose-description {
            max-width: 600px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.7);
            font-size: 18px;
            line-height: 1.8;
            font-weight: 300;
        }
        
        .why-choose-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }
        
        .stats-showcase {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            position: relative;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 40px;
            padding: 40px 30px;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .stat-card:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(244, 168, 37, 0.2);
        }
        
        .stat-icon {
            font-size: 48px;
            margin-bottom: 20px;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
            transition: transform 0.5s ease;
            color: var(--orange-accent);
        }
        
        .stat-card:hover .stat-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .stat-number-wrapper {
            display: flex;
            align-items: baseline;
            gap: 5px;
            margin-bottom: 10px;
        }
        
        .stat-number {
            font-size: 64px;
            font-weight: 800;
            color: white;
            line-height: 1;
            text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: linear-gradient(135deg, white, rgba(255,255,255,0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-suffix {
            font-size: 32px;
            font-weight: 600;
            color: var(--orange-accent);
            margin-left: 5px;
        }
        
        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 300;
        }
        
        .why-choose-content {
            padding-left: 40px;
            position: relative;
        }
        
        .why-choose-content h3 {
            font-size: 36px;
            font-weight: 300;
            margin-bottom: 25px;
            line-height: 1.3;
            color:#ffffff;
        }
        
        .why-choose-content h3 strong {
            font-weight: 700;
            color: var(--orange-accent);
            display: block;
            font-size: 42px;
            margin-top: 10px;
        }
        
        .why-choose-text {
            font-size: 18px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            font-weight: 300;
        }
        
        .values-list {
            list-style: none;
            margin-bottom: 40px;
        }
        
        .values-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .value-check {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(244, 168, 37, 0.15);
            border-radius: 50%;
            color: var(--orange-accent);
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .values-list li:hover .value-check {
            background: var(--orange-accent);
            color: var(--vert-fonce);
            transform: rotate(360deg);
        }
        
        .certification-badge {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.03);
            padding: 20px 30px;
            border-radius: 60px;
            border: 1px solid rgba(244, 168, 37, 0.2);
            backdrop-filter: blur(5px);
            transition: all 0.4s ease;
            cursor: default;
        }
        
        .certification-badge:hover {
            background: rgba(244, 168, 37, 0.1);
            border-color: var(--orange-accent);
            transform: translateX(10px);
        }
        
        .badge-icon {
            width: 50px;
            height: 50px;
            background: var(--orange-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--vert-fonce);
            transition: all 0.4s ease;
        }
        
        .certification-badge:hover .badge-icon {
            transform: rotate(360deg);
            background: white;
        }
        
        .badge-text {
            display: flex;
            flex-direction: column;
        }
        
        .badge-text strong {
            font-size: 16px;
            color: white;
            letter-spacing: 1px;
        }
        
        .badge-text span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* ========== TÉMOIGNAGES SECTION (couleurs mises à jour) ========== */
        .belabied-reviews-section {
            background: #ffffff;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
            --review-primary: #4F6F2F;
            --review-accent: #F4A825;
        }
        
        .belabied-reviews-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .belabied-reviews-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .belabied-reviews-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--review-primary), var(--review-primary));
            color: #fff;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 0.9em;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            animation: belabiedReviewsBadgeFloat 3s ease-in-out infinite;
            box-shadow: 0 5px 15px rgba(79, 111, 47, 0.3);
        }
        
        @keyframes belabiedReviewsBadgeFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }
        
        .belabied-reviews-title {
            font-size: 3.5em;
            font-weight: 700 !important;
            color: #031C2D;
            margin: 0;
            letter-spacing: 1px;
        }
        
        .belabied-reviews-accent {
            background: linear-gradient(45deg, var(--review-primary), var(--review-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .belabied-reviews-carousel-container {
            position: relative;
            padding: 0 20px 40px;
        }
        
        .belabied-reviews-carousel {
            display: flex;
            gap: 30px;
            scroll-behavior: smooth;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 20px 0 40px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .belabied-reviews-carousel::-webkit-scrollbar {
            display: none;
        }
        
        .belabied-review-item {
            flex: 0 0 calc(33.333% - 20px);
            scroll-snap-align: start;
            min-width: 0;
        }
        
        @media (max-width: 992px) {
            .belabied-review-item {
                flex: 0 0 calc(50% - 15px);
            }
        }
        
        @media (max-width: 768px) {
            .belabied-review-item {
                flex: 0 0 calc(100% - 30px);
            }
        }
        
        .belabied-review-card {
            background: #f8fafc;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            border: 1px solid rgba(79, 111, 47, 0.1);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
        }
        
        .belabied-review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(79, 111, 47, 0.15);
            border-color: var(--review-primary);
        }
        
        .belabied-review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--review-primary), var(--review-accent));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .belabied-review-card:hover::before {
            transform: scaleX(1);
        }
        
        .belabied-review-header {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .belabied-review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            border: 3px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            animation: belabiedAvatarFloat 4s ease-in-out infinite;
        }
        
        .belabied-avatar-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }
        
        .belabied-review-card:hover .belabied-avatar-image {
            transform: scale(1.1);
        }
        
        @keyframes belabiedAvatarFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        .belabied-reviewer-info {
            flex: 1;
        }
        
        .belabied-reviewer-name {
            color: #031C2D;
            margin: 0 0 5px 0;
            font-size: 1.2em;
            font-weight: 700;
        }
        
        .belabied-review-date {
            color: rgba(3, 28, 45, 0.6);
            font-size: 0.85em;
        }
        
        .belabied-review-rating {
            display: flex;
            gap: 2px;
        }
        
        .belabied-star {
            color: var(--review-accent);
            font-size: 1.2em;
            transition: all 0.3s ease;
        }
        
        .belabied-review-card:hover .belabied-star {
            transform: scale(1.2);
            text-shadow: 0 0 10px rgba(244, 168, 37, 0.5);
        }
        
        .belabied-review-content {
            margin-bottom: 20px;
        }
        
        .belabied-review-text {
            color: rgba(3, 28, 45, 0.8);
            line-height: 1.6;
            margin: 0;
            font-size: 1em;
            position: relative;
            padding-left: 20px;
        }
        
        .belabied-review-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -5px;
            font-size: 2em;
            color: var(--review-primary);
            font-family: serif;
            opacity: 0.5;
        }
        
        .belabied-review-type {
            margin-top: auto;
        }
        
        .belabied-review-badge {
            display: inline-block;
            background: rgba(79, 111, 47, 0.1);
            color: var(--review-primary);
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.85em;
            font-weight: 600;
            border: 1px solid rgba(79, 111, 47, 0.2);
            transition: all 0.3s ease;
        }
        
        .belabied-review-card:hover .belabied-review-badge {
            background: var(--review-primary);
            color: white;
            border-color: var(--review-primary);
            transform: translateY(-2px);
        }
        
        .belabied-reviews-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 30px;
        }
        
        .belabied-review-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(3, 28, 45, 0.2);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
        }
        
        .belabied-review-dot:hover {
            background: rgba(79, 111, 47, 0.5);
            transform: scale(1.3);
        }
        
        .belabied-review-dot.belabied-dot-active {
            width: 35px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--review-primary), var(--review-accent));
            transform: scale(1);
            box-shadow: 0 5px 15px rgba(79, 111, 47, 0.4);
        }
        
        .belabied-reviews-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(79, 111, 47, 0.1);
        }
        
        .belabied-stat-item {
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, rgba(79, 111, 47, 0.05), rgba(244, 168, 37, 0.05));
            border-radius: 20px;
            border: 1px solid rgba(79, 111, 47, 0.1);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .belabied-stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(79, 111, 47, 0.15);
            border-color: var(--review-primary);
        }
        
        .belabied-stat-number {
            font-size: 2.5em;
            font-weight: 800;
            color: var(--review-primary);
            margin-bottom: 10px;
            background: linear-gradient(45deg, var(--review-primary), var(--review-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .belabied-stat-label {
            color: rgba(3, 28, 45, 0.8);
            font-size: 1em;
            font-weight: 600;
        }
        

        /* ========== ANIMATIONS ========== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        
        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .hero-title { font-size: 56px; }
            .avantages-grid-modern { grid-template-columns: repeat(2, 1fr); }
            .produits-grid-creative { grid-template-columns: repeat(2, 1fr); }
            .why-choose-grid { grid-template-columns: 1fr; }
        }
        
        @media (max-width: 992px) {
            .hero-title { font-size: 42px; }
            .avantages-title { font-size: 36px; }
            .produits-title { font-size: 42px; }
            .why-choose-title { font-size: 42px; }
            .belabied-reviews-title { font-size: 2.5em; }
        }
        
        @media (max-width: 768px) {
            .nav-toggle { display: flex; }
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -120%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--blanc);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
                padding: 20px;
                box-shadow: var(--shadow-md);
            }
            .header:not(.scrolled) .nav-menu {
                background: rgba(0,0,0,0.9);
            }
            .nav-menu.active { left: -40px; }
            
            .hero-title { font-size: 32px; }
            .hero-buttons { flex-direction: column; }
            
            .avantages-grid-modern { grid-template-columns: 1fr; }
            .produits-grid-creative { grid-template-columns: 1fr; }
            .stats-showcase { grid-template-columns: 1fr; }
            .belabied-reviews-stats { grid-template-columns: 1fr; }
        }
