:root {
    --primary: #4361EE;
    --secondary: #7209B7;
    --accent: #F72585;
    --light: #F8F9FA;
    --dark: #212529;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-reverse: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 10px 30px rgba(67, 97, 238, 0.15);
    --shadow-hover: 0 20px 40px rgba(114, 9, 183, 0.25);
    --shadow-3d: 0 25px 50px rgba(0, 0, 0, 0.4);
}

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

html {
    font-size: 100%;
    /* Base pour le zoom */
    -webkit-text-size-adjust: 100%;
    /* Empêche le redimensionnement du texte sur iOS */
    text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(10px, 2vw, 20px);
    /* Padding adaptatif */
}

/* Navigation Simple et Fixe */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    /* Supprimer la hauteur fixe */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    /* Réduction de 25% par rapport à 1rem */
    min-height: 60px;
    /* Hauteur minimale réduite */
}

.logo {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    flex-shrink: 0;
}

.logo img {
    height: auto;
    width: auto;
    /* Taille optimale pour desktop */
    max-height: 100px;
    max-width: 100px;
    /* Pour les très grands écrans */
    min-height: 50px;
    min-width: 50px;
    transition: var(--transition);
    object-fit: contain;
    /* Améliore la qualité d'affichage */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    /* Réduction de ~17% par rapport à 1.5rem */
    align-items: center;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
    font-size: 0.875rem;
    /* Réduction de ~12.5% par rapport à 1rem */
    padding: 0.5rem 0;
    /* Réduction de 37.5% par rapport à 0.8rem */
    line-height: 1;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: 0.25rem;
    /* Position ajustée */
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
    /* Réduction de 25% par rapport à 1rem */
    align-items: center;
}

.cont-btn {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    /* Réduction de ~37.5% vertical, ~37.5% horizontal */
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.75rem;
    /* Réduction de ~25% par rapport à 1rem */
    text-decoration: none;
    text-align: center;
    min-height: 2.25rem;
    /* Réduction de ~32% par rapport à 3.3rem */
    line-height: 1;
}

.hero-buttons {
    margin: 2rem 0;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(67, 97, 238, 0.4);
    }
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    background: var(--gradient-reverse);
    transform: translateY(-2px);
    /* Réduction légère de l'effet hover */
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    /* Réduction légère de l'effet hover */
}

/* Ajustement de l'espacement du hero pour la navbar réduite */
.hero {
    padding-top: 5.5rem;
    /* Réduction de l'espace en haut */
}

/* Navigation Mobile Simple */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.mobile-active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .nav-buttons {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-buttons.mobile-active {
        display: flex;
        justify-content: center;
    }

    .nav-buttons .btn {
        width: 90%;
        max-width: 300px;
        justify-content: center;
    }

    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--gradient);
        border-radius: 8px;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }
}

/* Media query pour mobile - garder les tailles normales */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
        /* Retour au padding normal */
        min-height: auto;
    }

    .logo {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }

    .nav-links {
        gap: clamp(1.25rem, 3vw, 1.875rem);
    }

    .nav-links a {
        font-size: clamp(0.9rem, 2vw, 1rem);
        padding: 0.625rem 0;
    }

    .nav-buttons {
        gap: clamp(0.625rem, 2vw, 0.9375rem);
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: clamp(0.8rem, 1.5vw, 0.9rem);
        min-height: 2.75rem;
    }

    .hero {
        padding-top: 6rem;
        /* Espace normal pour mobile */
    }

    /* Cacher les nav-links et boutons sur mobile si nécessaire */
    .nav-links {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }
}

.btn {
    display: inline-block;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 30px);
    /* Padding adaptatif */
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    /* Taille de police adaptative */
    text-decoration: none;
    text-align: center;
    min-height: 44px;
    /* Taille minimale pour l'accessibilité */
    min-width: 44px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    background: var(--gradient-reverse);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.mobile-menu {
    display: none;
    font-size: clamp(1.3rem, 4vw, 1.5rem);
    /* Taille adaptative */
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        url('https://i.pinimg.com/736x/1c/25/cd/1c25cdbf6270341d452eb990b91f55d3.jpg') no-repeat center center/cover;
    color: white;
    position: relative;
    padding: clamp(80px, 10vw, 100px) 0 clamp(60px, 8vw, 80px);
    /* Padding adaptatif */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.pinimg.com/736x/1c/25/cd/1c25cdbf6270341d452eb990b91f55d3.jpg') no-repeat center center/cover;
    opacity: 0;
    animation: backgroundSwitch 20s infinite;
}

@keyframes backgroundSwitch {

    0%,
    45% {
        opacity: 0;
    }

    50%,
    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 60px);
    /* Gap adaptatif */
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: clamp(6px, 1.5vw, 8px) clamp(15px, 3vw, 20px);
    /* Padding adaptatif */
    border-radius: 30px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    /* Taille adaptative */
    font-weight: 600;
    margin-bottom: clamp(15px, 3vw, 20px);
    /* Margin adaptatif */
    backdrop-filter: blur(10px);
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    /* Taille de police très adaptative */
    font-weight: 800;
    margin-bottom: clamp(10px, 2vw, 15px);
    /* Margin adaptatif */
    line-height: 1.1;
    animation: titleFloat 6s ease-in-out infinite;
}

@keyframes titleFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    /* Taille adaptative */
    margin-bottom: clamp(20px, 3vw, 25px);
    /* Margin adaptatif */
    opacity: 0.9;
    animation: subtitleFade 2s ease-out;
}

@keyframes subtitleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    /* Taille adaptative */
    line-height: 1.7;
    margin-bottom: clamp(25px, 4vw, 30px);
    /* Margin adaptatif */
    opacity: 0.9;
    animation: descriptionSlide 1.5s ease-out 0.5s both;
}

@keyframes descriptionSlide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

/* Élément 3D avec effet déformé et ombre portée */
.highlight-text-3d {
    font-weight: 700;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    /* Taille adaptative */
    margin-bottom: clamp(25px, 4vw, 30px);
    /* Margin adaptatif */
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    padding: clamp(15px, 3vw, 20px) clamp(20px, 4vw, 25px);
    /* Padding adaptatif */
    border-radius: 20px;
    position: relative;
    transform-style: preserve-3d;
    animation:
        gradientShift 4s ease infinite,
        text3dFloat 6s ease-in-out infinite,
        distortEffect 8s ease-in-out infinite;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes text3dFloat {

    0%,
    100% {
        transform:
            perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(0px) scale(1);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    50% {
        transform:
            perspective(1000px) rotateX(-3deg) rotateY(-3deg) translateY(-10px) scale(1.02);
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.2);
    }
}

@keyframes distortEffect {

    0%,
    100% {
        filter: none;
        transform:
            perspective(1000px) rotateX(5deg) rotateY(5deg);
    }

    25% {
        filter: brightness(1.1) contrast(1.1);
        transform:
            perspective(1000px) rotateX(3deg) rotateY(7deg) skewX(-1deg);
    }

    75% {
        filter: brightness(1.05) contrast(1.05);
        transform:
            perspective(1000px) rotateX(7deg) rotateY(3deg) skewY(1deg);
    }
}

.email-form {
    display: flex;
    gap: clamp(12px, 2vw, 15px);
    /* Gap adaptatif */
    margin-bottom: clamp(20px, 3vw, 25px);
    /* Margin adaptatif */
    flex-wrap: wrap;
    animation: formSlide 1s ease-out 1s both;
}

@keyframes formSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.email-input {
    flex: 1;
    min-width: min(250px, 90vw);
    /* Largeur minimale adaptative */
    padding: clamp(12px, 2vw, 15px) clamp(15px, 3vw, 20px);
    /* Padding adaptatif */
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    /* Taille adaptative */
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    min-height: 50px;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.form-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    /* Taille adaptative */
    margin-bottom: clamp(25px, 4vw, 30px);
    /* Margin adaptatif */
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 8px);
    /* Gap adaptatif */
    animation: noteFade 1.5s ease-out 1.5s both;
}

@keyframes noteFade {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

.form-note i {
    color: var(--accent);
}

.steps-indicator {
    display: flex;
    gap: clamp(12px, 2vw, 15px);
    /* Gap adaptatif */
    margin-top: clamp(30px, 5vw, 40px);
    /* Margin adaptatif */
    animation: stepsAppear 2s ease-out 2s both;
}

@keyframes stepsAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.step-dot {
    width: clamp(10px, 2vw, 12px);
    /* Taille adaptative */
    height: clamp(10px, 2vw, 12px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    cursor: pointer;
    min-width: 10px;
    min-height: 10px;
}


.step-dot.active {
    background: white;
    transform: scale(1.2);
}

.step-dot:hover {
    background: var(--accent);
}

.hero-buttons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    /* Gap adaptatif */
    margin-top: clamp(25px, 4vw, 30px);
    /* Margin adaptatif */
    flex-wrap: wrap;
    animation: buttonsSlide 1s ease-out 0.8s both;
}

@keyframes buttonsSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Mockup Styles */
.hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: mockupFloat 8s ease-in-out infinite;
}

@keyframes mockupFloat {

    0%,
    100% {
        transform:
            perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0px);
    }

    50% {
        transform:
            perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(-20px);
    }
}

.phone-mockup2 {
    width: clamp(250px, 30vw, 300px);
    /* Largeur adaptative */
    height: clamp(500px, 60vw, 600px);
    /* Hauteur adaptative */
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: clamp(12px, 2vw, 15px);
    /* Padding adaptatif */
    position: relative;
    box-shadow:
        var(--shadow-3d),
        0 0 0 2px rgba(255, 255, 255, 0.05),
        inset 0 0 30px rgba(0, 0, 0, 0.9);
    border: 1px solid #444;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.phone-mockup2:hover {
    transform: rotateY(-8deg) rotateX(3deg) translateY(-10px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: var(--transition);
}

.phone-mockup2:hover .mockup-image {
    transform: scale(1.1);
}

.screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(67, 97, 238, 0.2) 0%,
            rgba(114, 9, 183, 0.2) 100%);
    border-radius: 30px;
}

.phone-notch {
    position: absolute;
    top: clamp(15px, 3vw, 20px);
    /* Position adaptative */
    left: 50%;
    transform: translateX(-50%);
    width: clamp(140px, 20vw, 160px);
    /* Largeur adaptative */
    height: clamp(20px, 3vw, 25px);
    /* Hauteur adaptative */
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 2;
    box-shadow: inset 0 -2px 5px rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE DESIGN */

/* Tablettes */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .email-form {
        justify-content: center;
    }

    .steps-indicator {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .phone-mockup2 {
        width: 280px;
        height: 560px;
    }
}

/* Navigation Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: clamp(15px, 3vw, 20px);
        /* Padding adaptatif */
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: clamp(12px, 2vw, 15px);
        /* Gap adaptatif */
        z-index: 1000;
    }

    .nav-links.mobile-active {
        display: flex;
    }

    .nav-buttons {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .navbar {
        padding: clamp(12px, 2vw, 15px) 0;
        /* Padding adaptatif */
    }

    .hero {
        padding: clamp(100px, 12vw, 120px) 0 clamp(50px, 6vw, 60px);
        /* Padding adaptatif */
    }
}

/* Mobiles */
@media (max-width: 575px) {
    .container {
        width: 95%;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        /* Taille adaptative mobile */
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        /* Taille adaptative mobile */
    }

    .hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        /* Taille adaptative mobile */
    }

    .highlight-text-3d {
        font-size: clamp(1rem, 3vw, 1.1rem);
        /* Taille adaptative mobile */
        padding: clamp(12px, 3vw, 15px) clamp(15px, 4vw, 20px);
        /* Padding adaptatif mobile */
    }

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

    .btn {
        width: 100%;
        max-width: min(280px, 90vw);
        /* Largeur maximale adaptative */
    }

    .email-form {
        flex-direction: column;
    }

    .email-input {
        min-width: auto;
    }

    .phone-mockup2 {
        width: clamp(220px, 50vw, 250px);
        /* Largeur adaptative mobile */
        height: clamp(440px, 100vw, 500px);
        /* Hauteur adaptative mobile */
    }
}


/* Très petits écrans */
@media (max-width: 380px) {
    .phone-mockup2 {
        width: 220px;
        height: 440px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero {
        padding: 100px 0 40px;
    }
}



/* Très petits écrans */
@media (max-width: 380px) {
    .phone-mockup2 {
        width: clamp(200px, 60vw, 220px);
        /* Largeur très adaptative */
        height: clamp(400px, 120vw, 440px);
        /* Hauteur très adaptative */
    }

    .logo {
        font-size: clamp(1.3rem, 5vw, 1.5rem);
        /* Taille adaptative très petit écran */
    }

    .hero {
        padding: clamp(80px, 15vw, 100px) 0 clamp(40px, 8vw, 40px);
        /* Padding adaptatif très petit écran */
    }
}

/* end of hero-style */
/* Gestion spécifique du zoom */
@media (max-width: 1200px) {
    html {
        font-size: 95%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 90%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 85%;
    }
}

/* Support pour le zoom navigateur */
@supports (zoom: 1) {
    .container {
        zoom: 1;
    }
}

/* Amélioration de l'accessibilité au zoom */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Les autres sections (Concept, Features, Discover, Screens, Benefits, Footer) */
/* Toutes ces sections utilisent déjà les mêmes principes d'adaptation */

/* Section Concept */
.concept-section {
    padding: clamp(60px, 8vw, 100px) 0;
    /* Padding adaptatif */
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.concept-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, transparent 70%);
    animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-10px, -10px) rotate(1deg);
    }

    50% {
        transform: translate(0, -20px) rotate(0deg);
    }

    75% {
        transform: translate(10px, -10px) rotate(-1deg);
    }
}

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

.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
    }

    50% {
        box-shadow: 0 12px 35px rgba(67, 97, 238, 0.5);
    }
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Grille des Fonctionnalités */
.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 90vw), 1fr));
    /* Grille adaptative */
    gap: clamp(20px, 4vw, 30px);
    /* Gap adaptatif */
    position: relative;
    z-index: 2;
}

.concept-card {
    background: white;
    padding: clamp(25px, 5vw, 40px) clamp(20px, 4vw, 30px);
    /* Padding adaptatif */
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.1;
    transition: var(--transition);
    z-index: 1;
}

.concept-card:hover::before {
    left: 0;
}

.concept-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow:
        var(--shadow-hover),
        0 0 0 1px rgba(67, 97, 238, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.concept-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.4);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.concept-card:hover .card-title {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-description {
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Points de la Liste */
.features-list {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    transform-style: preserve-3d;
}

.feature-item:hover {
    transform: translateY(-8px) translateZ(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

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

.feature-text {
    flex: 1;
}

.feature-text strong {
    color: var(--primary);
    font-weight: 600;
}

/* Animation des Points */
.bullet-point {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    animation: bulletPulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes bulletPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(67, 97, 238, 0.4);
    }

    50% {
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(67, 97, 238, 0.6);
    }
}

/* CTA Section */
.concept-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--gradient);
    border-radius: 30px;
    color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.concept-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, -20px) scale(1.1);
    }
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: white;
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE DESIGN */
/* Tablettes */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: clamp(30px, 5vw, 50px);
        /* Gap adaptatif */
        text-align: center;
    }

    .email-form {
        justify-content: center;
    }

    .steps-indicator {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .phone-mockup2 {
        width: clamp(240px, 40vw, 280px);
        /* Largeur adaptative */
        height: clamp(480px, 80vw, 560px);
        /* Hauteur adaptative */
    }
}

@media (max-width: 768px) {
    .concept-section {
        padding: 60px 0;
    }

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

    .concept-card {
        padding: 30px 25px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .feature-item {
        padding: 20px;
    }

    .concept-cta {
        padding: 40px 25px;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .concept-section {
        padding: 50px 0;
    }

    .concept-grid {
        grid-template-columns: 1fr;
    }

    .concept-card {
        padding: 25px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .concept-cta {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 1.6rem;
    }
}

/* end of concept */


/* section fonctionnalite */
.features-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
    padding-top: 100px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
    justify-content: center;
}

.features-content {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.features-grid-2 {
    padding-top: 100px;
    flex: 1;
    display: grid;
    /* Active grid */
    grid-template-columns: repeat(4, 1fr);
    /* 4 colonnes de largeur égale */
    gap: 30px;
    perspective: 1000px;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    /* Taille très adaptative */
    font-weight: 800;
    margin-bottom: clamp(15px, 3vw, 20px);
    /* Margin adaptatif */
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 5px;
    background: var(--gradient);
    bottom: -10px;
    left: 0;
    border-radius: 5px;
}

.section-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    /* Taille adaptative */
    color: #666;
    line-height: 1.7;
    max-width: min(600px, 90vw);
    /* Largeur maximale adaptative */
    margin: 0 auto;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: var(--transition);
    padding: 10px;
    border-radius: 10px;
}

.feature-item:hover {
    transform: translateX(5px);
    background: rgba(67, 97, 238, 0.05);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    color: white;
    font-size: 12px;
}

.feature-text {
    color: #555;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: clamp(25px, 3vw, 35px) clamp(20px, 3vw, 30px);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Effets 3D pour écrans larges */
@media (min-width: 1200px) {
    .feature-card:first-child {
        transform: rotateY(-5deg) rotateX(3deg) translateZ(10px);
        box-shadow:
            var(--shadow-3d),
            15px 15px 30px rgba(67, 97, 238, 0.1);
    }

    .feature-card:first-child:hover {
        transform: rotateY(-3deg) rotateX(2deg) translateZ(20px) translateY(-10px);
        box-shadow:
            var(--shadow-hover),
            20px 20px 40px rgba(67, 97, 238, 0.15);
    }

    .feature-card:last-child {
        transform: rotateY(5deg) rotateX(3deg) translateZ(10px);
        box-shadow:
            var(--shadow-3d),
            -15px 15px 30px rgba(114, 9, 183, 0.1);
    }

    .feature-card:last-child:hover {
        transform: rotateY(3deg) rotateX(2deg) translateZ(20px) translateY(-10px);
        box-shadow:
            var(--shadow-hover),
            -20px 20px 40px rgba(114, 9, 183, 0.15);
    }
}

/* Adaptation tablette */
@media (max-width: 1199px) and (min-width: 768px) {
    .features-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:first-child,
    .feature-card:last-child {
        transform: none;
        box-shadow: var(--shadow);
    }

    .feature-card:first-child:hover,
    .feature-card:last-child:hover {
        transform: translateY(-10px);
    }
}

.card-icon {
    width: clamp(60px, 8vw, 70px);
    height: clamp(60px, 8vw, 70px);
    border-radius: 20px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.card-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    top: 0;
    left: 0;
}

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

.card-icon i {
    color: white;
    font-size: clamp(24px, 3vw, 28px);
    position: relative;
    z-index: 1;
}

.card-title {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
    transition: var(--transition);
    line-height: 1.3;
}

.feature-card:hover .card-title {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-description {
    color: #666;
    line-height: 1.6;
    transition: var(--transition);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    flex-grow: 1;
}

.feature-card:hover .card-description {
    color: #555;
}

/* Effet de brillance au survol */
.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.feature-card:hover::after {
    opacity: 1;
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Bouton d'action */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 2vw, 14px) clamp(24px, 3vw, 32px);
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 50px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Points de rupture responsives */

/* Grands écrans (Desktop) */
@media (min-width: 1200px) {
    .features-container {
        gap: 60px;
    }
}

/* Tablettes paysage */
@media (max-width: 1199px) and (min-width: 992px) {
    .features-container {
        gap: 40px;
    }

    .features-grid-2 {
        gap: 25px;
    }
}

/* Tablettes portrait */
@media (max-width: 991px) and (min-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .features-content {
        text-align: center;
        max-width: 600px;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-item {
        justify-content: center;
    }
}

/* Mobiles paysage */
@media (max-width: 767px) and (min-width: 576px) {
    .features-container {
        flex-direction: column;
        gap: 30px;
    }

    .features-grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-content {
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-item {
        justify-content: center;
    }

    .feature-card {
        padding: 25px 20px;
    }
}

/* Mobiles portrait */
@media (max-width: 575px) {
    body {
        padding: 10px;
    }

    .features-section {
        padding: 40px 10px;
    }

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

    .features-grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-content {
        text-align: center;
        min-width: unset;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-item {
        justify-content: center;
        text-align: left;
        margin-bottom: 15px;
    }

    .feature-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }

    .card-icon i {
        font-size: 22px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Très petits écrans */
@media (max-width: 360px) {
    .features-section {
        padding: 30px 5px;
    }

    .feature-card {
        padding: 15px 12px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

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

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 8px;
    }
}

/* Mode paysage sur mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .features-section {
        padding: 30px 20px;
    }

    .features-container {
        gap: 30px;
    }

    .features-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        padding: 20px 15px;
    }
}

/* inteface et steppe application */
.discover-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    width: 100%;
    padding-top: 100px;
}

.discover-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.mockup-container {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    perspective: 1200px;
}

.mockup-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.phone-mockup2-wrapper {
    position: relative;
    transform-style: preserve-3d;
    animation: float3D 8s ease-in-out infinite;
}

.phone-mockup2-wrapper.secondary {
    animation-delay: 2s;
    transform: translateX(40px) rotateY(10deg) rotateX(-5deg);
}

.phone-mockup2 {
    width: clamp(280px, 25vw, 340px);
    height: clamp(560px, 50vw, 680px);
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow:
        var(--shadow-3d),
        0 0 0 2px rgba(255, 255, 255, 0.05),
        inset 0 0 30px rgba(0, 0, 0, 0.9);
    border: 1px solid #444;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.phone-mockup2:hover {
    transform: rotateY(-8deg) rotateX(3deg) translateY(-10px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    filter: brightness(1.1) contrast(1.2) saturate(1.1);
}

.screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(67, 97, 238, 0.2) 0%,
            rgba(114, 9, 183, 0.2) 100%);
    border-radius: 32px;
}

.phone-notch {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(150px, 15vw, 180px);
    height: 25px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 2;
    box-shadow: inset 0 -2px 5px rgba(255, 255, 255, 0.1);
}

.phone-buttons {
    position: absolute;
    right: -8px;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.phone-button {
    width: 6px;
    height: 40px;
    background: linear-gradient(to bottom, #444, #333);
    border-radius: 3px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

.mockup-label {
    text-align: center;
    margin-top: 15px;
}

.mockup-label span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    background-color: rgba(67, 97, 238, 0.1);
}

.steps-container {
    flex: 1;
    min-width: 400px;
    perspective: 1500px;
}

.section-header {
    margin-bottom: clamp(40px, 5vw, 60px);
    transform-style: preserve-3d;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #666;
    line-height: 1.7;
    max-width: 500px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 4vw, 35px);
    transform-style: preserve-3d;
}

.step-item {
    display: flex;
    gap: clamp(20px, 3vw, 30px);
    align-items: flex-start;
    padding: clamp(25px, 4vw, 35px) clamp(20px, 3vw, 30px);
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Effets 3D PRONONCÉS pour les cartes des étapes - Desktop uniquement */
@media (min-width: 1200px) {

    /* Première carte - Forte inclinaison vers la droite */
    .step-item:first-child {
        transform: rotateY(-25deg) rotateX(8deg) translateZ(25px) translateX(-15px);
        box-shadow:
            35px 25px 60px rgba(67, 97, 238, 0.3),
            var(--shadow-3d);
        background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
        border-left: 4px solid var(--primary);
    }

    .step-item:first-child:hover {
        transform: rotateY(-20deg) rotateX(6deg) translateZ(35px) translateX(-10px) translateY(-10px);
        box-shadow:
            45px 35px 80px rgba(67, 97, 238, 0.4),
            var(--shadow-hover);
    }

    /* Carte du milieu - Légère inclinaison */
    .step-item:nth-child(2) {
        transform: rotateY(-5deg) rotateX(3deg) translateZ(10px);
        box-shadow: var(--shadow);
    }

    .step-item:nth-child(2):hover {
        transform: rotateY(-3deg) rotateX(2deg) translateZ(20px) translateY(-8px);
    }

    /* Dernière carte - Forte inclinaison vers la gauche */
    .step-item:last-child {
        transform: rotateY(25deg) rotateX(8deg) translateZ(25px) translateX(15px);
        box-shadow:
            -35px 25px 60px rgba(114, 9, 183, 0.3),
            var(--shadow-3d);
        background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
        border-right: 4px solid var(--secondary);
    }

    .step-item:last-child:hover {
        transform: rotateY(20deg) rotateX(6deg) translateZ(35px) translateX(10px) translateY(-10px);
        box-shadow:
            -45px 35px 80px rgba(114, 9, 183, 0.4),
            var(--shadow-hover);
    }
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
    z-index: 1;
}

.step-item:hover::before {
    transform: scaleY(1);
}

.step-number {
    width: clamp(50px, 6vw, 65px);
    height: clamp(50px, 6vw, 65px);
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
    transform-style: preserve-3d;
}

.step-item:hover .step-number {
    transform: scale(1.2) rotate(12deg) translateZ(5px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.5);
}

.step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
}

.step-content {
    flex: 1;
    transform-style: preserve-3d;
}

.step-title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
    transition: var(--transition);
    transform: translateZ(5px);
}

.step-item:hover .step-title {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateX(8px) translateZ(10px);
}

.step-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transform: translateZ(3px);
}

.step-actions {
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    flex-wrap: wrap;
    transform: translateZ(5px);
}

.btn {
    padding: clamp(10px, 2vw, 12px) clamp(18px, 3vw, 24px);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-reverse);
    transform: translateY(-3px) translateZ(3px);
    box-shadow: 0 15px 30px rgba(114, 9, 183, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.2);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) translateZ(3px);
    box-shadow: 0 12px 25px rgba(67, 97, 238, 0.3);
}

/* Animations */
@keyframes float3D {

    0%,
    100% {
        transform: translateY(0px) rotateY(-10deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-8deg) rotateX(3deg);
    }
}

/* Animation d'apparition 3D pour les cartes */
.step-item {
    opacity: 0;
    animation: slideIn3D 1s ease forwards;
}

.step-item:first-child {
    animation-delay: 0.2s;
    transform: rotateY(-25deg) rotateX(8deg) translateZ(25px) translateX(-100px);
}

.step-item:nth-child(2) {
    animation-delay: 0.4s;
    transform: rotateY(-5deg) rotateX(3deg) translateZ(10px) translateX(-100px);
}

.step-item:last-child {
    animation-delay: 0.6s;
    transform: rotateY(25deg) rotateX(8deg) translateZ(25px) translateX(-100px);
}

@keyframes slideIn3D {
    to {
        opacity: 1;
        transform: rotateY(var(--target-rotation, -25deg)) rotateX(8deg) translateZ(25px) translateX(var(--target-translate, -15px));
    }
}

.phone-mockup2-wrapper {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.2s forwards;
}

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

/* Effet de brillance 3D amélioré */
.step-item::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: rotate(45deg) translateZ(20px);
    transition: var(--transition);
    opacity: 0;
}

.step-item:hover::after {
    opacity: 1;
    animation: shine3D 2s ease;
}

@keyframes shine3D {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg) translateZ(20px);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg) translateZ(20px);
    }
}

/* RESPONSIVE DESIGN AMÉLIORÉ POUR MOBILE */

/* Tablettes paysage et desktop */
@media (min-width: 992px) {
    .discover-container {
        gap: 80px;
    }

    .mockup-stack {
        gap: 40px;
    }
}

/* Tablettes portrait */
@media (max-width: 991px) and (min-width: 768px) {
    .discover-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .mockup-container {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        min-width: 100%;
    }

    .mockup-stack {
        flex-direction: row;
        gap: 40px;
    }

    .phone-mockup2 {
        transform: none;
    }

    .phone-mockup2-wrapper.secondary {
        transform: none;
    }

    .steps-container {
        min-width: 100%;
    }

    /* Désactivation 3D sur tablettes portrait */
    .step-item:first-child,
    .step-item:nth-child(2),
    .step-item:last-child {
        transform: none !important;
        box-shadow: var(--shadow);
    }
}

/* MOBILE - AMÉLIORATIONS SPÉCIFIQUES */

/* Mobiles paysage et portrait */
@media (max-width: 767px) {
    body {
        padding: 10px;
    }

    .discover-section {
        padding: 40px 10px;
    }

    .discover-container {
        flex-direction: column;
        gap: 40px;
    }

    .mockup-container {
        min-width: 100%;
        gap: 30px;
    }

    .mockup-stack {
        gap: 30px;
    }

    .phone-mockup2 {
        width: 280px;
        height: 560px;
        transform: none !important;
    }

    .phone-mockup2-wrapper.secondary {
        transform: none !important;
    }

    .steps-container {
        min-width: 100%;
    }

    /* AMÉLIORATION DES CARTES SUR MOBILE */
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
        margin: 0 10px;
        transform: none !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 20px;
    }

    /* Suppression des effets 3D sur mobile */
    .step-item:first-child,
    .step-item:nth-child(2),
    .step-item:last-child {
        transform: none !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        background: white;
        border: none;
    }

    .step-item:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .step-number {
        align-self: center;
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .step-item:hover .step-number {
        transform: scale(1.1) rotate(8deg);
    }

    .step-title {
        font-size: 1.4rem;
    }

    .step-item:hover .step-title {
        transform: none;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .step-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .step-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-outline {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Mobiles portrait spécifiques */
@media (max-width: 575px) {
    .discover-section {
        padding: 30px 5px;
    }

    .phone-mockup2 {
        width: 250px;
        height: 500px;
    }

    .step-item {
        padding: 20px 15px;
        margin: 0 5px;
        gap: 18px;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* Très petits écrans */
@media (max-width: 360px) {
    .phone-mockup2 {
        width: 220px;
        height: 440px;
    }

    .step-item {
        padding: 18px 12px;
        gap: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.85rem;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* Animation mobile spécifique */
@media (max-width: 767px) {
    .step-item {
        animation: slideInMobile 0.8s ease forwards;
        transform: translateY(30px);
        opacity: 0;
    }

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

    .step-item:first-child {
        animation-delay: 0.1s;
    }

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

    .step-item:last-child {
        animation-delay: 0.3s;
    }
}

/* corrosel screen  */

.screens-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 80px);
    /* Margin adaptatif */
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: clamp(8px, 2vw, 10px) clamp(20px, 4vw, 25px);
    /* Padding adaptatif */
    border-radius: 30px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    /* Taille adaptative */
    font-weight: 600;
    margin-bottom: clamp(15px, 3vw, 20px);
    /* Margin adaptatif */
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
    animation: badgeGlow 3s ease-in-out infinite;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 40px 20px;
    scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.screen-card {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: center;
    perspective: 1000px;
}

.screen-wrapper {
    position: relative;
    transform-style: preserve-3d;
    transition: var(--transition);
    transform: rotateY(0) rotateX(5deg);
}

.screen-card.active .screen-wrapper {
    transform: rotateY(0) rotateX(0) scale(1.05);
}

.phone-mockup-caros {
    width: 100%;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 15px;
    position: relative;
    box-shadow:
        var(--shadow-3d, 0 25px 50px rgba(0, 0, 0, 0.4)),
        0 0 0 2px rgba(255, 255, 255, 0.05),
        inset 0 0 30px rgba(0, 0, 0, 0.9);
    border: 1px solid #444;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: var(--transition);
}

.screen-card:hover .screen-image {
    transform: scale(1.05);
}

.screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(67, 97, 238, 0.1) 0%,
            rgba(114, 9, 183, 0.1) 100%);
    border-radius: 30px;
    opacity: 0;
    transition: var(--transition);
}

.screen-card:hover .screen-overlay {
    opacity: 1;
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 25px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 2;
    box-shadow: inset 0 -2px 5px rgba(255, 255, 255, 0.1);
}

.screen-info {
    text-align: center;
    margin-top: 25px;
    opacity: 0.7;
    transition: var(--transition);
}

.screen-card.active .screen-info {
    opacity: 1;
}

.screen-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.screen-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.carousel-nav:disabled:hover {
    background: white;
    color: var(--primary);
}

/* Auto-play Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.auto-play-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.auto-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
}

.auto-play-btn.paused {
    background: #666;
}

/* Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, fr));
    gap: 30px;
    min-width: 300px;
    max-width: 700px;
    margin-top: 80px;
    padding: 0 20px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* RESPONSIVE DESIGN */

/* Tablettes */
@media (max-width: 991px) {
    .carousel-container {
        padding: 0 50px;
    }

    .screen-card {
        width: 280px;
    }

    .phone-mockup-caros {
        height: 560px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobiles Paysage */
@media (max-width: 767px) {
    .screens-section {
        padding: 60px 15px;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .carousel-track {
        gap: 20px;
        padding: 30px 15px;
    }

    .screen-card {
        width: 250px;
    }

    .phone-mockup-caros {
        height: 500px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }

    .carousel-controls {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobiles Portrait */
@media (max-width: 575px) {
    body {
        padding: 10px;
    }

    .screens-section {
        padding: 40px 10px;
    }

    .carousel-container {
        padding: 0 35px;
    }

    .carousel-track {
        gap: 15px;
        padding: 20px 10px;
    }

    .screen-card {
        width: 220px;
    }

    .phone-mockup-caros {
        height: 440px;
        border-radius: 30px;
        padding: 12px;
    }

    .phone-screen {
        border-radius: 22px;
    }

    .screen-image {
        border-radius: 22px;
    }

    .phone-notch {
        width: 120px;
        height: 20px;
        top: 15px;
    }

    .screen-info {
        margin-top: 20px;
    }

    .screen-title {
        font-size: 1.1rem;
    }

    .screen-description {
        font-size: 0.85rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Très petits écrans */
@media (max-width: 380px) {
    .screen-card {
        width: 200px;
    }

    .phone-mockup-caros {
        height: 400px;
    }

    .carousel-container {
        padding: 0 30px;
    }
}

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

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

.section-header,
.feature-card {
    animation: fadeInUp 0.8s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* avantage section  */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    animation: title3D 6s ease-in-out infinite;
}

@keyframes title3D {

    0%,
    100% {
        transform:
            perspective(1000px) rotateX(0deg) translateY(0px);
        text-shadow:
            0 5px 15px rgba(67, 97, 238, 0.3),
            0 0 0 rgba(0, 0, 0, 0);
    }

    50% {
        transform:
            perspective(1000px) rotateX(5deg) translateY(-10px);
        text-shadow:
            0 15px 30px rgba(67, 97, 238, 0.5),
            2px 2px 0 var(--secondary),
            -2px -2px 0 var(--primary);
    }
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Benefits Section Styles */
.benefits {
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    padding-top: 100px;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
    transform: translateZ(-100px);
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--gradient-reverse);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 10s ease-in-out infinite reverse;
    transform: translateZ(-50px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) translateZ(-100px);
    }

    50% {
        transform: translateY(-20px) rotate(180deg) translateZ(-80px);
    }
}

.benefits-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    transform-style: preserve-3d;
}

.tab-btn {
    padding: 16px 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translateZ(0);
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: var(--transition);
    z-index: -1;
    transform: translateZ(-1px);
}

.tab-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-5px) translateZ(10px);
    box-shadow:
        0 20px 40px rgba(114, 9, 183, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.tab-btn.active::before {
    left: 0;
}

.tab-btn:not(.active):hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px) translateZ(5px);
    box-shadow: var(--shadow);
}

.tab-btn i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.tab-btn.active i {
    transform: scale(1.2) translateZ(5px);
}

.benefits-content {
    display: none;
    animation: fadeInUp3D 0.8s ease-out;
    transform-style: preserve-3d;
}

@keyframes fadeInUp3D {
    from {
        opacity: 0;
        transform:
            perspective(1000px) rotateX(10deg) translateY(50px) translateZ(-100px);
    }

    to {
        opacity: 1;
        transform:
            perspective(1000px) rotateX(0) translateY(0) translateZ(0);
    }
}

.benefits-content.active {
    display: block;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    padding: 35px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
    transform:
        perspective(1000px) rotateY(var(--rotate-y, 0deg)) rotateX(var(--rotate-x, 0deg)) translateZ(var(--translate-z, 0px));
}

/* Inclinaison des premiers éléments vers la droite */
.benefit-item:nth-child(1) {
    --rotate-y: 8deg;
    --rotate-x: 2deg;
    --translate-z: 20px;
    margin-left: 20px;
}

.benefit-item:nth-child(2) {
    --rotate-y: 4deg;
    --rotate-x: 1deg;
    --translate-z: 10px;
    margin-left: 10px;
}

.benefit-item:nth-child(3) {
    --rotate-y: 2deg;
    --rotate-x: 0.5deg;
    --translate-z: 5px;
    margin-left: 5px;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
    transform-style: preserve-3d;
}

.benefit-item:hover::before {
    transform: scaleY(1) translateZ(5px);
}

.benefit-item:hover {
    transform:
        perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px) translateZ(30px) scale(1.02);
    box-shadow:
        var(--shadow-hover),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 30px 60px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 25px rgba(67, 97, 238, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transform: translateZ(10px);
}

.benefit-item:hover .benefit-icon {
    transform:
        scale(1.1) rotate(5deg) translateZ(20px);
    box-shadow:
        0 15px 30px rgba(114, 9, 183, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(67, 97, 238, 0.3);
}

.benefit-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    transform: translateZ(5px);
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translateZ(5px);
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon::after {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg) translateZ(5px);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg) translateZ(5px);
    }
}

.benefit-text {
    flex: 1;
    transform-style: preserve-3d;
}

.benefit-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
    transition: var(--transition);
    transform: translateZ(15px);
}

.benefit-item:hover .benefit-text h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateZ(20px) translateX(5px);
}

.benefit-text p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    transform: translateZ(10px);
}

/* Effet de profondeur supplémentaire */
.benefit-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(114, 9, 183, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: var(--transition);
    transform: translateZ(-5px);
}

.benefit-item:hover::after {
    opacity: 1;
    transform: translateZ(-2px);
}

/* Animation 3D au survol de la section */
.benefits-content:hover .benefit-item:not(:hover) {
    transform:
        perspective(1000px) rotateY(var(--rotate-y, 0deg)) rotateX(var(--rotate-x, 0deg)) translateZ(var(--translate-z, 0px)) scale(0.95);
    filter: brightness(0.9);
}

/* RESPONSIVE DESIGN AMÉLIORÉ */

/* Tablettes */
@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }

    .benefits-tabs {
        gap: 15px;
    }

    .tab-btn {
        padding: 14px 25px;
        font-size: 0.9rem;
    }

    .benefit-item {
        padding: 30px 25px;
        gap: 20px;
        --rotate-y: 0deg !important;
        --rotate-x: 0deg !important;
        --translate-z: 0px !important;
        margin-left: 0 !important;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .benefit-text h3 {
        font-size: 1.3rem;
    }
}

/* Mobiles Paysage */
@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

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

    .benefits-tabs {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 20px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .benefit-icon {
        align-self: center;
    }

    .benefit-text h3 {
        font-size: 1.3rem;
    }

    .benefit-text p {
        font-size: 0.95rem;
    }
}

/* Mobiles Portrait */
@media (max-width: 575px) {
    .container {
        width: 95%;
    }

    section {
        padding: 50px 0;
    }

    .benefits-tabs {
        gap: 10px;
    }

    .tab-btn {
        padding: 14px 18px;
        font-size: 0.85rem;
    }

    .benefit-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .benefit-text h3 {
        font-size: 1.2rem;
    }

    .benefit-text p {
        font-size: 0.9rem;
    }
}

/* Très petits écrans */
@media (max-width: 380px) {
    .tab-btn {
        padding: 12px 15px;
        font-size: 0.8rem;
    }

    .tab-btn i {
        font-size: 1rem;
    }

    .benefit-item {
        padding: 18px 12px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Animation pour les éléments au scroll */
[data-aos="fade-up"] {
    transform:
        perspective(1000px) rotateX(10deg) translateY(30px) translateZ(-50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos="fade-up"].aos-animate {
    transform:
        perspective(1000px) rotateX(0) translateY(0) translateZ(0);
    opacity: 1;
}

/* Footer Styles */
footer {
    background: var(--gradient);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

/* Animation d'onde liquide principale */
.liquid-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave-path {
    fill: var(--success);
    opacity: 0.6;
    animation: waveFlow 8s ease-in-out infinite;
}

.wave-path:nth-child(2) {
    opacity: 0.4;
    animation: waveFlow 10s ease-in-out infinite reverse;
    fill: var(--primary);
}

.wave-path:nth-child(3) {
    opacity: 0.3;
    animation: waveFlow 12s ease-in-out infinite;
    fill: var(--secondary);
}

@keyframes waveFlow {

    0%,
    100% {
        transform: translateX(0) scaleY(1);
    }

    25% {
        transform: translateX(-5%) scaleY(0.95);
    }

    50% {
        transform: translateX(-10%) scaleY(0.9);
    }

    75% {
        transform: translateX(-5%) scaleY(0.95);
    }
}

/* Effet de profondeur liquide */
.liquid-depth {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(67, 97, 238, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(114, 9, 183, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(76, 201, 240, 0.15) 0%, transparent 50%);
    animation: liquidMotion 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes liquidMotion {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        filter: hue-rotate(0deg) blur(0px);
    }

    33% {
        transform: translate(-10px, 5px) scale(1.02);
        filter: hue-rotate(5deg) blur(1px);
    }

    66% {
        transform: translate(5px, -3px) scale(0.98);
        filter: hue-rotate(-3deg) blur(0.5px);
    }
}

/* Logo Styles */
.footer-logo {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-reverse);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: logoFloat 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.logo:hover::before {
    left: 100%;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        box-shadow: var(--shadow);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
        box-shadow: var(--shadow-hover);
    }
}

.logo-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Points fixes pour les ondes */
.wave-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave-point {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    pointer-events: none;
}

.wave-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--success);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: wavePulse 4s ease-out infinite;
}

.wave-ring:nth-child(1) {
    animation-delay: 0s;
}

.wave-ring:nth-child(2) {
    animation-delay: 1s;
}

.wave-ring:nth-child(3) {
    animation-delay: 2s;
}

.wave-ring:nth-child(4) {
    animation-delay: 3s;
}

@keyframes wavePulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
        border-width: 2px;
    }

    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
        border-width: 1px;
    }
}

/* Ondes circulaires sur points fixes */
.ripple-point {
    position: absolute;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: rippleExpand 6s linear infinite;
    pointer-events: none;
}

.ripple-point:nth-child(odd) {
    border-color: var(--success);
    animation-duration: 8s;
}

.ripple-point:nth-child(even) {
    border-color: var(--accent);
    animation-duration: 10s;
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }

    80% {
        opacity: 0.3;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Effets de gouttes */
.water-drops {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.water-drop {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle at 30% 30%, var(--success) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(1px);
    animation: dropFall linear infinite;
    opacity: 0;
}

@keyframes dropFall {
    0% {
        transform: translateY(-20px) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
        transform: translateY(0) scale(1);
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(100px) scale(0.5);
        opacity: 0;
    }
}

/* Bulles animées */
.bubbles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 70%);
    border-radius: 50%;
    animation: bubbleRise linear infinite;
    bottom: -50px;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-120vh) translateX(var(--bubble-drift, 0)) scale(1);
        opacity: 0;
    }
}

/* Contenu du footer */
footer {
    background: var(--gradient);
    color: var(--light);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 90vw), 1fr));
    /* Grille adaptative */
    gap: clamp(25px, 5vw, 40px);
    /* Gap adaptatif */
    padding: clamp(40px, 8vw, 60px) 0 clamp(30px, 6vw, 50px);
    /* Padding adaptatif */
    position: relative;
    z-index: 2;
}

.footer-column h3 {
    color: var(--light);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    /* Taille adaptative */
    font-weight: 600;
    margin-bottom: clamp(15px, 3vw, 20px);
    /* Margin adaptatif */
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--success);
    transition: var(--transition);
}

.footer-column:hover h3::after {
    width: 100%;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.footer-links i {
    width: 16px;
    color: var(--success);
    font-size: 0.8rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: var(--transition);
    z-index: -1;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.social-links a:hover::before {
    left: 0;
}

.copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

/* Effet de ripple sur clic */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Points d'émission d'ondes fixes */
.wave-emitter {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    animation: emitterGlow 2s ease-in-out infinite alternate;
}

@keyframes emitterGlow {
    0% {
        box-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent);
    }

    100% {
        box-shadow: 0 0 15px var(--accent), 0 0 30px var(--success);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0 40px;
    }

    .liquid-wave {
        top: -60px;
        height: 60px;
    }

    .logo {
        font-size: 2rem;
        padding: 12px 25px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 25px;
        padding: 40px 0 30px;
    }

    .social-links {
        justify-content: center;
    }

    .liquid-wave {
        top: -40px;
        height: 40px;
    }

    .logo {
        font-size: 1.8rem;
        padding: 10px 20px;
    }

    .logo-text {
        font-size: 0.9rem;
    }
}

/* Adaptation pour très grands écrans */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    html {
        font-size: 110%;
    }
}

/* Adaptation pour l'impression */
@media print {
    * {
        animation: none !important;
        transition: none !important;
    }

    .hero {
        background: #4361EE !important;
    }
}

/* Support des navigateurs modernes */
@supports (aspect-ratio: 1) {
    .phone-mockup2 {
        aspect-ratio: 3/6;
    }
}

/* Ajouts CSS pour mieux coordonner AOS */

/* Assurer que les éléments avec AOS sont visibles au scroll */
[data-aos] {
    pointer-events: auto;
}

/* Désactiver les animations si l'utilisateur préfère les réduire */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        transition: none !important;
        animation: none !important;
    }
}

/* Ajustements pour le carousel avec AOS */
.carousel-container [data-aos] {
    transform: none !important;
}

/* Meilleure coordination avec les animations existantes */
.hero-content [data-aos],
.concept-card [data-aos],
.feature-item [data-aos],
.benefit-item [data-aos] {
    will-change: transform, opacity;
}

/* Optimisation des performances */
@media (max-width: 768px) {
    [data-aos] {
        transition-duration: 0.6s !important;
    }
}

/* Bouton avec effet floraison */
.blossom-button-container {
    margin-bottom: 25px;
}

.blossom-btn {
    position: relative;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
}

.blossom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.6);
}

.blossom-text {
    position: relative;
    z-index: 2;
}

.blossom-petals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.petal {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    opacity: 0;
}

.petal-1 {
    top: 20%;
    left: 20%;
}

.petal-2 {
    top: 60%;
    left: 10%;
}

.petal-3 {
    top: 30%;
    left: 80%;
}

.petal-4 {
    top: 70%;
    left: 70%;
}

.petal-5 {
    top: 40%;
    left: 40%;
}

.petal-6 {
    top: 80%;
    left: 50%;
}

.blossom-btn:hover .petal {
    animation: blossom 0.8s ease-out forwards;
}

.petal-1 {
    animation-delay: 0.1s;
}

.petal-2 {
    animation-delay: 0.2s;
}

.petal-3 {
    animation-delay: 0.3s;
}

.petal-4 {
    animation-delay: 0.4s;
}

.petal-5 {
    animation-delay: 0.5s;
}

.petal-6 {
    animation-delay: 0.6s;
}

@keyframes blossom {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(var(--tx, 0), var(--ty, -30px)) scale(1.5);
    }
}

.blossom-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.blossom-btn:hover .blossom-glow {
    opacity: 1;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #a0a0c0;
    margin-bottom: 30px;
}

.steps-indicator {
    display: flex;
    gap: 10px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step-dot.active {
    background: #2575fc;
    transform: scale(1.2);
}


/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .phone-mockup2 {
        width: 250px;
        height: 500px;
    }
}

/* Navigation Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.mobile-active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        width: 100%;
    }

    .nav-links a:hover {
        background: var(--gradient);
        color: white;
        transform: translateX(10px);
    }

    .nav-links a:hover::after {
        display: none;
    }

    .nav-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem 2rem;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 1000;
    }

    .nav-buttons.mobile-active {
        display: flex;
        justify-content: center;
    }

    .nav-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--gradient);
        border-radius: 10px;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .mobile-menu:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    }

    .mobile-menu.active {
        background: var(--accent);
    }

    /* Empêcher le scroll du body quand le menu est ouvert */
    body.menu-open {
        overflow: hidden;
    }

    /* Overlay pour fermer le menu en cliquant à côté */
    .nav-overlay {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }

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

/* Animation pour l'icône du menu */
.mobile-menu i {
    transition: transform 0.3s ease;
}

.mobile-menu.active i.fa-bars {
    transform: rotate(90deg);
}

/* Styles pour les écrans très petits */
@media (max-width: 480px) {
    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .nav-overlay {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .nav-links a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

.modal-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
    position: relative;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.modal-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.input-with-icon {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e1e5ee;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #6a11cb;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(106, 17, 203, 0.1);
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6a11cb;
    font-size: 18px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6a11cb;
    cursor: pointer;
    font-size: 18px;
}

.modal-footer {
    padding: 0 30px 30px;
    display: flex;
    gap: 15px;
}

.modal-footer .btn {
    flex: 1;
    justify-content: center;
    padding: 15px;
}

.btn-cancel {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e1e5ee;
}

.btn-join {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
}

.form-note {
    /* text-align: justify; */
    margin-top: 10px;
    font-size: 12px;
    color: #6c757d;
}

.form-note a {
    color: #6a11cb;
    text-decoration: none;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* Responsive */
@media (max-width: 576px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-footer {
        padding: 0 20px 20px;
        flex-direction: column;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }
}