        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        ::selection {
            background: #ff4d00;
            color: #fff;
        }

        ::-moz-selection {
            background: #ff4d00;
            color: #fff;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #1C1B1E;
            color: #fff;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: #111;
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            width: 100%;
            padding: 0 5%;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }
        
        .desktop-cta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #888;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-cta {
            background: #ff4d00;
            color: white;
            padding: 0.7rem 1.8rem;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s;
        }

.nav-cta:hover {
    background: #ff4d00;
    transform: translateY(-2px);
}

/* Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Styles pour le menu mobile */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #1C1B1E;
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .language-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-menu .language-option {
    padding: 0.8rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    display: block;
    color: #ccc;
    text-decoration: none;
}

.mobile-menu .language-option.active {
    color: #fff;
    font-weight: 500;
    background: rgba(255, 77, 0, 0.1);
}

.mobile-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation de la section héro au chargement */
.hero-section h1,
.hero-section p,
.hero-section .cta-button {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-section h1 { animation-delay: 0.2s; }
.hero-section p { animation-delay: 0.4s; }
.hero-section .cta-button { animation-delay: 0.6s; }

/* Animation au défilement */
.animate-on-scroll > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Délais pour les éléments enfants */
.animate-on-scroll.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll.is-visible > *:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll.is-visible > *:nth-child(5) { transition-delay: 0.5s; }

/* Style pour la flèche */
.cta-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 1rem 0;
}

.scroll-down-arrow {
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
    margin-top: 10px;
}

.scroll-down-arrow svg {
    width: 20px;
    height: 20px;
    fill: #ff4d00;
    transition: transform 0.3s ease;
    transform: rotate(90deg); /* Orienter vers la droite */
}

.scroll-down-arrow:hover svg {
    transform: rotate(90deg) scale(1.1);
}

/* Animation du bouton hamburger */
.hamburger.active span:first-child {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-current {
    background: none;
    border: none;
    color: #ccc;
    padding: 0.5rem 0.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 40px;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.language-current:hover {
    color: #fff;
}

.language-current:after {
    content: '▼';
    font-size: 0.5rem;
    margin-left: 1rem;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.language-switcher:hover .language-current:after {
    opacity: 1;
    transform: rotate(180deg);
}

/* Déplacé plus haut pour regrouper avec les autres styles de .language-dropdown */

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2a282c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem 0;
    min-width: 140px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    /* Permet de garder le menu ouvert au survol */
    pointer-events: auto;
}

/* Création d'un espace invisible entre le bouton et le menu */
.language-switcher::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    bottom: -10px;
}

/* Afficher le menu au survol du conteneur ou du menu */
.language-switcher:hover .language-dropdown,
.language-dropdown:hover {
    display: block;
}

.language-option {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.language-option.active {
    color: #ffffff;
    font-weight: 500;
    /* background: rgba(255, 77, 0, 0.1); */
}
/* Hero Section */
.hero {
    background:
        radial-gradient(
            1200px 600px at 80% -15%,
            rgba(255, 77, 0, 0.2),
            transparent 70%
        ),
        radial-gradient(
            1000px 500px at 20% 110%,
            rgba(255, 120, 0, 0.12),
            transparent 70%
        ),
        linear-gradient(
            180deg,
            #0f0f0f 0%,
            #050505 100%
        );
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    width: 100%;
    box-sizing: border-box;
}

.hero-label {
    color: #ff4d00;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 2rem;
    font-weight: 700;
}

.revenue-text {
    color: #ff4d00;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    background: #ff4d00;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #ff4d00;
    transform: translateY(-2px);
}

/* Section générique */
section {
    padding: 6rem 5%;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Conteneur de contenu */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Section Problème */
.problem-section {
    background:
        radial-gradient(
            1000px 500px at 20% -10%,
            rgba(255, 77, 0, 0.05),
            transparent 70%
        ),
        linear-gradient(
            180deg,
            #0a0a0a 0%,
            #050505 100%
        );
    width: 100%;
    position: relative;
    overflow: hidden;
}

.problem-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
    position: relative;
    z-index: 1;
}

.problem-intro {
    font-size: 1rem;
    color: #ccc;
    /* margin-bottom: 2rem; */
}

.problem-list {
    list-style: none;
    /* margin: 2rem 0; */
}

.problem-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.problem-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
}

.result-text {
    margin-top: 2rem;
    font-size: 1rem;
    color: #ccc;
    line-height: 1.8;
    text-align: left;
}

.cta-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: #ff4d00;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-arrow:hover {
    color: #ff6b35;
}

.cta-arrow:hover .arrow-down {
    transform: translateY(3px);
}

.arrow-down {
    transition: transform 0.3s ease;
}

.highlight-orange {
    color: #ff4d00;
    font-weight: 600;
    font-size: 1.8rem;
}

/* Section Direct Response */
.dr-section {
    background: 
        radial-gradient(
            1200px 600px at 80% 30%,
            rgba(255, 77, 0, 0.08),
            transparent 70%
        ),
        linear-gradient(
            180deg,
            #000 0%,
            #000 100%
        );
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Section 3 Colonnes */
.three-columns-section {
    padding: 6rem 0;
    background:
        radial-gradient(
            1000px 500px at 20% 70%,
            rgba(255, 77, 0, 0.05),
            transparent 70%
        ),
        linear-gradient(
            180deg,
            #000 0%,
            #000 100%
        );
    position: relative;
    overflow: hidden;
}

.columns-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.column {
    flex: 1;
    min-width: 280px;
    background: #252329;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.column h3 {
    color: #ff4d00;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.column p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column ul li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.column ul li:before {
    content: "•";
    color: #ff4d00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.dr-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.dr-subtitle {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.dr-highlight {
    color: #ff4d00;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 2rem 0;
}

.dr-list {
    list-style: none;
    margin: 2rem 0;
}

.dr-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dr-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
}

.dr-box {
    background: rgba(255, 77, 0, 0.1);
    border: 1px solid rgba(255, 77, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(5px);
    max-width: 100%;
    text-align: left;
}

.dr-box-title {
    color: #ff4d00;
    font-weight: 600;
    font-size: 1.5rem;
}

.dr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.dr-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.dr-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dr-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.dr-card p {
    font-size: 0.9rem;
    color: #ccc;
}

.dr-tagline {
    font-size: 1.2rem;
    color: #ccc;
    margin: 2rem 0;
}

/* Services Section */
.services-section {
    background:
        radial-gradient(
            1200px 600px at 80% 30%,
            rgba(255, 77, 0, 0.05),
            transparent 70%
        ),
        linear-gradient(
            180deg,
            #000 0%,
            #000 100%
        );
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 10rem 0;
}

.services-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0 6rem 0; /* Augmentation de la marge en bas */
}

/* Style pour le bouton CTA des services */
.services-cta {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.services-cta .cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ff4d00;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
}

.services-cta .cta-button:hover {
    background: #ff4d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 0, 0.4);
}

.service-card {
    position: relative;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 5rem 2rem 2rem 2rem;
    text-align: center;
    transition: all 0.3s;
    margin-top: 3rem;
}

.service-card:hover {
    border-color: #ff4d00;
    transform: translateY(-5px);
}

.service-card:hover .service-icon {
    filter: 
        drop-shadow(0 0 10px rgba(255, 77, 0, 0.9))
        drop-shadow(0 0 20px rgba(255, 77, 0, 0.7));
    transform: translateX(-50%) scale(1.1);
    transition: all 0.3s ease-out;
}

.service-icon {
    position: absolute;
    top: -4.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: none;
    width: auto;
    height: auto;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ccc;
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    padding: 0 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    text-align: left;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-features li:before {
    content: "•";
    color: #ff4d00;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.service-link:hover {
    gap: 0.8rem;
}

/* Garantie Section */
.garantie-label {
    color: #ff4d00;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.garantie-box {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.garantie-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.garantie-why {
    margin-top: 2rem;
    font-size: 1rem;
    color: #ccc;
}

/* Footer CTA with organic gradient */
.footer-cta {
background:
    radial-gradient(900px 520px at 95% 45%,
      rgba(255, 200, 90, 0.45),
      rgba(255, 150, 40, 0.22),
      transparent 70%
    ),
    linear-gradient(90deg,
      #ff4d00 0%,
      #ff6a00 45%,
      #ff8a00 100%
    );    /* Add a subtle vignette effect */
    position: relative;
    overflow: hidden;
    
  padding: 7rem 5%;
  text-align: center;
  margin: 0;
  background-blend-mode: overlay, soft-light, soft-light, overlay, overlay, normal;
  
  /* Effets de profondeur */
  box-shadow: 
    inset 0 0 80px rgba(0, 0, 0, 0.15),
    0 0 50px rgba(255, 100, 0, 0.2);
    
  /* Dégradé statique */
  background-size: 100% 100%;
}

/* Vignette effect */
.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 70%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Ensure content is above the vignette */
.footer-cta > * {
  position: relative;
  z-index: 2;
}
.footer-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta .cta-button {
    background: #000;
    color: #fff;
}

.footer-cta .cta-button:hover {
    background: #1a1a1a;
}

/* Footer */
footer {
    background: #1C1B1E;
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ff4d00;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .dr-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 5% 3rem;
    }

    section {
        padding: 3rem 5%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hamburger {
        display: flex;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .nav-cta {
        margin-top: 1rem;
    }
    
    /* Empêcher le défilement quand le menu est ouvert */
    body.menu-open {
        overflow: hidden;
    }
}
