    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #000000; /* Changed to black */
            color: #ffffff; /* Added white text for readability */
        }

  .am-header_five {
    padding: 20px 0;
    background: transparent;
    position: absolute;  /* Ajouté */
    top: 0;              /* Ajouté */
    left: 0;             /* Ajouté */
    right: 0;            /* Ajouté */
    width: 100%;         /* Ajouté */
    z-index: 100;
}

.am-header_two_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.am-logo {
    flex-shrink: 0;
}

.am-logo img {
    height: 50px;
    width: auto;
}

/* Navigation Desktop */
.am-navigation {
    display: flex;
    align-items: center;
}

.am-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.nav-linkk {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-linkk:hover {
    color: #ffffff;
    font-weight: 600;
}

/* Burger Menu */
.burger-btn {
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
}

.burger-btn span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-btn:hover span {
    background-color: #ffffff;
}

/* Mobile Menu */
.offcanvas {
    background-color: #ffffff;
}

.offcanvas-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1D1D1E;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 20px;
}

.mobile-nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1D1D1E;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #000000;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1199px) {
    .am-nav-menu {
        gap: 25px;
    }

    .nav-linkk {
        font-size: 15px;
    }
}

        /* Main Section */
        .am-main {
            padding-top: 88px;
            margin-top: -88px;
            overflow: hidden;
             /* Changed to black */
        }

        /* Banner Section */
       .pb-themesection {
    padding: 1px 0;
    position: relative;
    min-height: 800px;
    overflow: hidden;
}

/* Style pour la vidéo de fond */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Overlay sombre optionnel pour la lisibilité */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Ajustez l'opacité */
    z-index: 0;
}

/* Contenu au-dessus de la vidéo */
.pb-themesection > *:not(.video-background):not(.video-overlay) {
    position: relative;
    z-index: 2;
}

/* Overlay sombre pour la lisibilité du texte */


/* Contenu au-dessus de l'overlay */
.pb-themesection > * {
    position: relative;
    z-index: 2;
}

        .am-banner-potential {
            padding: 1px 0;
             /* Changed to black */
        }

        .am-banner-tutor {
    border-radius: 16px;
    padding: 40px 20px;
    padding-top: 120px;  /* Espace en haut */
    max-width: 1350px;
    height: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* Changé de center à flex-start */
    align-items: center;
    gap: 40px;  /* Espace entre les éléments */
}
        .banner-title {
            font-family: 'Inter', sans-serif;
            font-size: 70px;
            color: #ffffff; /* Changed to white */
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 30px;
            margin-bottom: 50px; /* Espace en bas du titre */
    margin-top: 100px;
        }

        .banner-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 30px;
            color: #ffffff; /* Changed to light gray */
            font-weight: 500;
            line-height: 1.5;
            margin-bottom: 30px;
            margin-top: 40px;
        }

        .explore-btn {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #000000; /* Keep black text for contrast */
            background-color: #ffffff; /* Keep white background for contrast */
            padding: 12px 24px;
            text-decoration: none;
            display: inline-block;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .explore-btn:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
            color: #000000;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 1200px) {
            .banner-title {
                font-size: 60px;
            }

            .banner-subtitle {
                font-size: 22px;
            }
        }

        @media (max-width: 992px) {
            .am-banner-tutor {
                height: 500px;
                padding: 30px 20px;
            }

            .banner-title {
                font-size: 50px;
                margin-bottom: 25px;
            }

            .banner-subtitle {
                font-size: 20px;
                margin-bottom: 25px;
            }
        }

        @media (max-width: 768px) {
            .am-main {
                padding-top: 70px;
                margin-top: -70px;
            }

            .am-header_five {
                padding: 15px 0;
            }

            .am-logo img {
                height: 40px;
            }

            .am-banner-tutor {
                height: auto;
                min-height: 450px;
                padding: 40px 15px;
                border-radius: 12px;
            }

            .banner-title {
                font-size: 40px;
                margin-bottom: 20px;
            }

            .banner-subtitle {
                font-size: 18px;
                margin-bottom: 20px;
                padding: 0 10px;
            }

            .banner-subtitle br {
                display: none;
            }

            .explore-btn {
                font-size: 16px;
                padding: 10px 20px;
            }
        }

        @media (max-width: 576px) {
            .am-banner-tutor {
                min-height: 400px;
                padding: 30px 10px;
            }

            .banner-title {
                font-size: 32px;
                font-weight: 700;
            }

            .banner-subtitle {
                font-size: 16px;
                line-height: 1.6;
            }
        }

        @media (max-width: 400px) {
            .am-logo img {
                height: 35px;
            }

            .banner-title {
                font-size: 28px;
            }

            .banner-subtitle {
                font-size: 14px;
            }

            .explore-btn {
                font-size: 14px;
                padding: 8px 16px;
            }
        }

        /* Animation Classes */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-up {
            animation: fadeUp 0.8s ease forwards;
        }

        .delay-300 {
            animation-delay: 0.3s;
            opacity: 0;
        }

        .delay-400 {
            animation-delay: 0.4s;
            opacity: 0;
        }

        .delay-500 {
            animation-delay: 0.5s;
            opacity: 0;
        }

        .info-card {
            background-color: #1a1a1a; /* Changed to dark */
            border-radius: 20px;
            display: flex;
            flex-direction: row;
            align-items: stretch;
            justify-content: space-between;
            min-height: 400px;
            overflow: hidden;
        }

        .info-content {
            width: 50%;
            padding: 40px 20px;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .info-title {
            font-family: 'Inter', sans-serif;
            font-size: 30px;
            color: #ffffff; /* Changed to white */
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .info-description {
            font-family: 'Inter', sans-serif;
            font-size: 22px;
            color: #cccccc; /* Changed to light gray */
            font-weight: 400;
            text-align: center;
            line-height: 1.5;
        }

        .info-image {
            width: 50%;
            padding: 0;
            margin: 0;
            height: 100%;
            display: flex;
        }

        .info-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            margin: 0;
            padding: 0;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .info-title {
                font-size: 32px;
            }

            .info-description {
                font-size: 20px;
            }
        }

        @media (max-width: 992px) {
            .info-title {
                font-size: 36px;
            }

            .info-description {
                font-size: 18px;
            }

            .info-content {
                padding: 30px 15px;
            }
        }

        @media (max-width: 768px) {
            .info-card {
                flex-direction: column;
                min-height: auto;
            }

            .info-content,
            .info-image {
                width: 100%;
            }

            .info-content {
                padding: 40px 20px 30px;
                order: 2;
            }

            .info-image {
                height: 250px;
                order: 1;
            }

            .info-title {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .info-description {
                font-size: 16px;
            }

            .desktop-break {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .info-card {
                border-radius: 16px;
            }

            .info-content {
                padding: 30px 20px;
            }

            .info-image {
                height: 200px;
            }

            .info-title {
                font-size: 28px;
            }

            .info-description {
                font-size: 15px;
                padding: 0 10px;
            }
        }

        @media (max-width: 400px) {
            .info-title {
                font-size: 24px;
            }

            .info-description {
                font-size: 14px;
            }

            .info-image {
                height: 180px;
            }
        }

        /* Animation au scroll (optionnel) */
        .info-card {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .info-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .info-card-reverse {
            background-color: #1a1a1a; /* Changed to dark */
            border-radius: 20px;
            display: flex;
            flex-direction: row;
            align-items: stretch;
            justify-content: space-between;
            min-height: 400px;
            overflow: hidden;
        }

        .info-image-reverse {
            width: 50%;
            padding: 0;
            margin: 0;
            height: 100%;
            display: flex;
        }

        .info-image-reverse img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .info-content-reverse {
            width: 50%;
            padding: 40px 20px;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* Responsive pour la section inversée */
        @media (max-width: 768px) {
            .info-card-reverse {
                flex-direction: column;
                min-height: auto;
            }

            .info-content-reverse,
            .info-image-reverse {
                width: 100%;
            }

            .info-content-reverse {
                padding: 40px 20px 30px;
                order: 2;
            }

            .info-image-reverse {
                height: 250px;
                order: 1;
            }
        }

        @media (max-width: 576px) {
            .info-card-reverse {
                border-radius: 16px;
            }

            .info-content-reverse {
                padding: 30px 20px;
            }

            .info-image-reverse {
                height: 200px;
            }
        }

        @media (max-width: 400px) {
            .info-image-reverse {
                height: 180px;
            }
        }

        /* Animation pour section inversée */
        .info-card-reverse {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .info-card-reverse.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Section Carousel */
        .carousel-section {
            background-color: #000000; /* Changed to black */
            overflow: hidden;
        }

        .carousel-title {
            font-family: 'Inter', sans-serif;
            font-size: 42px;
            color: #ffffff; /* Changed to white */
            font-weight: 700;
            line-height: 1.3;
        }

        .gradient-text {
            background: linear-gradient(90deg, #8A86E9, #CA5EF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        /* Fix pour scroll horizontal uniquement */
        .carousel-container {
            margin: 50px 0;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            overflow: hidden; /* Empêche le débordement vertical */
        }

        .carousel-track {
            display: flex;
            overflow-x: auto; /* Scroll horizontal seulement */
            overflow-y: hidden; /* Pas de scroll vertical */
            gap: 16px;
            padding: 30px 100px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            height: 690px; /* Hauteur fixe */
            align-items: center; /* Centre les cartes verticalement */
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        /* Flip Cards avec hauteur fixe */
        .flip-card {
            perspective: 1000px;
            width: calc(23vw - 32px);
            min-width: 350px;
            height: 630px;
            max-height: 630px;
            scroll-snap-align: center;
            flex-shrink: 0;
            flex-grow: 0;
        }

        .flip-inner {
            width: 100%;
            height: 100%;
            max-height: 630px;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            position: relative;
            border-radius: 20px;
        }

        .flip-card.flipped .flip-inner {
            transform: rotateY(180deg);
        }

        .flip-front, .flip-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            padding: 24px;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: #1a1a1a; /* Changed to dark */
        }

        .flip-back {
            transform: rotateY(180deg);
        }

        /* Typography */
        .card-title, .card-title-white {
            font-family: 'Inter', sans-serif;
            font-size: 30px;
            font-weight: 700;
        }

        .card-title {
            color: #ffffff; /* Changed to white */
        }

        .card-title-white {
            color: #FFFFFF;
        }

        .card-subtitle, .card-subtitle-white {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            font-weight: 700;
        }

        .card-subtitle {
            color: #cccccc; /* Changed to light gray */
        }

        .card-subtitle-white {
            color: #FFFFFF;
        }

        .card-text {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            color: #cccccc; /* Changed to light gray */
            font-weight: 700;
        }

        /* Buttons */
        .flip-button, .flip-buttonferme {
            position: absolute;
            bottom: 24px;
            right: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: transform 0.3s;
        }

        .flip-button:hover, .flip-buttonferme:hover {
            transform: scale(1.1);
        }

        .flip-button {
            background-color: #fff;
        }

        .flip-buttonferme {
            background-color: #000;
        }

        /* Glow Effect */
        .glow-line-border {
            position: absolute;
            inset: -4px;
            border-radius: 24px;
            background: linear-gradient(135deg, #0D93FF, #C25FEA, #EE4476, #ED6D10);
            filter: blur(10px);
            pointer-events: none;
            z-index: 1;
        }

        .content {
            z-index: 2;
            position: relative;
        }

        /* Slider Images */
        .before-image, .after-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            max-height: 100%;
            z-index: 1;
        }

        .before-image {
            clip-path: inset(0 50% 0 0);
        }

        .after-image {
            clip-path: inset(0 0 0 50%);
        }

        .slider {
            position: absolute;
            left: 50%;
            top: 0;
            width: 4px;
            height: 100%;
            background: #fff;
            cursor: ew-resize;
            z-index: 2;
            transform: translateX(-50%);
        }

        .slider-handle {
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: #fff;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .carousel-title {
                font-size: 36px;
            }

            .carousel-track {
                height: 610px;
                padding: 30px 50px;
            }

            .flip-card {
                width: 35vw;
                min-width: 300px;
                height: 550px;
                max-height: 550px;
            }

            .flip-inner {
                max-height: 550px;
            }
        }

        @media (max-width: 992px) {
            .carousel-title {
                font-size: 32px;
            }

            .carousel-track {
                height: 560px;
            }

            .flip-card {
                width: 45vw;
                min-width: 280px;
                height: 500px;
                max-height: 500px;
            }

            .flip-inner {
                max-height: 500px;
            }

            .card-title, .card-title-white {
                font-size: 26px;
            }

            .card-subtitle, .card-subtitle-white, .card-text {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .carousel-title {
                font-size: 28px;
                padding: 0 20px;
            }

            .carousel-track {
                height: 510px;
                padding: 20px 20px;
                gap: 12px;
            }

            .flip-card {
                width: 75vw;
                min-width: 260px;
                height: 450px;
                max-height: 450px;
            }

            .flip-inner {
                max-height: 450px;
            }

            .flip-front, .flip-back {
                padding: 20px;
            }

            .flip-button, .flip-buttonferme {
                width: 35px;
                height: 35px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 576px) {
            .carousel-title {
                font-size: 24px;
            }

            .carousel-track {
                height: 460px;
            }

            .flip-card {
                width: 85vw;
                min-width: 240px;
                height: 400px;
                max-height: 400px;
            }

            .flip-inner {
                max-height: 400px;
            }

            .card-title, .card-title-white {
                font-size: 22px;
            }

            .card-subtitle, .card-subtitle-white, .card-text {
                font-size: 14px;
            }
        }

        .permission-section {
            background-color: #000000;
            margin-top:150px; /* Changed to black */
        }

        .permission-card {
            background-color: #1a1a1a; /* Changed to dark */
            border-radius: 20px;
            display: flex;
            flex-direction: row;
            align-items: stretch;
            justify-content: space-between;
            min-height: 400px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        }

        .permission-image {
            width: 50%;
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .permission-image img {
            width: 100%;
            height: 630px;
            object-fit: cover;
        }

        .permission-content {
            width: 50%;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .permission-title-wrapper {
            text-align: left;
            margin-bottom: 30px;
        }

        .permission-title {
            font-family: 'Inter', sans-serif;
            font-size: 35px;
            color: #ffffff; /* Changed to white */
            font-weight: 600;
            line-height: 1.3;
        }

        .permission-text-wrapper {
            display: flex;
            align-items: center;
        }

        .permission-text {
            font-family: 'Inter', sans-serif;
            font-size: 22px;
            color: #cccccc; /* Changed to light gray */
            font-weight: 600;
            text-align: left;
            line-height: 1.5;
        }

        /* Animation */
        .permission-card {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .permission-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .permission-image img {
                height: 550px;
            }

            .permission-title {
                font-size: 32px;
            }

            .permission-text {
                font-size: 20px;
            }
        }

        @media (max-width: 992px) {
            .permission-image img {
                height: 500px;
            }

            .permission-title {
                font-size: 28px;
            }

            .permission-text {
                font-size: 18px;
            }

            .permission-content {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            .permission-card {
                flex-direction: column;
                min-height: auto;
            }

            .permission-image,
            .permission-content {
                width: 100%;
            }

            .permission-image img {
                height: 300px;
                width: 100%;
            }

            .permission-content {
                padding: 30px 20px;
                text-align: center;
            }

            .permission-title-wrapper,
            .permission-text {
                text-align: center;
            }

            .permission-title {
                font-size: 26px;
                margin-bottom: 20px;
            }

            .permission-text {
                font-size: 16px;
            }

            .desktop-break {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .permission-card {
                border-radius: 16px;
                box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            }

            .permission-image img {
                height: 250px;
            }

            .permission-content {
                padding: 25px 15px;
            }

            .permission-title {
                font-size: 24px;
            }

            .permission-text {
                font-size: 15px;
                font-weight: 500;
            }
        }

        @media (max-width: 400px) {
            .permission-image img {
                height: 200px;
            }

            .permission-title {
                font-size: 20px;
            }

            .permission-text {
                font-size: 14px;
            }

            .permission-content {
                padding: 20px 15px;
            }
        }

        /* Section Courses */
        .courses-section {
            background-color: #000000; /* Changed to black */
        }

        .courses-title {
            font-family: 'Inter', sans-serif;
            font-size: 36px;
            color: #ffffff; /* Changed to white */
            font-weight: 700;
        }

        .courses-subtitle {
            color: #cccccc; /* Changed to light gray */
            font-weight: 800;
        }

        .courses-cards-container {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        /* Course Flip Cards */
        .course-flip-card {
            perspective: 1000px;
            width: 500px;
            height: 400px;
            max-width: 100%;
        }

        .course-flip-inner {
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            position: relative;
            background-color: #1a1a1a; /* Changed to dark */
            box-shadow: 0 0 20px rgba(0,0,0,0.15);
            border-radius: 16px;
        }

        .course-flip-card.flipped .course-flip-inner {
            transform: rotateY(180deg);
        }

        .course-flip-front, .course-flip-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            padding: 24px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .course-flip-back {
            transform: rotateY(180deg);
        }

        /* AI Course specific */
        .ai-course {
            position: relative;
        }

        .course-image-container {
            background-color: #000000; /* Changed to black */
            border-radius: 0;
            padding: 10px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
        }

        .course-image {
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
            border-radius: 8px;
            object-fit: cover;
        }

        /* Typography */
        .course-card-title {
            font-family: 'Inter', sans-serif;
            font-size: 25px;
            color: #ffffff; /* Changed to white */
            font-weight: 700;
            margin-bottom: 10px;
        }

        .course-card-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            color: #cccccc; /* Changed to light gray */
            font-weight: 700;
            margin-bottom: 10px;
        }

        .course-card-text {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            color: #cccccc; /* Changed to light gray */
            font-weight: 700;
        }

        /* Buttons */
        .course-flip-btn {
            position: absolute;
            bottom: 24px;
            right: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #fff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .course-flip-btn:hover {
            transform: scale(1.1);
        }

        .course-flip-close {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #000;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .course-flip-close:hover {
            transform: scale(1.1);
        }

        .learn-more-btn {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #000;
            background-color: #fff;
            padding: 8px 16px;
            border-radius: 20px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .learn-more-btn:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }

        .course-actions {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .course-flip-card {
                width: 450px;
            }
        }

        @media (max-width: 992px) {
            .courses-title {
                font-size: 32px;
            }

            .course-flip-card {
                width: 400px;
                height: 380px;
            }

            .course-card-title {
                font-size: 23px;
            }

            .course-card-subtitle {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .courses-title {
                font-size: 28px;
                padding: 0 20px;
            }

            .courses-cards-container {
                flex-direction: column;
                align-items: center;
            }

            .course-flip-card {
                width: 90%;
                max-width: 400px;
                height: 350px;
            }

            .course-card-title {
                font-size: 21px;
            }

            .course-card-subtitle {
                font-size: 17px;
            }

            .course-card-text {
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .courses-title {
                font-size: 24px;
            }

            .courses-subtitle {
                display: block;
                margin-top: 5px;
            }

            .course-flip-card {
                width: 95%;
                height: 320px;
            }

            .course-flip-front, .course-flip-back {
                padding: 20px;
            }

            .course-card-title {
                font-size: 19px;
            }

            .course-card-subtitle {
                font-size: 16px;
            }

            .course-flip-btn, .course-flip-close {
                width: 35px;
                height: 35px;
                bottom: 15px;
                right: 15px;
            }

            .course-image {
                max-width: 200px;
            }
        }

        @media (max-width: 400px) {
            .courses-title {
                font-size: 20px;
            }

            .course-flip-card {
                height: 300px;
            }

            .course-card-title {
                font-size: 17px;
            }

            .course-card-subtitle {
                font-size: 15px;
            }

            .course-card-text {
                font-size: 13px;
            }
        }

        .backend-section {
            background-color: #000000; /* Changed to black */
        }

        .backend-card {
            background-color: #1a1a1a; /* Changed to dark */
            border-radius: 20px;
            display: flex;
            flex-direction: row;
            align-items: stretch;
            height: 400px;
            width: 100%;
            max-width: 1030px;
            overflow: hidden;
            margin: 0 auto;
            box-shadow: 0 0 20px rgba(0,0,0,0.15);
        }

        .backend-content {
            width: 50%;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .backend-title {
            font-family: 'Inter', sans-serif;
            font-size: 25px;
            color: #ffffff; /* Changed to white */
            font-weight: 700;
            margin-bottom: 20px;
        }

        .backend-description {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            color: #cccccc; /* Changed to light gray */
            font-weight: 700;
            line-height: 1.5;
            margin-top: auto;
            padding-top: 50px;
        }

        .backend-image {
            width: 50%;
            padding: 0;
            margin: 0;
            height: 100%;
        }

        .backend-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Animation */
        .backend-card {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .backend-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .backend-card {
                max-width: 900px;
            }
        }

        @media (max-width: 992px) {
            .backend-card {
                height: 350px;
            }

            .backend-title {
                font-size: 23px;
            }

            .backend-description {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .backend-card {
                flex-direction: column;
                height: auto;
            }

            .backend-content,
            .backend-image {
                width: 100%;
            }

            .backend-content {
                padding: 30px 20px;
                order: 2;
            }

            .backend-image {
                height: 250px;
                order: 1;
            }

            .backend-description {
                padding-top: 20px;
            }

            .backend-title {
                text-align: center;
            }

            .backend-description {
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .backend-card {
                border-radius: 16px;
            }

            .backend-content {
                padding: 25px 15px;
            }

            .backend-image {
                height: 200px;
            }

            .backend-title {
                font-size: 21px;
            }

            .backend-description {
                font-size: 16px;
                font-weight: 600;
            }
        }

        @media (max-width: 400px) {
            .backend-image {
                height: 180px;
            }

            .backend-title {
                font-size: 19px;
            }

            .backend-description {
                font-size: 14px;
            }

            .backend-content {
                padding: 20px 15px;
            }
        }

        .testimonials-section {
            background-color: #000000; /* Changed to black */
            direction: ltr;
            margin-top:160px;
        }

        .testimonials-header {
            margin-bottom: 3rem;
        }

        .testimonials-title {
            font-family: 'Inter', sans-serif;
            font-size: 45px;
            color: #ffffff; /* Changed to white */
            font-weight: 700;
            line-height: 1.2;
        }

        .testimonials-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 36px;
            color: #cccccc; /* Changed to light gray */
            font-weight: 700;
            line-height: 1.3;
        }

        .testimonial-card {
            background-color: #1a1a1a; /* Changed to dark */
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
        }

        .testimonial-text {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            color: #cccccc; /* Changed to light gray */
            font-weight: 700;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: auto;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 12px;
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            margin: 0;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            color: #ffffff; /* Changed to white */
        }

        .author-role {
            font-family: 'Inter', sans-serif;
            color: #888888; /* Changed to darker gray */
            font-size: 14px;
        }

        /* Animation */
        .testimonial-card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .testimonial-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .testimonial-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .testimonial-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .testimonials-title {
                font-size: 40px;
            }

            .testimonials-subtitle {
                font-size: 32px;
            }
        }

        @media (max-width: 992px) {
            .testimonials-title {
                font-size: 36px;
            }

            .testimonials-subtitle {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .testimonials-title {
                font-size: 32px;
            }

            .testimonials-subtitle {
                font-size: 24px;
                padding-top: 1rem !important;
            }

            .testimonial-card {
                margin-bottom: 20px;
            }

            .testimonial-text {
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .testimonials-title {
                font-size: 28px;
            }

            .testimonials-subtitle {
                font-size: 20px;
            }

            .testimonial-card {
                padding: 20px;
            }

            .author-avatar {
                width: 45px;
                height: 45px;
            }

            .author-name {
                font-size: 15px;
            }

            .author-role {
                font-size: 13px;
            }
        }

        @media (max-width: 400px) {
            .testimonials-title {
                font-size: 24px;
            }

            .testimonials-subtitle {
                font-size: 18px;
            }

            .testimonial-text {
                font-size: 13px;
                font-weight: 600;
            }
        }

        .faq-section {
            background-color: #000000; /* Changed to black */
            direction: ltr;
            margin-top:150px;
        }

        .faq-header {
            margin-bottom: 3rem;
        }

        .faq-title {
            font-family: 'Inter', sans-serif;
            font-size: 45px;
            color: #ffffff; /* Changed to white */
            font-weight: 700;
            line-height: 1.2;
        }

        .faq-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 30px;
            color: #cccccc; /* Changed to light gray */
            font-weight: 700;
            line-height: 1.3;
        }

        .faq-container {
            background-color: #1a1a1a; /* Changed to dark */
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
        }

        .faq-item {
            background-color: #2a2a2a; /* Changed to darker gray */
            border-radius: 16px;
            border: none;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-button {
            background-color: #2a2a2a; /* Changed to darker gray */
            border-radius: 16px;
            border: none;
            padding: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #ffffff; /* Changed to white */
            transition: all 0.3s ease;
        }

        .faq-button:not(.collapsed) {
            background-color: #2a2a2a;
            color: #ffffff;
            font-weight: 700;
        }

        .faq-button:focus {
            box-shadow: none;
            border: none;
        }

        .faq-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transition: transform 0.3s ease;
        }

        .faq-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            color: #cccccc; /* Changed to light gray */
            line-height: 1.6;
            background-color: #2a2a2a;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .faq-title {
                font-size: 40px;
            }

            .faq-subtitle {
                font-size: 26px;
            }
        }

        @media (max-width: 992px) {
            .faq-title {
                font-size: 36px;
            }

            .faq-subtitle {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .faq-title {
                font-size: 32px;
            }

            .faq-subtitle {
                font-size: 20px;
            }

            .faq-container {
                padding: 20px;
            }

            .faq-button {
                padding: 16px;
                font-size: 15px;
            }

            .faq-answer {
                padding: 16px;
                font-size: 13px;
            }
        }

        @media (max-width: 576px) {
            .faq-title {
                font-size: 28px;
            }

            .faq-subtitle {
                font-size: 18px;
            }

            .faq-container {
                padding: 15px;
                border-radius: 16px;
            }

            .faq-item {
                border-radius: 12px;
                margin-bottom: 10px !important;
            }

            .faq-button {
                padding: 14px;
                font-size: 14px;
                border-radius: 12px;
            }
        }

        @media (max-width: 400px) {
            .faq-title {
                font-size: 24px;
            }

            .faq-subtitle {
                font-size: 16px;
            }

            .faq-button {
                padding: 12px;
                font-size: 13px;
            }

            .faq-answer {
                font-size: 12px;
            }
        }

        /* Footer Section */
        .footer-section {
            background-color: #000000;
            padding: 80px 0 40px;
            color: #ffffff;
        }

        .footer-content {
            text-align: center;
        }

        .footer-title {
            font-family: 'Inter', sans-serif;
            font-size: 36px;
            color: #ffffff;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .footer-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            color: #B0B0B0;
            font-weight: 400;
            line-height: 1.5;
            margin-bottom: 40px;
        }

        .footer-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .btn-started {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #000000;
            background-color: #ffffff;
            padding: 14px 28px;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-started:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
            color: #000000;
        }

        .btn-outline {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            background-color: transparent;
            padding: 14px 28px;
            border: 2px solid #ffffff;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-outline:hover {
            background-color: #ffffff;
            color: #000000;
            transform: translateY(-2px);
        }

        .footer-nav {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-nav li {
            margin: 0;
        }

        .footer-nav a {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: #B0B0B0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .footer-nav a:hover {
            color: #ffffff;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .footer-section {
                padding: 60px 0 30px;
            }

            .footer-title {
                font-size: 32px;
            }

            .footer-subtitle {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .footer-title {
                font-size: 28px;
                padding: 0 20px;
            }

            .footer-subtitle {
                font-size: 15px;
                padding: 0 20px;
            }

            .footer-actions {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .btn-started,
            .btn-outline {
                width: 80%;
                max-width: 300px;
                text-align: center;
            }

            .footer-nav {
                gap: 20px;
            }
        }

        @media (max-width: 576px) {
            .footer-section {
                padding: 50px 0 25px;
            }

            .footer-title {
                font-size: 24px;
            }

            .footer-subtitle {
                font-size: 14px;
            }

            .btn-started,
            .btn-outline {
                font-size: 14px;
                padding: 12px 24px;
                width: 90%;
            }

            .footer-nav {
                flex-direction: column;
                gap: 15px;
            }

            .footer-nav a {
                font-size: 13px;
            }
        }

        @media (max-width: 400px) {
            .footer-title {
                font-size: 20px;
            }

            .footer-subtitle {
                font-size: 13px;
            }

            .btn-started,
            .btn-outline {
                font-size: 13px;
                padding: 10px 20px;
            }
        }

        .real-work-section {
            background-color: #000000; /* Changed to black */
            overflow: hidden;
        }

        .glow-wrapper {
            position: relative;
            padding: 20px;
        }

        .glow-line-border {
            position: absolute;
            inset: 0;
            border-radius: 30px;
            background: linear-gradient(135deg, #0D93FF, #C25FEA, #EE4476, #ED6D10);
            filter: blur(20px);
            opacity: 0.3;
            pointer-events: none;
            z-index: 0;
        }

        .inner-content {
            position: relative;
            z-index: 1;
            background: #000000; /* Changed to black */
            border-radius: 20px;
            padding-top: 60px ;
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-title {
            font-family: 'Inter', sans-serif;
            font-size: 50px;
            color: #ffffff; /* Changed to white */
            font-weight: 750;
            line-height: 1.2;
        }

        .cards-container {
            display: flex;
            justify-content: center;
        }

        .work-card {
            width: 400px;
            height: 400px;
            margin: 0 40px;
        }

        .card-inner {
            background-color: #1a1a1a; /* Changed to dark */
            border-radius: 16px;
            padding: 24px;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card-inner:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .card-content {
            text-align: center;
            padding: 25px 0;
        }

        .card-title {
            font-family: 'Inter', sans-serif;
            font-size: 22px;
            color: #ffffff; /* Changed to white */
            font-weight: 700;
            margin-bottom: 30px;
        }

        .highlight-forge {
            background: linear-gradient(45deg, #F97316, #93440D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            cursor: pointer;
            text-decoration: underline;
            font-size: 22px;
            font-weight: 700;
            transition: opacity 0.3s;
        }

        .highlight-forge:hover {
            opacity: 0.8;
        }

        .highlight-access {
            background: linear-gradient(45deg, #14B8A6, #09524A);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            cursor: pointer;
            text-decoration: underline;
            font-size: 20px;
            font-weight: 750;
            transition: opacity 0.3s;
        }

        .highlight-access:hover {
            opacity: 0.8;
        }

        .card-description {
            text-align: left;
            margin-left: 25px;
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            color: #FEFFFE; /* Changed to light gray */
            font-weight: 700;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .section-title {
                font-size: 45px;
            }

            .work-card {
                width: 380px;
                height: 380px;
            }
        }

        @media (max-width: 992px) {
            .section-title {
                font-size: 40px;
            }

            .inner-content {
                padding: 50px 20px;
            }

            .work-card {
                width: 350px;
                height: 360px;
                margin: 10px;
            }

            .card-title {
                font-size: 18px;
            }

            .highlight-forge {
                font-size: 20px;
            }

            .highlight-access {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 35px;
            }

            .glow-wrapper {
                padding: 10px;
            }

            .glow-line-border {
                filter: blur(15px);
            }

            .inner-content {
                padding: 40px 15px;
            }

            .work-card {
                width: 100%;
                max-width: 400px;
                height: auto;
                min-height: 320px;
                margin: 10px 0;
            }

            .card-description {
                text-align: center;
                margin-left: 0;
            }

            .desktop-break {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 28px;
            }

            .section-header {
                margin-bottom: 30px;
            }

            .card-inner {
                padding: 20px;
            }

            .card-title {
                font-size: 17px;
            }

            .highlight-forge {
                font-size: 18px;
            }

            .highlight-access {
                font-size: 17px;
            }

            .card-description {
                font-size: 14px;
                padding: 0 10px;
            }
        }

        @media (max-width: 400px) {
            .section-title {
                font-size: 24px;
            }

            .card-title {
                font-size: 16px;
            }

            .card-description {
                font-size: 13px;
            }
        }

        /* Developer Toolkit Carousel */
        .toolkit-carousel-container {
            margin-top: 60px;
        }

        .toolkit-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 5px;
    padding: 10px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    height: 690px;
    align-items: center;
    scroll-behavior: auto; /* Ajoutez cette ligne */
}

        .toolkit-scroll::-webkit-scrollbar {
            display: none;
        }

       .toolkit-card {
flex: 0 0 1100px;
  max-width: 1300px;
  height: 600px;
  scroll-snap-align: center;
  transition: transform 0.5s ease, opacity 0s, filter 0s ;
  transform: scale(0.9);
  filter: blur(3px) brightness(0.8);
  opacity: 0.7;
  z-index: 1;
}

.toolkit-card.active-card {
flex: 0 0 900px;
  max-width: 900px; /* Augmentez de 900px à 1100px */
transform: scale(0.9) ;
 filter: none;
  opacity: 1;
  z-index: 5;
}


        .toolkit-card-inner {
            background-color: #1a1a1a;
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .toolkit-header {
            padding: 0px 60px 40px;
        }

        .toolkit-title {
            font-family: 'Inter', sans-serif;
            font-size: 30px;
            color: #000000; /* Changed to white */
            font-weight: 700;
            margin-bottom: 15px;
        }

        .toolkit-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 26px;
            color: #000000; /* Changed to light gray */
            font-weight: 700;
        }

        .tech-buttons-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
            justify-content: center;
            flex-grow: 1;
        }

        .tech-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .tech-button {
            display: flex;
            align-items: center;
            background-color: #ffffff; /* Changed to darker gray */
            border-radius: 50px;
            padding: 8px 16px;
            gap: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tech-button:hover {
            background-color: #ffffff; /* Darker hover state */
            transform: translateY(-2px);
        }

        .tech-button img {
            width: 28px;
            height: 28px;
        }

        .tech-button span {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            color: #000000; /* Changed to white */
            font-weight: 500;
        }

        /* Timeline specific */
        .timeline-container {
            padding-left: 100px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            justify-content: center;
            flex-grow: 1;
        }

        .timeline-item {
            display: flex;
            align-items: center;
            background-color: #ffffff; /* Changed to darker gray */
            border-radius: 50px;
            padding: 15px 25px;
            gap: 20px;
            width: fit-content;
        }

        .timeline-icon {
    width: 35px;
    height: 35px;
    filter: none; /* Icônes noires */
}

        .timeline-text {
            font-family: 'Inter', sans-serif;
            font-size: 30px;
            color: #000000; /* Changed to white */
            font-weight: 500;
        }

        /* Navigation */
        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .nav-link {
            font-family: 'Inter', sans-serif;
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(90deg, #1658B6, #169AB6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .nav-link:hover {
            opacity: 0.7;
        }

        .nav-link.active {
            background: linear-gradient(90deg, #EF4ACA, #FD5823);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .toolkit-card {
                flex: 0 0 80%;
            }

            .toolkit-title {
                font-size: 30px;
            }

            .toolkit-subtitle {
                font-size: 22px;
            }
        }

        @media (max-width: 768px) {
            .toolkit-card {
                flex: 0 0 90%;
                height: auto;
                min-height: 500px;
            }

            .toolkit-header {
                padding: 30px;
            }

            .toolkit-title {
                font-size: 24px;
            }

            .toolkit-subtitle {
                font-size: 18px;
            }

            .tech-button span {
                font-size: 16px;
            }

            .timeline-container {
                padding-left: 30px;
            }

            .timeline-text {
                font-size: 24px;
            }

            .nav-link {
                font-size: 20px;
            }
        }

        @media (max-width: 576px) {
            .toolkit-card {
                flex: 0 0 95%;
            }

            .tech-button {
                padding: 6px 12px;
            }

            .tech-button img {
                width: 20px;
                height: 20px;
            }

            .tech-button span {
                font-size: 14px;
            }

            .timeline-text {
                font-size: 20px;
            }

            .timeline-icon {
                width: 25px;
                height: 25px;
            }
        }

        .master-stack-container {
            margin-top: 100px;
            padding: 150px 0;
            position: relative;
            background:#171617;
            border-radius: 0 0 20px 20px;
        }

        .master-stack-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20%;
            right: 20%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); /* Changed to white */
        }

        .master-stack-content {
            text-align: start;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .master-title {
            font-family: 'Inter', sans-serif;
            font-size: 48px;
            font-weight: 800;
            color: #ffffff; /* Changed to white */
            margin-bottom: 60px;
            line-height: 1.2;
            text-align:center;
        }

        .master-description {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #cccccc; /* Changed to light gray */
            line-height: 1.8;
            letter-spacing: 0.2px;
        }

        /* Animation */
        .master-stack-content {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.3s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .master-stack-container {
                margin-top: 60px;
                padding: 50px 0;
            }

            .master-title {
                font-size: 40px;
            }

            .master-description {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .master-title {
                font-size: 32px;
            }

            .master-description {
                font-size: 15px;
                line-height: 1.7;
            }

            .master-stack-container::before {
                left: 10%;
                right: 10%;
            }
        }

        @media (max-width: 576px) {
            .master-stack-container {
                margin-top: 40px;
                padding: 40px 0;
            }

            .master-title {
                font-size: 26px;
                margin-bottom: 20px;
            }

            .master-description {
                font-size: 14px;
            }
        }

        @media (max-width: 400px) {
            .master-title {
                font-size: 22px;
            }

            .master-description {
                font-size: 13px;
                line-height: 1.6;
            }
        }

        /* Machine Power Section */
        .machine-power-section {
            background: #000000;
            padding: 100px 0;
            margin-top:130px;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .main-title {
            font-family: 'Inter', sans-serif;
            font-size: 58px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 30px;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .main-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 25px;
            font-weight: 500;
            color: #ffffff;
            line-height: 1.6;
            margin: 0 auto;
        }

        /* Content Layout - 30% texte, 70% image */
        .content-grid {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        /* Features List - 30% */
        .features-list {
            width: 30%;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .feature-item:nth-child(1) { animation-delay: 0.2s; }
        .feature-item:nth-child(2) { animation-delay: 0.4s; }
        .feature-item:nth-child(3) { animation-delay: 0.6s; }

        .feature-icon {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .feature-content h3 {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .feature-highlight {
            background: linear-gradient(45deg, #4CAF50, #76FF03);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        .feature-content p {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: #888888;
            line-height: 1.6;
        }

        /* Machine Visual - 70% */
        .machine-visual {
            width: 100%;
            position: relative;
            justify-content: center;
            align-items: center;
        }

        .machine-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            height: 450px;
        }

        .machine-image {
            width: 150%;
            height: 100%;
            object-fit: contain;
        }

        /* Section Journey */
        .journey-section {
            background: #000;
            padding: 80px 0;
        }

        .journey-card {
            background: #1a1a1a;
            border-radius: 16px;
            padding: 40px 30px;
            color: #fff;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            text-align: left;
            position: relative;
        }

        .journey-title {
            font-family: 'Inter', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .journey-text {
            font-size: 24px;
            line-height: 1.6;
            color: #FFFFFF;
            font-weight: 500;
            margin-bottom: 40px;
            padding-top:20px;
        }

        .journey-btn-wrapper {
            text-align: right;
        }

        .journey-btn {
                        width:150px;

            display: inline-block;
            padding: 10px 32px;
            font-size: 16px;
            font-weight: 600;
            text-align:center;
            border-radius: 30px;
            color: #fff;
            text-decoration: none;
            background: #000;
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            z-index: 1;
        }

        .journey-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 30px;
            padding: 2px;
            background: linear-gradient(90deg, #0170E3, #0170E3, #0170E3, #0170E3);

            mask-composite: exclude;
            z-index: -1;
        }



        /* Responsive Design for Machine Power Section */
        @media (max-width: 1200px) {
            .main-title {
                font-size: 48px;
            }

            .main-subtitle {
                font-size: 18px;
            }

            .machine-container {
                 max-width: 800px; /* était 600px */
    height: 600px;
            }
        }

        @media (max-width: 992px) {
            .machine-power-section {
                padding: 80px 0;
            }

            .main-title {
                font-size: 42px;
            }

            .machine-container {
                max-width: 450px;
                height: 340px;
            }

            .feature-content h3 {
                font-size: 15px;
            }

            .feature-content p {
                font-size: 12px;
            }
        }

        @media (max-width: 768px) {
            .machine-power-section {
                padding: 60px 0;
            }

            .section-header {
                margin-bottom: 50px;
            }

            .main-title {
                font-size: 36px;
            }

            .main-subtitle {
                font-size: 16px;
            }

            .content-grid {
                flex-direction: column;
                gap: 40px;
            }

            .features-list,
            .machine-visual {
                width: 100%;
            }

            .machine-visual {
                order: -1;
            }

            .machine-container {
                max-width: 400px;
                height: 300px;
            }

            .features-list {
                gap: 30px;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }

            .main-title {
                font-size: 28px;
            }

            .main-subtitle {
                font-size: 15px;
            }

            .machine-container {
                max-width: 320px;
                height: 240px;
            }

            .feature-icon {
                width: 36px;
                height: 36px;
            }

            .feature-item {
                gap: 12px;
            }

            .feature-content h3 {
                font-size: 14px;
            }

            .feature-content p {
                font-size: 11px;
            }
        }

        @media (max-width: 400px) {
            .main-title {
                font-size: 24px;
                line-height: 1.2;
            }

            .main-subtitle {
                font-size: 14px;
            }

            .machine-container {
                max-width: 280px;
                height: 210px;
            }
        }

                        .login-btn {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background-color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-left: 30px;
}

.login-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    color: #FFFFFF;
}

/* Responsive pour le bouton login */
@media (max-width: 1199px) {
    .login-btn {
        margin-left: 20px;
        font-size: 15px;
        padding: 10px 20px;
    }
}

@media (max-width: 991px) {
    .login-btn {
        margin-left: 15px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Mobile login button */
.mobile-login-btn {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #000000;
    padding: 12px 24px;
    text-decoration: none;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

.mobile-login-btn:hover {
    background-color: #333333;
    color: #FFFFFF;
}

.carousel-descriptions {
    text-align: center;
    margin-top: 30px;
    min-height: 80px;
    position: relative;
}

.carousel-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #616160;
    font-weight: 700;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.carousel-desc.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-desc {
        font-size: 16px;
    }

    .carousel-descriptions {
        min-height: 100px;
    }
}

@media (max-width: 576px) {
    .carousel-desc {
        font-size: 14px;
    }
}









/* Everything Section */
.everything-section {
    background-color: #000000;
    padding: 80px 0;
    overflow: hidden;
}

.everything-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 100px;
    text-align: center;
}

.macbook-wrapper {
    width: 100%;
}

.macbook-image {
    width: 100%;
    height: auto;
    display: block;
}

.everything-text-content {
    padding-left: 40px;
    /* Retire padding-top: 70px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.flow-badge {
    margin-bottom: 20px;
}

.flow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-135deg, #331C6A, #9467BF, #C3A8D2);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    width: 60px;
    height: 60px;
    border-radius: 12px; /* Carré arrondi */
}

.everything-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 20px;
}

.everything-subdescription {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    background: linear-gradient(90deg, #FFE0FC, #C583EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: #A855F7;
    font-weight: 500;
}

.light-text {
    color: #9CA3AF;
    font-weight: 400;
}

/* Everything Section Responsive */
@media (max-width: 991px) {
    .everything-section {
        padding: 60px 0;
    }
    
    .everything-title {
        font-size: 36px;
    }
    
    .everything-text-content {
        padding-left: 0;
        text-align: center;
        margin-top: 40px;
    }
    
    .flow-badge {
        display: flex;
        justify-content: center;
    }
    
    .everything-description br,
    .everything-subdescription br {
        display: none;
    }
}

@media (max-width: 768px) {
    .everything-title {
        font-size: 32px;
    }
    
    .everything-description {
        font-size: 16px;
    }
    
    .everything-subdescription {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .everything-section {
        padding: 40px 0;
    }
    
    .everything-title {
        font-size: 28px;
    }
}

/* Real Talk Section */
.realtalk-section {
    background-color: #000000;
    padding: 80px 0;
    padding-top: 145px; /* Ajoute ceci */
    overflow: hidden;
}

.realtalk-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 100px;
    text-align: center;
}

.realtalk-text-content {
    padding-right: 20px;
}

.niro-badge {
    margin-bottom: 20px;
}

.niro-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
        background: linear-gradient(-135deg, #04136E, #3D6BD6, #83B2E1);

    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    width: 60px;
    height: 60px;
    border-radius: 12px;
}


.realtalk-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 20px;
}

.realtalk-subdescription {
   font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    background: linear-gradient(90deg, #E2F5EE, #79A5B3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.teal-text {
    color: #14B8A6;
    font-weight: 500;
}

.realtalk-macbook-wrapper {
    width: 100%;
}

.realtalk-macbook-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Real Talk Section Responsive */
@media (max-width: 991px) {
    .realtalk-section {
        padding: 60px 0;
    }
    
    .realtalk-title {
        font-size: 36px;
    }
    
    .realtalk-text-content {
        padding-right: 0;
        text-align: center;
        order: 2;
        margin-top: 40px;
    }
    
    .niro-badge {
        display: flex;
        justify-content: center;
    }
    
    .realtalk-description br,
    .realtalk-subdescription br {
        display: none;
    }
    
    .realtalk-macbook-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .realtalk-title {
        font-size: 32px;
    }
    
    .realtalk-description {
        font-size: 16px;
    }
    
    .realtalk-subdescription {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .realtalk-section {
        padding: 40px 0;
    }
    
    .realtalk-title {
        font-size: 28px;
    }
}

/* Built-In-Intelligence Section */
.builtin-section {
   background-color: #000000;
    padding: 80px 0;
    padding-top: 145px;
    padding-bottom: 145px; /* Ajoute ceci */
    overflow: hidden;
}

.builtin-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 100px;
    text-align: center;
}

.builtin-macbook-wrapper {
    width: 100%;
}

.builtin-macbook-image {
    width: 100%;
    height: auto;
    display: block;
}

.builtin-text-content {
padding-left: 40px;
}

.nova-badge {
    margin-bottom: 20px;
}

.nova-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-135deg, #124D68, #168193, #9EE0D1);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.builtin-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 20px;
}

.builtin-subdescription {
  font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    background: linear-gradient(90deg, #E1E4FE, #83A0EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blue-text {
    color: #3B82F6;
    font-weight: 500;
}

/* Built-In-Intelligence Section Responsive */
@media (max-width: 991px) {
    .builtin-section {
        padding: 60px 0;
    }
    
    .builtin-title {
        font-size: 36px;
    }
    
    .builtin-text-content {
        padding-left: 0;
        text-align: center;
        margin-top: 40px;
    }
    
    .nova-badge {
        display: flex;
        justify-content: center;
    }
    
    .builtin-description br,
    .builtin-subdescription br {
        display: none;
    }
}

@media (max-width: 768px) {
    .builtin-title {
        font-size: 32px;
    }
    
    .builtin-description {
        font-size: 16px;
    }
    
    .builtin-subdescription {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .builtin-section {
        padding: 40px 0;
    }
    
    .builtin-title {
        font-size: 28px;
    }
}

/* Modal Styles */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.custom-modal {
    background: #1C1D1E;
    border-radius: 20px;
    padding: 40px;
    width: 500px;
    height:500px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.custom-modal-overlay.show .custom-modal {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: #fff;
}

/* Forge Modal */
.modal-header-forge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.modal-icon-forge {
    font-size: 24px;
}

.modal-label-forge {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, #F97316, #93440D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.modal-title-forge {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(90deg, #FF954B, #93440D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    line-height: 1.3;
}

.modal-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #FEFFFE;
    line-height: 1.7;
    font-weight: 600;
}

/* Access Modal */
.modal-header-access {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.modal-icon-access {
    font-size: 24px;
}

.modal-label-access {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(45deg, #14B8A6, #09524A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-title-access {
    font-family: 'Inter', sans-serif;
    font-size: 27px;
    font-weight: 700;
    background: linear-gradient(90deg, #14B8A6, #09524A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    line-height: 1.3;
}

.modal-text-with-emoji {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #FEFFFE;
    line-height: 2;
    font-weight: 600;
}

.modal-text-with-emoji span {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 576px) {
    .custom-modal {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal-title-forge,
    .modal-title-access {
        font-size: 20px;
    }
    
    .modal-text,
    .modal-text-with-emoji {
        font-size: 14px;
    }
}

.access-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.forge-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

#card-toolkit .toolkit-card-inner {
background-image: url('/assets/img/backgrround100.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#card-timeline .toolkit-card-inner {
background-image: url('/assets/img/backgrround101.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#card-learning .toolkit-card-inner {
background-image: url('/assets/img/backgrround100.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.background-text {
    position: absolute !important;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3 !important;
    width: 100%;
    padding: 0 20px;
}

.pb-themesection > .background-text {
    position: absolute !important;
    z-index: 3 !important;
}

.background-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 65px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .background-text h1 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .background-text h1 {
        font-size: 28px;
    }
}



.rotating-text-container {
    position: relative;
    display: inline-block;
    min-width: 200px;
    height: 0.9em;
}

.rotating-word {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
    backface-visibility: hidden;
}

.rotating-word.active {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.rotating-word.exit {
    opacity: 0;
    transform: translateY(-50px) rotateX(90deg);
}

.word-code {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.word-voice {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.word-world {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   BUILTIN SECTION - Grands écrans
   ======================================== */

/* Écrans très grands (1400px et plus) */
@media (min-width: 1400px) {
    .builtin-title {
        font-size: 58px;
    }
    
    .builtin-description {
        font-size: 22px;
    }
    
    .builtin-subdescription {
        font-size: 20px;
    }
    
    .builtin-macbook-wrapper {
        width: 90%;
    }
    
    .nova-icon {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
}

/* Écrans extra larges (1600px et plus) */
@media (min-width: 1600px) {
    .builtin-title {
        font-size: 65px;
    }
    
    .builtin-description {
        font-size: 24px;
    }
    
    .builtin-subdescription {
        font-size: 22px;
    }
    
    .builtin-macbook-wrapper {
        width: 95%;
    }
    
    .nova-icon {
        width: 60px;
        height: 60px;
        font-size: 17px;
    }
}

/* Écrans 4K et ultra-larges (1920px et plus) */
@media (min-width: 1920px) {
    .builtin-title {
        font-size: 72px;
    }
    
    .builtin-description {
        font-size: 26px;
    }
    
    .builtin-subdescription {
        font-size: 24px;
    }
    
    .builtin-section .container-fluid {
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .nova-icon {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}


/* ========================================
   EVERYTHING SECTION - Grands écrans (mise à jour)
   ======================================== */

/* Écrans très grands (1400px et plus) */
@media (min-width: 1400px) {
    .everything-title {
        font-size: 58px;
    }
    
    .everything-description {
        font-size: 22px;
    }
    
    .everything-subdescription {
        font-size: 20px;
    }
    
    .macbook-wrapper {
        width: 90%;
    }
    
    .flow-icon {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
}

/* Écrans extra larges (1600px et plus) */
@media (min-width: 1600px) {
    .everything-title {
        font-size: 65px;
    }
    
    .everything-description {
        font-size: 24px;
    }
    
    .everything-subdescription {
        font-size: 22px;
    }
    
    .macbook-wrapper {
        width: 95%;
    }
    
    .flow-icon {
        width: 60px;
        height: 60px;
        font-size: 17px;
    }
}

/* Écrans 4K et ultra-larges (1920px et plus) */
@media (min-width: 1920px) {
    .everything-title {
        font-size: 72px;
    }
    
    .everything-description {
        font-size: 26px;
    }
    
    .everything-subdescription {
        font-size: 24px;
    }
    
    .everything-section .container-fluid {
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .flow-icon {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

@media (min-width: 1400px) {
    .realtalk-title {
        font-size: 58px;
    }
    
    .realtalk-description {
        font-size: 22px;
    }
    
    .realtalk-subdescription {
        font-size: 20px;
    }
    
    .realtalk-macbook-wrapper {
        width: 90%;
    }
    
    .niro-icon {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
}

/* Écrans extra larges (1600px et plus) */
@media (min-width: 1600px) {
    .realtalk-title {
        font-size: 65px;
    }
    
    .realtalk-description {
        font-size: 24px;
    }
    
    .realtalk-subdescription {
        font-size: 22px;
    }
    
    .realtalk-macbook-wrapper {
        width: 95%;
    }
    
    .niro-icon {
        width: 60px;
        height: 60px;
        font-size: 17px;
    }
}

/* Écrans 4K et ultra-larges (1920px et plus) */
@media (min-width: 1920px) {
    .realtalk-title {
        font-size: 72px;
    }
    
    .realtalk-description {
        font-size: 26px;
    }
    
    .realtalk-subdescription {
        font-size: 24px;
    }
    
    .realtalk-section .container-fluid {
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .niro-icon {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

.comparison-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    overflow: hidden;
   
    cursor: ew-resize;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 97%;
    height: 104%; /* Augmenté - ajuste cette valeur : 105%, 110%, 115%, 120% */
    object-fit: cover;
}



@media (min-width: 1400px) and (max-width: 1600px) {
    .comparison-before,
    .comparison-after {
        width: 102%;
        height: 103%;
        top: 22px;
    }
    
      .comparison-slider {
        height: 103%; /* Même que les images */
        top: 22px;    /* Même que les images */
    }
}



.comparison-before {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.comparison-after {
    clip-path: inset(0 0 0 50%);
    z-index: 1;
}

/* Le slider doit aussi s'adapter */
.comparison-slider {
    position: absolute;
    left: 50%;
    top: 22px;  /* Même top que les images */
    width: 4px;
    height: 104%; /* Même height que les images (pas 110%) */
    background: linear-gradient(180deg, #14B8A6, #09524A);
    cursor: ew-resize;
    z-index: 3;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
}

.comparison-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #14B8A6, #09524A);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-slider-handle::before,
.comparison-slider-handle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.comparison-slider-handle::before {
    border-width: 8px 10px 8px 0;
    border-color: transparent #fff transparent transparent;
    left: 10px;
}

.comparison-slider-handle::after {
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #fff;
    right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .comparison-container {
        height: 400px;
    }
    
    .comparison-slider-handle {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .comparison-container {
        height: 350px;
        max-width: 100%;
    }
    
    .comparison-slider-handle {
        width: 35px;
        height: 35px;
    }
    
    .comparison-slider-handle::before {
        border-width: 6px 8px 6px 0;
        left: 8px;
    }
    
    .comparison-slider-handle::after {
        border-width: 6px 0 6px 8px;
        right: 8px;
    }
}

@media (max-width: 576px) {
    .comparison-container {
        height: 280px;
    }
    
    .comparison-slider-handle {
        width: 30px;
        height: 30px;
    }
}

.comparison-background {
    position: absolute;
    top: -50px; /* Dépasse en haut de 50px */
    left: -50px; /* Dépasse à gauche de 50px */
    width: calc(100% + 100px); /* 50px de chaque côté */
    height: calc(100% + 150px); /* 50px en haut + 100px en bas */
    object-fit: cover;
    z-index: 0;
    border-radius: 20px;
}

/* Mettre les images before/after au-dessus du background */
.comparison-before {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.comparison-after {
    clip-path: inset(0 0 0 50%);
    z-index: 1;
}

.comparison-slider {
    z-index: 3;
}


.faq-item {
    background-color: #2a2a2a;
    border-radius: 0; /* Pas de border-radius par défaut */
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0 !important; /* Supprimer l'espace entre les items */
    border-bottom: 1px solid #3a3a3a; /* Ligne de séparation entre les questions */
}

/* Premier élément - arrondi en haut */
.faq-item:first-child {
    border-radius: 16px 16px 0 0;
}

/* Dernier élément - arrondi en bas */
.faq-item:last-child {
    border-radius: 0 0 16px 16px;
    border-bottom: none; /* Pas de bordure en bas du dernier */
}

/* Si un seul élément - arrondi partout */
.faq-item:only-child {
    border-radius: 16px;
}

.faq-button {
    background-color: #2a2a2a;
    border-radius: 0; /* Retirer le border-radius du bouton */
    border: none;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Responsive - ajuster pour mobile */
@media (max-width: 576px) {
    .faq-item:first-child {
        border-radius: 12px 12px 0 0;
    }
    
    .faq-item:last-child {
        border-radius: 0 0 12px 12px;
    }
    
    .faq-item:only-child {
        border-radius: 12px;
    }
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.linkedin-btn {
    width: 40px;
    height: 40px;
    background-color: #0A66C2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.linkedin-btn:hover {
    background-color: #004182;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 576px) {
    .linkedin-btn {
        width: 35px;
        height: 35px;
    }
    
    .linkedin-btn svg {
        width: 18px;
        height: 18px;
    }
}