/* ===================================================
   RESET ET STYLES DE BASE
   =================================================== */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #01030f;
    font-size: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Règles générales pour les images et sections */
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

section {
    width: 100%;
}

/* ===================================================
     STRUCTURE PRINCIPALE
     =================================================== */


/* ===================================================
     HEADER ET NAVIGATION
     =================================================== */
header {
    width: 100%;
    position: relative;
    z-index: 10;
}

.nav {
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.15);
    border-width: 0px 0px 1.47px 0px;
    padding: 15px 0px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    position: absolute;
    left: 0;
    top: 0;
}

.logo {
    flex-shrink: 0;
    width: 29px;
    height: 29px;
    position: relative;
}

.logo2 {
    background: radial-gradient(closest-side,
            rgba(217, 217, 217, 1) 0%,
            rgba(53, 53, 53, 1) 75.49999952316284%,
            rgba(53, 53, 53, 1) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0%;
    left: 0%;
    bottom: 0%;
    top: 0%;
    box-shadow: 0px 0px 1px 0.5px rgba(255, 255, 255, 0.55);
}

.nav-elements {
    border-radius: 88.1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.15);
    border-width: 1.47px;
    padding: 8px 40px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.frame-28,
.frame-29 {
    display: flex;
    flex-direction: row;
    gap: 4.4px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}

.features,
.developers,
.company,
.blog,
.changelog,
.dropdown-item,
.footer-menu a {
    color: #ffffff;
    text-align: left;
    font-family: "Inter-Regular", sans-serif;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.0001em;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.features:hover,
.developers:hover,
.company:hover,
.blog:hover,
.changelog:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

/* Ajout d'un effet de soulignement au survol */
.features::after,
.developers::after,
.company::after,
.blog::after,
.changelog::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(263.03deg,
            rgba(157, 157, 157, 1) 0%,
            rgba(237, 237, 237, 1) 50%,
            rgba(157, 157, 157, 1) 100%);
    transition: width 0.3s ease;
}

.features:hover::after,
.developers:hover::after,
.company:hover::after,
.blog:hover::after,
.changelog:hover::after {
    width: 100%;
}

/* Amélioration de l'effet sur les menus déroulants */
.frame-28:hover .caret-down-1,
.frame-29:hover .caret-down-2 {
    opacity: 1;
    transform: translateY(2px);
}

.caret-down-1,
.caret-down-2 {
    opacity: 0.6;
    flex-shrink: 0;
    width: 20.56px;
    height: 20.56px;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ===================================================
     BOUTONS CTA
     =================================================== */
.cta {
    min-width: 120px;
    position: relative;
    cursor: pointer;
    padding: 12px 17px;
    border: 0;
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: radial-gradient(
        ellipse at bottom,
        rgba(71, 81, 92, 1) 0%,
        rgba(11, 21, 30, 1) 45%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.cta::before {
    content: "";
    width: 70%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 15%;
    background: rgb(255, 255, 255);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0.2;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.cta:hover {
    color: rgb(255, 255, 255, 1);
    transform: scale(1.1) translateY(-3px);
}

.cta:hover::before {
    opacity: 1;
}

.cta2 {
    border-radius: 5px;
    padding: 0px 22.02px;
    display: flex;
    flex-direction: row;
    gap: 14.68px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.join-waitlist,
.join-waitlist2 {
    color: rgba(255, 255, 255, 0.66);
    text-align: center;
    font-family: "Inter-Regular", sans-serif;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.0001em;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.join-waitlist:hover,
.join-waitlist2:hover {
    color: rgb(255, 255, 255, 1);
    text-decoration: none;
}

.cta3 {
    min-width: 120px;
    position: relative;
    cursor: pointer;
    padding: 12px 17px;
    border: 0;
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: radial-gradient(
        ellipse at bottom,
        rgba(71, 81, 92, 1) 0%,
        rgba(11, 21, 30, 1) 45%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
    max-width: 160px;
}

.cta3::before {
    content: "";
    width: 70%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 15%;
    background: rgb(255, 255, 255);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0.2;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.cta-buttons .cta3 {
    max-width: none;
}

.cta3:hover {
    color: rgb(255, 255, 255, 1);
    transform: scale(1.1) translateY(-3px);
}

.cta3:hover::before {
    opacity: 1;
}

.join-waitlist2 {
    font-size: 14px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.66);
}

/* Modification du bouton secondaire */
.secondary-cta {
    min-width: 120px;
    position: relative;
    cursor: pointer;
    padding: 12px 17px;
    border: 0;
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.secondary-cta::before {
    content: "";
    width: 70%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 15%;
    background: rgb(255, 255, 255);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0.2;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.secondary-cta:hover {
    transform: scale(1.1) translateY(-3px);
}

.secondary-cta:hover::before {
    opacity: 1;
}

.secondary-cta-text {
    color: rgba(255, 255, 255, 0.66);
    text-align: center;
    font-family: "Inter-Regular", sans-serif;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.0001em;
    font-weight: 400;
    padding: 0 20px;
    transition: color 0.3s ease;
}

.secondary-cta:hover .secondary-cta-text {
    color: rgb(255, 255, 255, 1);
}

/* Modification du bouton de tarification */
.pricing-button {
    min-width: 120px;
    position: relative;
    cursor: pointer;
    padding: 12px 17px;
    border: 0;
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: radial-gradient(
        ellipse at bottom,
        rgba(71, 81, 92, 1) 0%,
        rgba(11, 21, 30, 1) 45%
    );
    color: rgba(255, 255, 255, 0.66);
    font-family: "Poppins-Medium", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
    text-decoration: none;
}

.pricing-button::before {
    content: "";
    width: 70%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 15%;
    background: rgb(255, 255, 255);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0.2;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.pricing-button:hover {
    color: rgb(255, 255, 255, 1);
    transform: scale(1.1) translateY(-3px);
    text-decoration: none;
}

.pricing-button:hover::before {
    opacity: 1;
}

/* ===================================================
     SECTION HERO
     =================================================== */
.hero-section {
    position: relative;
    z-index: 5;
    width: 100%;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 132px;
    min-height: 100vh;
    justify-content: center;
}

.hero-section-container {
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-m {
    background: #000000;
    border-radius: 50px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.15);
    border-width: 1px;
    padding: 8px 14px;
    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 30px;
    max-width: 300px;
}

.badge-s {
    background: #ffffff;
    border-radius: 40px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 18px;
    position: relative;
}

.new {
    color: #000000;
    text-align: left;
    font-family: "Inter-Bold", sans-serif;
    font-size: 10px;
    line-height: 26px;
    letter-spacing: -0.0001em;
    font-weight: 700;
    position: relative;
    width: 24px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.latest-integration-just-arrived {
    color: #ffffff;
    text-align: left;
    font-family: "Inter-Regular", sans-serif;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.0001em;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.title {
    width: 100%;
    max-width: 682px;
    position: relative;
    margin-bottom: 30px;
    text-align: left;
}

.revolutionize-your-workflow-with-ai {
    text-align: left;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 60px;
    line-height: 65px;
    letter-spacing: -0.03em;
    font-weight: 700;
    position: relative;
    width: 100%;
}

.revolutionize-your-workflow-with-ai-span {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 60px;
    line-height: 65px;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.revolutionize-your-workflow-with-ai-span2 {
    background: linear-gradient(263.03deg,
            rgba(157, 157, 157, 1) 0%,
            rgba(237, 237, 237, 1) 50%,
            rgba(157, 157, 157, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 60px;
    line-height: 65px;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.revolutionize-your-workflow-with-ai-span3 {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 60px;
    line-height: 65px;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.sub-title {
    width: 100%;
    max-width: 681px;
    position: relative;
    margin-bottom: 40px;
}

.experience-cutting-edge-solutions-designed-to-elevate-productivity-and-deliver-results-like-never-before {
    color: #d5d5d5;
    text-align: left;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.03em;
    font-weight: 400;
    position: relative;
    width: 100%;
}

/* ===================================================
     ÉLÉMENTS VISUELS ET EFFETS DE LUEUR
     =================================================== */
.visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    max-width: 100vw;
    pointer-events: none;
}

.model-glow {
    width: 400px;
    height: 600px;
    position: absolute;
    left: calc(50% + 160px);
    top: 300px;
}

.ellipse-1 {
    background: radial-gradient(closest-side,
            rgba(151, 175, 198, 0.8) 0%,
            rgba(151, 175, 198, 0) 100%);
    border-radius: 50%;
    width: 78.5%;
    height: 89.21%;
    position: absolute;
    right: 21.5%;
    left: 0%;
    bottom: -1.89%;
    top: 12.68%;
    transform-origin: 0 0;
    transform: rotate(-11.817deg) scale(1, 1);
}

.main-glow {
    background: radial-gradient(closest-side,
            rgba(165, 166, 166, 1) 0%,
            rgba(86, 86, 86, 1) 100%);
    border-radius: 50%;
    width: 91.79%;
    height: 43.54%;
    position: absolute;
    right: -74.68%;
    left: 82.88%;
    bottom: 44%;
    top: 12.46%;
    transform-origin: 0 0;
    transform: rotate(90deg) scale(1, 1);
    filter: blur(142.72px);
    mix-blend-mode: plus-lighter;
}

.text-glow {
    width: 243.31px;
    height: 182.18px;
    position: absolute;
    left: 203px;
    top: 457px;
}

.main-glow2 {
    background: radial-gradient(closest-side,
            rgba(165, 166, 166, 1) 0%,
            rgba(86, 86, 86, 1) 100%);
    border-radius: 50%;
    width: 89.16%;
    height: 71.62%;
    position: absolute;
    right: -75.28%;
    left: 86.12%;
    bottom: -71.62%;
    top: 100%;
    transform-origin: 0 0;
    transform: rotate(-165deg) scale(1, 1);
    filter: blur(112.72px);
    mix-blend-mode: plus-lighter;
}

.ai-model {
    width: 800px;
    height: 900px;
    position: absolute;
    left: calc(50% + 40px);
    top: 60px;
    z-index: 2;
}

.ai-model2 {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0%;
    left: 0%;
    bottom: 0%;
    top: 0%;
    object-fit: cover;
}

.gradient {
    opacity: 0.7;
    width: 1000px;
    height: 1000px;
    position: absolute;
    top: 400px;
    transform-origin: 0 0;
    transform: rotate(64deg) scale(1, 1);
}

.ellipse-2 {
    background: radial-gradient(closest-side,
            rgba(255, 255, 255, 0.32) 0%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0%;
    left: 0%;
    bottom: 0%;
    top: 0%;
}

.elements {
    width: 660px;
    height: 597px;
    position: absolute;
    right: -695px;
    top: 249px;
    transform-origin: 0 0;
    transform: rotate(90deg) scale(1, 1);
    overflow: hidden;
    z-index: 0;
}

.group-16 {
    height: auto;
    position: absolute;
    left: 50%;
    translate: -50%;
    overflow: visible;
    rotate: -90deg;
}

/* ===================================================
     SECTION PRÉSENTATION DE LA SOLUTION
     =================================================== */
.solution-section {
    position: relative;
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    padding: 80px 80px;
}

.solution-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 80px;
}

.solution-content {
    flex: 1;
    max-width: 550px;
}

.solution-title {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 42px;
    line-height: 52px;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(263.03deg,
            rgba(157, 157, 157, 1) 0%,
            rgba(237, 237, 237, 1) 50%,
            rgba(157, 157, 157, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-description {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.01em;
    font-weight: 400;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.3s ease,
        box-shadow 0.4s ease;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.benefit-item:hover .benefit-text h3 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease;
}

.benefit-icon i {
    font-size: 24px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.benefit-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(closest-side,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(5px);
}

.benefit-text h3 {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.benefit-text p {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    font-weight: 400;
    margin: 0;
}

.solution-image {
    flex: 1;
    max-width: 600px;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.solution-image img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    object-fit: contain;
}

/* Modification pour étirer le SVG en hauteur */
.solution-image img[src$=".svg"] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.3, 2);
    /* Étire plus en hauteur (1.8) qu'en largeur (1.3) */
}

.image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(closest-side,
            rgba(151, 175, 198, 0.3) 0%,
            rgba(151, 175, 198, 0) 100%);
    filter: blur(40px);
    z-index: 0;
    transform: translateY(20px) scale(0.9);
}

.solution-glow {
    position: absolute;
    width: 1000px;
    height: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.solution-ellipse {
    background: radial-gradient(closest-side,
            rgba(151, 175, 198, 0.1) 0%,
            rgba(151, 175, 198, 0) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* ===================================================
     SECTION FONCTIONNALITÉS
     =================================================== */
.features-section {
    position: relative;
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.01em;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    width: 340px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.5s ease,
        border-color 0.3s ease,
        background-color 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card:hover .feature-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(10px);
}

.feature-card:hover .icon-glow {
    background: radial-gradient(closest-side,
            rgba(165, 166, 166, 0.8) 0%,
            rgba(86, 86, 86, 0) 100%);
}

.feature-icon i {
    font-size: 40px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.feature-title {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-description {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.features-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.features-ellipse {
    background: radial-gradient(closest-side,
            rgba(151, 175, 198, 0.2) 0%,
            rgba(151, 175, 198, 0) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* ===================================================
     SECTION TÉMOIGNAGES
     =================================================== */
.testimonials-section {
    position: relative;
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    background: rgba(1, 3, 15, 0.7);
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    width: 500px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.5s ease,
        border-color 0.3s ease,
        background-color 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

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

.testimonial-card:hover .testimonial-text {
    color: #ffffff;
}

.testimonial-card:hover .author-name {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.testimonial-card:hover .author-avatar i {
    color: #ffffff;
    transform: scale(1.1);
}

.author-avatar i {
    transition: color 0.3s ease, transform 0.3s ease;
}

.testimonial-text {
    color: #ffffff;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.01em;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 50px;
    color: #d5d5d5;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.01em;
    font-weight: 700;
    margin: 0;
}

.author-position {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.01em;
    font-weight: 400;
    margin: 0;
}

.testimonials-glow {
    position: absolute;
    width: 1000px;
    height: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.testimonials-ellipse {
    background: radial-gradient(closest-side,
            rgba(151, 175, 198, 0.15) 0%,
            rgba(151, 175, 198, 0) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* ===================================================
     SECTION STATISTIQUES
     =================================================== */
.stats-section {
    position: relative;
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    width: 200px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.3s ease;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-10px);
}


.stat-item:hover .stat-number {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.stat-number {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(263.03deg,
            rgba(157, 157, 157, 1) 0%,
            rgba(237, 237, 237, 1) 50%,
            rgba(157, 157, 157, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: text-shadow 0.3s ease, transform 0.3s ease;
}

.stat-label {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.stats-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.stats-ellipse {
    background: radial-gradient(closest-side,
            rgba(151, 175, 198, 0.2) 0%,
            rgba(151, 175, 198, 0) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* ===================================================
     SECTION INTÉGRATIONS
     =================================================== */
.integrations-section {
    position: relative;
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    background: rgba(1, 3, 15, 0.9);
}

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

.integrations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.integration-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.3s ease,
        box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .integrations-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 50px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .integration-item{
        width: 100%;
        aspect-ratio: 1/1;
    }
}


.integration-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.integration-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.integration-item:hover::before {
    opacity: 1;
}

.integration-icon {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.integration-item:hover .integration-icon {
    transform: scale(1.1);
    color: #ffffff;
}

.integration-name {
    color: #d5d5d5;
    font-family: "Poppins-Medium", sans-serif;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.integration-item:hover .integration-name {
    color: #ffffff;
}

.integrations-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.integrations-ellipse {
    background: radial-gradient(closest-side,
            rgba(151, 175, 198, 0.15) 0%,
            rgba(151, 175, 198, 0) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* ===================================================
         SECTION TARIFICATION
         =================================================== */
.pricing-section {
    position: relative;
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
}

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

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    width: 350px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.5s ease,
        border-color 0.3s ease,
        background-color 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card.featured {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

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

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

.pricing-plan {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px 15px;
    color: #ffffff;
    font-family: "Poppins-Medium", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-currency {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.price-amount {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.price-period {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.pricing-description {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-feature {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-feature i {
    color: #ffffff;
    font-size: 16px;
}

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

.pricing-button {
    min-width: 120px;
    position: relative;
    cursor: pointer;
    padding: 12px 17px;
    border: 0;
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: radial-gradient(
        ellipse at bottom,
        rgba(71, 81, 92, 1) 0%,
        rgba(11, 21, 30, 1) 45%
    );
    color: rgba(255, 255, 255, 0.66);
    font-family: "Poppins-Medium", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
    text-decoration: none;
}

.pricing-button::before {
    content: "";
    width: 70%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 15%;
    background: rgb(255, 255, 255);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0.2;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.pricing-button:hover {
    color: rgb(255, 255, 255, 1);
    transform: scale(1.1) translateY(-3px);
    text-decoration: none;
}

.pricing-button:hover::before {
    opacity: 1;
}

.pricing-card.featured .pricing-button {
    background: radial-gradient(ellipse at bottom, rgb(71 81 92) 0%, rgb(88 88 88 / 37%) 45%);
}

.pricing-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.pricing-ellipse {
    background: radial-gradient(closest-side,
            rgba(151, 175, 198, 0.15) 0%,
            rgba(151, 175, 198, 0) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* ===================================================
         SECTION FEUILLE DE ROUTE
         =================================================== */
.roadmap-section {
    position: relative;
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    background: rgba(1, 3, 15, 0.7);
}

.roadmap-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.roadmap-timeline {
    position: relative;
    margin-top: 80px;
}

.roadmap-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    margin-bottom: 80px;
    position: relative;
}

.roadmap-item:nth-child(odd) {
    justify-content: flex-end;
}

.roadmap-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.3s ease,
        box-shadow 0.4s ease;
}

.roadmap-item:hover .roadmap-content {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.roadmap-date {
    position: absolute;
    top: 50%;
    width: 120px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    padding: 8px 15px;
    color: #ffffff;
    font-family: "Poppins-Medium", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    transform: translateY(-50%);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.roadmap-item:nth-child(odd) .roadmap-date {
    left: calc(50% - 230px);
    transform: translateY(-50%) translateX(50%);
}

.roadmap-item:nth-child(even) .roadmap-date {
    right: calc(50% - 230px);
    transform: translateY(-50%) translateX(-50%);
}

.roadmap-item:hover .roadmap-date {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) translateX(50%) scale(1.05);
}

.roadmap-item:nth-child(even):hover .roadmap-date {
    transform: translateY(-50%) translateX(-50%) scale(1.05);
}

.roadmap-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.roadmap-item:hover .roadmap-dot {
    background-color: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.roadmap-title {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 15px;
}

.roadmap-description {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.roadmap-features {
    margin-top: 20px;
    padding-left: 20px;
}

.roadmap-feature {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px;
    position: relative;
}

.roadmap-feature::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: rgba(255, 255, 255, 0.5);
}

.roadmap-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.roadmap-ellipse {
    background: radial-gradient(closest-side,
            rgba(151, 175, 198, 0.15) 0%,
            rgba(151, 175, 198, 0) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* Media queries pour les sections ajoutées */
@media screen and (max-width: 992px) {
    .integration-item {
        width: 130px;
        height: 130px;
        padding: 15px;
    }

    .integration-icon {
        font-size: 35px;
    }

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        width: 300px;
        padding: 30px;
    }

    .roadmap-content {
        width: 42%;
        padding: 25px;
    }

    .roadmap-date {
        width: 100px;
        font-size: 12px;
    }

    .roadmap-item:nth-child(odd) .roadmap-date {
        left: -120px;
    }

    .roadmap-item:nth-child(even) .roadmap-date {
        right: -120px;
    }
}

@media screen and (max-width: 768px) {
    .integrations-grid {
        gap: 20px;
    }

    .integration-item {
        width: 110px;
        height: 110px;
        padding: 12px;
    }

    .integration-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .integration-name {
        font-size: 12px;
        line-height: 16px;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .roadmap-line {
        left: 30px;
    }

    .roadmap-item {
        justify-content: flex-start;
        padding-left: 60px;
    }

    .roadmap-item:nth-child(odd) {
        justify-content: flex-start;
    }

    .roadmap-content {
        width: 100%;
    }

    .roadmap-dot {
        left: 30px;
    }

    .roadmap-date {
        position: absolute;
        top: 50%;
        left: 0 !important;
        right: auto !important;
        transform: translateY(-50%) !important;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
    }
    
    .roadmap-item:hover .roadmap-date {
        transform: translateY(-50%) scale(1.05) !important;
    }
    
    .roadmap-content {
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    .integrations-grid {
        gap: 15px;
    }

    .integration-item {
        width: 110px;
        height: 110px;
        padding: 10px;
    }

    .integration-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .integration-name {
        font-size: 12px;
        line-height: 18px;
    }

    .pricing-card {
        padding: 25px;
    }

    .price-amount {
        font-size: 36px;
        line-height: 44px;
    }

    .roadmap-content {
        padding: 20px;
    }

    .roadmap-title {
        font-size: 18px;
        line-height: 26px;
    }

    .roadmap-description {
        font-size: 14px;
        line-height: 22px;
    }

    .roadmap-date {
        width: 50px;
        height: 50px;
        font-size: 10px;
        line-height: 14px;
    }
    
    .roadmap-item {
        padding-left: 50px;
    }
    
    .roadmap-line {
        left: 25px;
    }
    
    .roadmap-dot {
        left: 25px;
        width: 16px;
        height: 16px;
    }
}

/* ===================================================
     SECTION CTA FINAL
     =================================================== */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    background: rgba(1, 3, 15, 0.9);
}

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

.final-cta-title {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-description {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.01em;
    font-weight: 400;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.secondary-cta {
    background: radial-gradient(ellipse at bottom, rgb(71 81 92) 0%, rgb(88 88 88 / 37%) 45%);
}


.final-cta-glow {
    position: absolute;
    width: 1000px;
    height: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.final-cta-ellipse {
    background: radial-gradient(closest-side,
            rgba(151, 175, 198, 0.1) 0%,
            rgba(151, 175, 198, 0) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* Styles pour les boutons CTA dans la section finale */
.final-cta-section .cta3 {
    min-width: 180px;
    margin-top: 0;
}

.final-cta-section .cta2 {
    width: auto;
    min-width: 140px;
}

.final-cta-section .join-waitlist2 {
    font-size: 16px;
    padding: 0 10px;
}

/* ===================================================
     FOOTER
     =================================================== */
.footer {
    position: relative;
    padding: 80px 0 40px;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.footer-info {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.company-name {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.footer-description {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    font-weight: 400;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.footer-column {
    min-width: 160px;
}

.footer-column-title {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.01em;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    position: relative;
    z-index: 2;
}

.copyright {
    color: #d5d5d5;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    text-decoration: none;
    color: #ffffff;
    transform: scale(1.2);
}

.social-link i {
    font-size: 20px;
    color: #d5d5d5;
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

.footer-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    bottom: -400px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.footer-ellipse {
    background: radial-gradient(closest-side,
            rgba(151, 175, 198, 0.1) 0%,
            rgba(151, 175, 198, 0) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* ===================================================
     MEDIA QUERIES - RESPONSIVE DESIGN
     =================================================== */

/* Écrans larges et moyens */
@media screen and (max-width: 1200px) {

    .model-glow {
        left: 50%;
        transform: translateX(0);
        width: 50%;
        max-width: 500px;
    }

    .revolutionize-your-workflow-with-ai,
    .revolutionize-your-workflow-with-ai-span,
    .revolutionize-your-workflow-with-ai-span2,
    .revolutionize-your-workflow-with-ai-span3 {
        font-size: 60px;
        line-height: 65px;
    }

    .nav {
        width: 100%;
        left: 0;
        padding: 19.09px 20px;
        gap: 40px;
        justify-content: space-between;
    }

    .nav-elements {
        padding: 11.75px 20px;
    }

    .hero-section {
        padding-top: 0;
        padding-left: 50px;
    }

    .features-grid,
    .testimonials-slider,
    .stats-container {
        padding: 0 20px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

/* Tablettes */
@media screen and (max-width: 992px) {
    .section-title {
        font-size: 40px;
        line-height: 48px;
    }

    .final-cta-title {
        font-size: 40px;
        line-height: 48px;
    }

    .testimonial-card {
        width: 100%;
        max-width: 500px;
    }

    .footer-links {
        gap: 30px;
    }
}

/* Tablettes et mobiles larges */
@media screen and (max-width: 768px) {

    .revolutionize-your-workflow-with-ai,
    .revolutionize-your-workflow-with-ai-span,
    .revolutionize-your-workflow-with-ai-span2,
    .revolutionize-your-workflow-with-ai-span3 {
        font-size: 40px;
        line-height: 45px;
    }

    .experience-cutting-edge-solutions-designed-to-elevate-productivity-and-deliver-results-like-never-before {
        font-size: 18px;
        line-height: 26px;
    }

    .nav-elements {
        display: none;
        /* Cacher la navigation sur mobile */
    }

    .hero-section {
        padding-top: 0;
        padding-left: 20px;
        padding-right: 20px;
        align-items: center;
        text-align: center;
    }

    .title {
        text-align: center;
    }

    .revolutionize-your-workflow-with-ai {
        text-align: center;
    }

    .experience-cutting-edge-solutions-designed-to-elevate-productivity-and-deliver-results-like-never-before {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .ai-model {
        left: -20px;
    }

    .gradient {
        display: none;
    }

    .secondary-cta-text {
        padding: 0;
    }

    header {
        padding: 0 20px;
    }

    .features-section,
    .testimonials-section,
    .stats-section,
    .final-cta-section,
    .integrations-section,
    .roadmap-section,
    .pricing-section,
    .solution-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 32px;
        line-height: 40px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 24px;
        padding: 0 10px 0 10px;
    }

    .feature-card {
        width: 100%;
        max-width: 340px;
    }

    .stats-container {
        gap: 40px;
    }

    .stat-number {
        font-size: 48px;
        line-height: 56px;
    }

    .final-cta-title {
        font-size: 32px;
        line-height: 40px;
    }

    .final-cta-description {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-info {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: flex;
        justify-content: center;
    }
}

/* Mobiles */
@media screen and (max-width: 480px) {

    .revolutionize-your-workflow-with-ai,
    .revolutionize-your-workflow-with-ai-span,
    .revolutionize-your-workflow-with-ai-span2,
    .revolutionize-your-workflow-with-ai-span3 {
        font-size: 32px;
        line-height: 38px;
    }

    .experience-cutting-edge-solutions-designed-to-elevate-productivity-and-deliver-results-like-never-before {
        font-size: 16px;
        line-height: 22px;
    }

    .title {
        height: auto;
    }

    .cta .join-waitlist {
        font-size: 16px;
    }

    .hero-section {
        padding-top: 100px;
    }

    /* Ajout d'un menu hamburger pour mobile */
    .nav {
        justify-content: space-between;
        padding: 15px;
    }

    .cta {
        transform: scale(0.9);
    }

    .features-section,
    .testimonials-section,
    .stats-section,
    .final-cta-section,
    .integrations-section,
    .solution-section,
    .roadmap-section,
    .pricing-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 24px;
    }

    .stat-item {
        width: 140px;
    }

    .stat-number {
        font-size: 36px;
        line-height: 44px;
    }

    .stat-label {
        font-size: 14px;
        line-height: 20px;
    }

    .final-cta-title {
        font-size: 28px;
        line-height: 36px;
    }

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

    .secondary-cta {
        width: 100%;
        max-width: 200px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-links {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
        padding: 0 10px;
    }

    .footer-column {
        width: 45%;
        margin-bottom: 30px;
        text-align: left;
    }

    .footer-column-title {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-menu a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-bottom {
        margin-top: 30px;
    }
}

/* Ajout de media queries spécifiques pour l'image */
@media screen and (max-width: 992px) {
    .solution-container {
        flex-direction: column;
    }

    .solution-content,
    .solution-image {
        max-width: 100%;
    }

    .solution-image {
        height: 350px;
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .solution-image {
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .solution-image {
        height: 250px;
    }
}

/* Ajustements pour la section solution sur mobile */
@media screen and (max-width: 768px) {
    .solution-section {
        padding: 60px 20px;
    }

    .solution-container {
        flex-direction: column;
        gap: 30px;
    }

    .solution-content {
        max-width: 100%;
        text-align: center;
    }

    .solution-title {
        font-size: 36px;
        line-height: 44px;
        text-align: center;
    }

    .solution-description {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        margin-bottom: 30px;
    }

    .benefits-list {
        align-items: flex-start;
        max-width: 500px;
        margin: 0 auto;
    }

    .benefit-item {
        text-align: left;
    }

    .solution-image {
        max-width: 100%;
        height: 300px;
    }

    .solution-image img[src$=".svg"] {
        transform: scale(1.2, 1.8);
    }
}

@media screen and (max-width: 480px) {
    .solution-section {
        padding: 50px 15px;
    }

    .solution-title {
        font-size: 28px;
        line-height: 36px;
    }

    .solution-description {
        font-size: 15px;
        line-height: 22px;
    }

    .benefit-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-icon i {
        font-size: 20px;
    }

    .benefit-text h3 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 5px;
    }

    .benefit-text p {
        font-size: 14px;
        line-height: 20px;
    }

    .solution-image {
        height: 250px;
    }

    .solution-image img[src$=".svg"] {
        transform: scale(1.1, 1.6);
    }
}

/* Styles pour le menu hamburger et le menu mobile */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 100;
    position: relative;
}

.hamburger-icon {
    width: 30px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}

/* Animation pour transformer en croix */
.hamburger-icon.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-icon.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 100%;
    height: auto;
    max-height: 100vh;
    background-color: #01030f;
    z-index: 101;
    padding: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    border-radius: 0 0 0 15px;
    overflow-y: auto;
    border-radius: 0 0 0 15px;
    margin-top: 0;
}

.mobile-menu.active {
    transform: translateX(-300px);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-menu {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 102;
}

.close-menu i {
    font-size: 24px;
    color: #ffffff;
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    overflow-y: auto;
}

.mobile-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu.active .mobile-menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Délai d'animation pour chaque élément du menu */
.mobile-menu.active .mobile-menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-menu-item:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-menu-item:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-menu-item:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu.active .mobile-menu-item:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-cta {
    margin-top: 20px;
    margin-bottom: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Media queries pour le menu mobile */
@media screen and (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .nav {
        justify-content: space-between;
        padding: 15px 20px;
    }
}

/* JavaScript pour le menu mobile */
/* Ajoutez ce script à la fin de votre fichier HTML, juste avant la fermeture de la balise body */

/* Correction pour le texte manquant dans le menu mobile */
.mobile-menu-link {
    color: #ffffff;
    font-family: "Inter-Regular", sans-serif;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.0001em;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.mobile-menu-item i {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.6;
}

/* Effet de survol sur les éléments du menu */
.mobile-menu-item {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.mobile-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.mobile-menu-item:hover i {
    opacity: 1;
}

/* Centrage du CTA et du badge sur mobile */
@media screen and (max-width: 768px) {
    .hero-section {
        padding-left: 20px;
        padding-right: 20px;
        align-items: center;
        text-align: center;
    }

    .badge-m {
        margin-left: auto;
        margin-right: auto;
    }

    .title {
        text-align: center;
    }

    .revolutionize-your-workflow-with-ai {
        text-align: center;
    }

    .sub-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-cutting-edge-solutions-designed-to-elevate-productivity-and-deliver-results-like-never-before {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .cta3 {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding-top: 100px;
    }

    .revolutionize-your-workflow-with-ai-span,
    .revolutionize-your-workflow-with-ai-span2,
    .revolutionize-your-workflow-with-ai-span3 {
        font-size: 40px;
        line-height: 48px;
    }

    .sub-title {
        max-width: 100%;
    }

    .experience-cutting-edge-solutions-designed-to-elevate-productivity-and-deliver-results-like-never-before {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Ajout du nom à côté du logo sur mobile */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 0;
}

.mobile-brand-name {
    color: #ffffff;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: none;
    position: relative;
    z-index: 0;
}

@media screen and (max-width: 768px) {
    .mobile-brand-name {
        display: block;
    }

    .logo-container {
        z-index: 0;
    }
}

/* Styles pour les menus déroulants */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #01030f;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 100;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: #01030f;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    color: #ffffff;
    font-family: "Inter-Regular", sans-serif;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
    transition: background-color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

/* Ajustement pour le mobile */
@media screen and (max-width: 768px) {
    .dropdown-menu {
        display: none;
    }

    /* Sous-menus pour le menu mobile */
    .mobile-submenu {
        display: block;
        padding-left: 20px;
        margin-top: 0;
        margin-bottom: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease, margin 0.4s ease;
        opacity: 0;
    }

    .mobile-submenu.active {
        max-height: 300px;
        /* Hauteur maximale pour l'animation */
        margin-top: 10px;
        margin-bottom: 10px;
        opacity: 1;
    }

    .mobile-menu-item {
        position: relative;
        z-index: 1;
    }

    .mobile-menu-item i {
        transition: transform 0.3s ease;
    }
}

/* Correction pour le texte manquant dans les sous-menus mobiles */
.mobile-submenu-item {
    color: #ffffff;
    font-family: "Inter-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 0;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: block;
}

.mobile-submenu-item:hover {
    opacity: 1;
    transform: translateX(5px);
    text-decoration: none;
}

/* Animation pour les éléments du sous-menu */
.mobile-submenu.active .mobile-submenu-item {
    animation: fadeInRight 0.3s forwards;
    opacity: 0;
    transform: translateX(10px);
}

.mobile-submenu.active .mobile-submenu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-submenu.active .mobile-submenu-item:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-submenu.active .mobile-submenu-item:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-submenu.active .mobile-submenu-item:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-submenu.active .mobile-submenu-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

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

/* ===================================================
   ANIMATIONS AU DÉFILEMENT
   =================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animation de fondu vers le haut */
.fade-up {
    transform: translateY(30px);
}

.fade-up.animated {
    transform: translateY(0);
}

/* Animation de fondu latéral */
.fade-in-side {
    transform: translateX(-30px);
}

.fade-in-side.animated {
    transform: translateX(0);
}

/* Animation de fondu simple */
.fade-in {
    opacity: 0;
}

.fade-in.animated {
    opacity: 1;
}

/* Animation pour les éléments de la feuille de route */
.roadmap-item:nth-child(odd) .fade-in-side {
    transform: translateX(-30px);
}

.roadmap-item:nth-child(even) .fade-in-side {
    transform: translateX(30px);
}

.roadmap-item:nth-child(odd) .fade-in-side.animated,
.roadmap-item:nth-child(even) .fade-in-side.animated {
    transform: translateX(0);
}

/* Animation de pulsation pour les statistiques */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 1.5s ease-in-out;
}

/* Animation pour les cartes au survol */
.feature-card,
.testimonial-card,
.pricing-card,
.integration-item {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease,
                background-color 0.3s ease;
}

.feature-card:hover,
.testimonial-card:hover,
.integration-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Animation pour les icônes */
.feature-icon i,
.benefit-icon i,
.author-avatar i {
    transition: transform 0.4s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon i,
.benefit-item:hover .benefit-icon i {
    transform: scale(1.2) rotate(5deg);
    color: #ffffff;
}

.testimonial-card:hover .author-avatar i {
    transform: scale(1.2);
    color: #ffffff;
}

/* Animation pour la ligne de la feuille de route */
.roadmap-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    transform: translateY(-100%);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(300%);
    }
}

/* Animation pour les points de la feuille de route */
.roadmap-dot {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-item:hover .roadmap-dot {

    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Animation pour les badges */
.badge-m {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Animation pour le modèle AI 
.ai-model{
    animation: floatModel 8s ease-in-out infinite;
} */

@keyframes floatModel {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(15px) rotate(-1deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Animation pour les lueurs */
.model-glow,
.text-glow,
.solution-glow,
.features-glow,
.stats-glow,
.integrations-glow,
.pricing-glow,
.roadmap-glow,
.testimonials-glow,
.final-cta-glow,
.footer-glow {
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}
