:root {
    --primary: #0056b3;
    --secondary: #00b4ff;
    --success: #28a745;
    --dark: #1a1a1a;
    --light: #f4f7f6;
    --orange: #ff8c00;
}

body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--dark); margin: 0; background: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.edupay-nav { padding: 20px 0; background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Montserrat'; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.logo span { color: var(--secondary); }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; }
.tag-ambassadeur { color: var(--orange) !important; border: 1px solid var(--orange); padding: 5px 15px; border-radius: 20px; }

/* Hero */
.edupay-hero { padding: 100px 0; background: linear-gradient(135deg, #f8fbff 0%, #e8f0fe 100%); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.badge { display: inline-block; padding: 5px 15px; background: rgba(0,86,179,0.1); color: var(--primary); border-radius: 50px; font-weight: 700; font-size: 0.8rem; margin-bottom: 20px; }
.hero-text h1 { font-family: 'Montserrat'; font-size: 3.2rem; line-height: 1.2; margin-bottom: 25px; }
.hero-text h1 span { color: var(--primary); }
.hero-actions { display: flex; gap: 20px; margin: 35px 0; }
.btn-primary { background: var(--primary); color: #fff; padding: 18px 35px; border-radius: 8px; text-decoration: none; font-weight: 700; box-shadow: 0 10px 20px rgba(0,86,179,0.2); }
.btn-secondary { background: #fff; color: var(--primary); padding: 18px 35px; border-radius: 8px; text-decoration: none; font-weight: 700; border: 1px solid #ddd; }
.hero-trust { font-size: 0.8rem; opacity: 0.7; }

/* Mockup CSS */
.dashboard-mockup { background: #fff; border-radius: 12px; height: 350px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); border: 8px solid #333; }

/* Pain points */
.pain-points { padding: 80px 0; text-align: center; }
.section-title { font-family: 'Montserrat'; font-size: 2.2rem; margin-bottom: 50px; text-align: center; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pain-card { padding: 40px; background: var(--light); border-radius: 15px; transition: 0.3s; }
.pain-card i { font-size: 2.5rem; color: #ff4d4d; margin-bottom: 20px; }
.pain-card h4 { margin-bottom: 15px; }

/* Modules */
.modules-section { padding: 100px 0; background: #fff; }
.module-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 120px; }
.module-row.reverse { direction: rtl; }
.module-row.reverse .module-info { direction: ltr; }
.module-tag { display: inline-block; padding: 5px 15px; border-radius: 5px; font-weight: 800; font-size: 0.75rem; margin-bottom: 15px; text-transform: uppercase; }
.blue { background: #e0f0ff; color: var(--primary); }
.green { background: #e0ffeb; color: var(--success); }
.orange { background: #fff0e0; color: var(--orange); }
.module-info h3 { font-size: 2.2rem; font-family: 'Montserrat'; margin-bottom: 25px; }
.module-info ul { list-style: none; padding: 0; }
.module-info li { margin-bottom: 15px; font-size: 1.1rem; display: flex; gap: 15px; align-items: center; }
.module-info i { color: var(--success); }
.module-img img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Installation Process */
.process-section { padding: 80px 0; background: var(--primary); color: #fff; }
.process-section .section-title { color: #fff; }
.process-grid { display: flex; justify-content: space-between; position: relative; }
.step { text-align: center; flex: 1; }
.step span { width: 50px; height: 50px; background: var(--secondary); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border-radius: 50%; font-weight: 800; font-size: 1.2rem; }

/* Pricing */
.pricing-section { padding: 100px 0; background: var(--light); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.price-card { background: #fff; padding: 50px 30px; border-radius: 20px; text-align: center; border: 1px solid #eee; }
.price-card.featured { border: 3px solid var(--primary); transform: scale(1.05); position: relative; }
.pop { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 5px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; }
.amount { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin: 20px 0; }

/* CTA & Form */
.final-cta { padding: 100px 0; background: #05142b; color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-text h2 { font-size: 2.8rem; font-family: 'Montserrat'; margin-bottom: 30px; }
.benefits-mini { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.benefits-mini i { color: var(--secondary); }

.cta-form { background: #fff; padding: 40px; border-radius: 20px; color: var(--dark); }
.cta-form form { display: flex; flex-direction: column; gap: 15px; }
.cta-form input { padding: 15px; border-radius: 8px; border: 1px solid #ddd; font-size: 1rem; }
.btn-submit { background: var(--success); color: #fff; border: none; padding: 20px; border-radius: 8px; font-weight: 800; font-size: 1.1rem; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: #218838; transform: translateY(-3px); }

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .module-row, .cta-grid, .pricing-grid, .pain-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.2rem; }
    .nav-links { display: none; }
    .module-row.reverse { direction: ltr; }
    .process-grid { flex-direction: column; gap: 40px; }
}
.module-img {
    position: relative;
    padding: 20px;
}
/* Effet de reflet sur les captures d'écran mobiles */
.module-img img {
    border: 4px solid #333;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
/* Simulator Style */
.roi-simulator { padding: 80px 0; background: #fff; }
.simulator-grid { 
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; 
    padding: 50px; background: #05142b; color: #fff; border-radius: 30px;
}
.input-group { margin-bottom: 25px; }
.input-group label { display: block; margin-bottom: 10px; opacity: 0.8; }
.input-group input { width: 100%; padding: 12px; border-radius: 8px; border: none; font-size: 1.1rem; }
.result-box { 
    background: rgba(255,255,255,0.1); padding: 40px; border-radius: 20px; 
    text-align: center; border: 1px dashed var(--secondary);
}
.amount-lost { font-size: 3rem; font-weight: 800; color: #ff4d4d; margin: 20px 0; }
.btn-recup { 
    display: inline-block; padding: 15px 30px; background: var(--success); 
    color: #fff; text-decoration: none; border-radius: 8px; font-weight: 700;
}

/* FAQ Style */
.edupay-faq { padding: 80px 0; background: #f9f9f9; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; padding: 25px; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.faq-item h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
/* Guide d'utilisation */
.simulator-guide {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}
.guide-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f0f7ff;
    padding: 15px;
    border-radius: 12px;
    flex: 1;
}
.guide-num {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}
.guide-item p {
    font-size: 0.85rem;
    margin: 0;
    color: #444;
}

/* Simulator Grid */
.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px;
    background: #031027;
    border-radius: 30px;
    color: white;
}
.input-group small {
    display: block;
    margin-top: 5px;
    opacity: 0.5;
    font-size: 0.75rem;
}
.perte-display {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
#perteValue {
    font-weight: bold;
    color: var(--secondary);
    font-size: 1.2rem;
}
.perte-label {
    font-size: 0.75rem;
    font-style: italic;
    opacity: 0.7;
}

/* Result Box */
.result-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(0, 180, 255, 0.3);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}
.alert-icon {
    font-size: 2rem;
    color: #ff4d4d;
    margin-bottom: 10px;
}
.amount-lost {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff4d4d;
    text-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
    margin: 15px 0;
}
.result-detail {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
    margin-bottom: 30px;
}
/* Style de la fenêtre autour de l'image */
.dashboard-window {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotateY(-5deg); /* Petit effet 3D */
    transition: 0.5s ease;
}

.dashboard-window:hover {
    transform: rotateY(0deg) scale(1.02); /* Se remet droit quand on passe la souris */
}

.window-header {
    background: #f1f1f1;
    padding: 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.dot { width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.window-title {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    margin-left: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.img-dashboard {
    width: 100%;
    height: auto;
    display: block;
}

/* Optionnel : Animation de flottement */
@keyframes floatAnim {
    0% { transform: translateY(0px) rotateY(-5deg); }
    50% { transform: translateY(-15px) rotateY(-2deg); }
    100% { transform: translateY(0px) rotateY(-5deg); }
}

.hero-image {
    animation: floatAnim 6s ease-in-out infinite;
}
/* Style corrigé pour la bannière Ambassadeur */
.ambassadeur-banner {
    background: linear-gradient(135deg, #001a33 0%, #004080 100%); /* Dégradé plus riche */
    padding: 80px 0;
    margin-top: 50px;
    border-top: 3px solid #00b4ff; /* Ligne de séparation lumineuse */
    color: #ffffff; /* Force tout le texte en blanc */
}

.amb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.amb-text h2 {
    color: #ffffff !important; /* Blanc pur pour le titre */
    font-size: 2.2rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    font-weight: 800;
}
/* Style pour l'image à l'intérieur du téléphone */
.phone-screen {
    position: relative;
    padding: 0; /* On enlève le padding pour que l'image touche les bords */
    height: 100%;
    background: #000;
}

.img-inside-phone {
    width: 100%;
    height: 100%;
    object-fit: cover; /* L'image remplit tout l'écran proprement */
    display: block;
}

/* On ajuste le badge pour qu'il flotte par-dessus l'image */
.notif-badge {
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    background: #ff4d4d;
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 5;
    animation: pulse 2s infinite;
}
.amb-text p {
    color: rgba(255, 255, 255, 0.9) !important; /* Blanc cassé pour la lisibilité */
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.5;
}

.btn-amb {
    background: #00b4ff; /* Bleu ciel identique à la Capture 103 */
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 180, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-amb:hover {
    background: #ffffff;
    color: #004080;
    transform: translateY(-5px);
}

/* Ajustement pour mobile */
@media (max-width: 768px) {
    .amb-content {
        flex-direction: column;
        text-align: center;
    }
    .btn-amb {
        width: 100%;
        justify-content: center;
    }
}
/* --- SECTION SECURITE --- */
.trust-security { padding: 100px 0; background: #fff; }

.security-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px;
    background: #f8fbff; padding: 60px; border-radius: 30px;
    align-items: center; margin-bottom: 80px;
}

.badge-safe {
    background: #e1f5fe; color: #0288d1; padding: 8px 15px;
    border-radius: 50px; font-weight: 700; font-size: 0.8rem;
}

.security-text h2 { font-size: 2.5rem; margin: 20px 0; font-family: 'Montserrat'; }
.security-text h2 span { color: #0056b3; }

.security-features { margin-top: 30px; }
.s-feat { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 600; }
.s-feat i { color: #28a745; font-size: 1.2rem; }

.security-icon-box { text-align: center; }
.floating-icon { font-size: 10rem; color: #0056b3; opacity: 0.1; animation: float 4s infinite ease-in-out; }

/* --- TABLEAU COMPARATIF --- */
.comparison-box { text-align: center; }
.compare-table {
    width: 100%; border-collapse: collapse; margin-top: 40px;
    background: white; border-radius: 15px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.compare-table th { background: #0056b3; color: white; padding: 20px; font-family: 'Montserrat'; }
.compare-table td { padding: 20px; border-bottom: 1px solid #eee; font-weight: 500; }

.bad { color: #d32f2f; background: #fff8f8; }
.good { color: #2e7d32; background: #f8fff8; font-weight: 700; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .security-grid { grid-template-columns: 1fr; padding: 30px; }
    .compare-table th:nth-child(2), .compare-table td:nth-child(2) { display: none; } /* On cache la colonne "Papier" sur petit mobile pour la lisibilité */
}
.mobile-experience { padding: 100px 0; background: #05142b; color: #fff; overflow: hidden; }
.mobile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.mobile-showcase { position: relative; height: 450px; }

/* Style des faux téléphones */
.phone-mockup {
    width: 200px; height: 400px; background: #1a1a1a;
    border: 6px solid #333; border-radius: 30px;
    position: absolute; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.parent-phone { z-index: 2; top: 0; left: 50px; transform: rotate(-10deg); }
.director-phone { z-index: 1; top: 50px; left: 180px; transform: rotate(10deg); background: #f4f7f6; color: #333; }

.phone-header { background: #0056b3; color: #fff; text-align: center; padding: 10px; font-size: 0.7rem; font-weight: bold; }
.phone-screen { padding: 15px; font-size: 0.8rem; }

.notif-badge { background: #ff4d4d; padding: 5px; border-radius: 5px; margin-bottom: 10px; font-size: 0.6rem; animation: pulse 2s infinite; }
.child-card { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.child-card img { border-radius: 50%; }

.stat-circle { 
    width: 80px; height: 80px; border: 5px solid #0056b3; 
    border-radius: 50%; display: flex; align-items: center; 
    justify-content: center; margin: 20px auto 10px; font-weight: 900; font-size: 1.2rem;
}

.btn-action-mobile { background: #0056b3; color: #fff; padding: 8px; text-align: center; border-radius: 5px; margin-top: 50px; }

.mobile-text h2 { font-size: 2.5rem; font-family: 'Montserrat'; margin: 20px 0; }
.mobile-text h2 span { color: #00b4ff; }
.mobile-list { list-style: none; padding: 0; margin-top: 30px; }
.mobile-list li { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; }
.mobile-list i { color: #00b4ff; margin-top: 5px; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 992px) {
    .mobile-grid { grid-template-columns: 1fr; }
    .mobile-showcase { height: 500px; display: flex; justify-content: center; }
    .parent-phone { left: 20%; }
    .director-phone { left: 40%; }
}
.btn-trial {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); /* Dégradé violet/bleu moderne */
    color: white !important; /* Texte en blanc */
    padding: 10px 22px;
    border-radius: 50px; /* Bords très arrondis */
    text-decoration: none !important; /* Enlève le soulignement bleu */
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
    display: inline-block;
}

.btn-trial:hover {
    transform: translateY(-2px); /* Petit saut au survol */
    box-shadow: 0 6px 20px rgba(37, 117, 252, 0.5);
    filter: brightness(1.1);
}
/* Le contenant (l'écran du téléphone) */
.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff; /* Fond blanc pour correspondre à l'image */
    overflow: hidden; /* INDISPENSABLE : Coupe tout ce qui dépasse des bords arrondis */
    display: flex;
    flex-direction: column;
}

/* L'image à l'intérieur */
.img-inside {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajuste l'image pour remplir l'écran sans la déformer */
    object-position: top; /* Garde le haut de l'image (le nom de l'école) visible */
}

/* Ajustement du badge pour qu'il ne cache pas tout */
.notif-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%); /* Centre le badge horizontalement */
    width: 90%;
    z-index: 10;
    padding: 6px;
    font-size: 0.65rem;
}
/* --- MENU MOBILE EDUPAY --- */
/* --- RESPONSIVE NAVIGATION --- */
/* --- MENU MOBILE & RESPONSIVE GLOBAL --- */
@media (max-width: 992px) {
    
    /* 1. NAVIGATION & MENU BURGER */
    .edupay-nav .btn-trial { display: none !important; }

    .nav-flex {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    #mobile-menu {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 11000;
        background: transparent;
        border: none;
    }

    #mobile-menu .bar {
        width: 28px;
        height: 3px;
        background-color: var(--secondary);
        border-radius: 5px;
        transition: 0.3s;
    }

    .nav-list {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%; /* Caché */
        width: 85%;
        height: 100vh;
        background: #060d17;
        gap: 25px;
        transition: 0.5s ease-in-out;
        z-index: 10500;
        box-shadow: -10px 0 20px rgba(0,0,0,0.5);
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-list.active { right: 0 !important; }

    .nav-list li a {
        color: white !important;
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: none;
    }

    /* 2. SIMULATEUR ROI */
    .simulator-guide { flex-direction: column; gap: 15px; }
    .guide-item { width: 100%; }

    .roi-simulator .simulator-grid {
        grid-template-columns: 1fr;
        padding: 30px 15px;
        gap: 25px;
    }

    .amount-lost {
        font-size: 2rem;
        word-break: break-all;
    }

    /* 3. SECTION TARIFS (Correction débordement) */
    .pricing-grid {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

    .price-card {
        width: 100% !important;
        padding: 20px 15px !important;
        box-sizing: border-box;
    }

    .price-card.featured {
        transform: scale(1) !important;
        order: -1; /* Met "Mensualité" en premier */
    }

    /* Ajustement des textes "Mensualité" et "Ambassadeur" */
    .price-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 5px;
        white-space: normal; /* Autorise le retour à la ligne si vraiment trop long */
    }

    .price-card .amount {
        font-size: 1rem !important;
        margin: 10px 0 !important;
    }

    .pricing-section .section-title { font-size: 1.6rem; }

    /* --- SECTION MOBILITÉ (TEXTE) --- */
    .mobile-text {
        text-align: center; /* Centre le titre et le badge */
        padding: 0 15px;
    }

    .mobile-text h2 {
        font-size: 1.8rem; /* Taille de titre plus adaptée */
        line-height: 1.3;
    }

    .mobile-list {
        text-align: left; /* Garde la liste alignée à gauche pour la lisibilité */
        display: inline-block; /* Permet de centrer le bloc de la liste */
        margin-top: 25px;
    }

    .mobile-list li {
        display: flex; /* Aligne l'icône et le texte sur la même ligne */
        align-items: flex-start; /* Aligne l'icône en haut si le texte est long */
        gap: 12px;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .mobile-list i {
        color: var(--secondary);
        margin-top: 4px; /* Petit ajustement pour centrer l'icône avec la 1ère ligne */
        flex-shrink: 0; /* Empêche l'icône de s'écraser */
    }

    /* --- SECTION FORMULAIRE FINAL --- */
    .final-cta {
        padding: 60px 0; /* Réduit un peu l'espace vertical sur mobile */
    }

    .cta-grid {
        display: flex !important;
        flex-direction: column; /* Empile le texte et le formulaire */
        gap: 40px;
    }

    .cta-text {
        text-align: center; /* Centre le texte pour le mobile */
    }

    .cta-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .benefits-mini {
        align-items: center; /* Centre les petits badges de bénéfices */
        font-size: 0.9rem;
    }

    /* Le boîtier du formulaire */
    .cta-form {
        padding: 25px 20px !important;
        width: 100%;
        box-sizing: border-box; /* Évite que le formulaire dépasse de l'écran */
    }

    .cta-form h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .cta-form input {
        width: 100%; /* S'assure que les champs prennent toute la largeur */
        padding: 15px;
        font-size: 1rem;
        margin-bottom: 15px; /* Espace entre les champs */
        box-sizing: border-box;
    }

    .btn-submit {
        width: 100%; /* Bouton large pour cliquer facilement avec le pouce */
        padding: 15px;
        font-size: 1rem;
    }

} /* FIN DU BLOC MOBILE (Cette accolade ferme TOUT le responsive) */

/* Sur ordinateur uniquement */
@media (min-width: 993px) {
    #mobile-menu, .btn-trial-mobile {
        display: none !important;
    }
}
/* Conteneur de l'image/vidéo */
.module-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Style spécifique pour la vidéo */
.module-video {
    width: 100%;           /* Prend toute la largeur du conteneur */
    max-width: 600px;      /* Évite que la vidéo soit trop grande sur PC */
    height: auto;          /* Garde les proportions */
    border-radius: 20px;   /* Arrondi identique à tes images */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); /* Ombre douce pour le relief */
    object-fit: cover;     /* S'assure que le contenu remplit bien le cadre */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Petit liseré élégant */
}

/* Responsive : sur mobile, on centre tout */
@media (max-width: 768px) {
    .module-row {
        flex-direction: column;
        text-align: center;
    }
    
    .module-video {
        margin-top: 30px;
        max-width: 100%;
    }
}
/* Conteneur pour l'agrandissement */
.module-img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.module-img:hover {
    transform: scale(1.02); /* Petit effet de zoom au survol */
}

/* La vidéo elle-même */
.module-video {
    width: 100%;
    border-radius: 20px; /* Voilà les coins arrondis */
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); /* Ombre portée */
    border: 2px solid #fff; /* Petit contour blanc élégant */
    display: block;
}

/* Classe pour le mode "Plein Écran" au clic */
.video-fullscreen {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.video-fullscreen video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
/* 1. Le design "Carré" avec bords arrondis pour tes vidéos sur le site */
.video-container {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(132, 134, 207, 0.15);
    transition: transform 0.3s ease;
    background: #000; /* Fond noir pour éviter les bords blancs */
}

.video-container:hover {
    transform: scale(1.02);
}

.module-video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* 2. Le style du ZOOM (Le fond noir quand on clique) */
.full-screen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Fond noir transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Toujours au-dessus de tout */
    cursor: zoom-out;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.pricing-ultra {
    padding: 100px 0;
    background: radial-gradient(circle at top, #f8faff 0%, #ffffff 100%);
    font-family: 'Poppins', sans-serif;
}

.ultra-badge {
    background: #e8f0fe;
    color: #1a73e8;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.ultra-title {
    font-size: 2.5rem;
    margin-top: 15px;
    font-weight: 800;
}

.ultra-title span { color: #1a73e8; }

/* Activation Glass Effect */
.activation-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 115, 232, 0.2);
    border-radius: 30px;
    padding: 40px;
    margin: 50px auto;
    max-width: 1000px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.activation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.icon-circle {
    width: 60px; height: 60px;
    background: #1a73e8;
    color: white;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

.activation-price .val {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
}

.activation-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feat {
    font-weight: 500;
    color: #64748b;
    font-size: 0.9rem;
}

.feat i { color: #1a73e8; margin-right: 8px; }

/* Plans Cards */
.plans-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.ultra-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.ultra-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.ultra-card.premium {
    background: #1e293b;
    color: white;
    border: none;
}

.best-value {
    position: absolute;
    top: -15px; right: 30px;
    background: #fbbf24;
    color: #000;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.7rem;
}

.ultra-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 20px 0;
}

.ultra-price span { font-size: 1rem; opacity: 0.6; }

.deg-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.promo-highlight {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.btn-ultra {
    display: block;
    background: #1a73e8;
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 15px;
    margin-top: 30px;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .plans-container { grid-template-columns: 1fr; }
    .activation-footer { grid-template-columns: 1fr 1fr; }
    .activation-header { flex-direction: column; text-align: center; gap: 20px; }
}
/* Bouton spécifique pour le plan mensuel (moins imposant que le bleu plein) */
.btn-outline {
    background: transparent !important;
    border: 2px solid #1a73e8;
    color: #1a73e8 !important;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #1a73e8 !important;
    color: white !important;
}

/* On s'assure que tous les boutons ont la même taille pour l'équilibre */
.btn-ultra {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    margin-top: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}
/* Bannière d'essai gratuit */
.test-drive-banner {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    border-radius: 25px;
    padding: 30px;
    margin: 60px auto;
    max-width: 1000px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.3);
}

.test-content {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.test-icon {
    font-size: 2.5rem;
    background: rgba(255,255,255,0.2);
    width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20px;
}

.test-text h4 { font-size: 1.4rem; margin-bottom: 5px; }
.test-text p { opacity: 0.9; font-size: 0.95rem; line-height: 1.5; }

.btn-test {
    background: #fbbf24;
    color: #000 !important;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

.btn-test:hover { transform: scale(1.05); background: #fff; }

/* FAQ Mini */
.faq-pricing { margin-top: 50px; text-align: center; }
.faq-mini-title { color: #1e293b; margin-bottom: 30px; font-weight: 800; }

.faq-grid-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-card-mini {
    background: #f8faff;
    padding: 25px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.faq-card-mini h5 { color: #1a73e8; margin-bottom: 10px; font-size: 1rem; }
.faq-card-mini p { font-size: 0.85rem; color: #64748b; line-height: 1.6; }

/* Ligne finale Trust */
.final-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.activation-note { color: #64748b; font-size: 0.9rem; }
.trust-badge { 
    background: #28a745; 
    color: white; 
    padding: 8px 18px; 
    border-radius: 50px; 
    font-size: 0.85rem; 
    font-weight: 700; 
}

/* Mobile */
@media (max-width: 768px) {
    .test-content { flex-direction: column; text-align: center; }
    .faq-grid-mini { grid-template-columns: 1fr; }
    .final-trust-row { flex-direction: column; gap: 20px; }
}
@media (max-width: 480px) {
    /* Ajuste le titre "Activation & Mise en service" */
    .activation-text h3 {
        font-size: 1.5rem !important;
    }

    /* Empêche le prix de se couper en deux */
    .activation-price .val {
        font-size: 2.2rem !important; /* Réduit la taille pour que 175 000 tienne sur une ligne */
        display: inline-block;
    }

    .activation-price .curr {
        font-size: 1rem !important;
    }

    /* Aligne mieux les icônes en bas (2 par ligne au lieu de tout mélanger) */
    .activation-footer {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        text-align: left;
    }

    /* Centre la carte sur mobile */
    .activation-glass {
        padding: 20px !important;
        margin: 20px 10px !important;
    }
}
@media (max-width: 768px) {
    /* 1. On gère le titre qui prend trop de place */
    .ultra-title {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }

    /* 2. On répare le prix "175 000" pour qu'il tienne sur une ligne */
    .activation-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px;
    }

    .activation-price .val {
        font-size: 2.2rem !important; /* On réduit la taille pour le mobile */
        display: block;
        margin: 5px 0;
    }

    /* 3. ON CENTRE ENFIN LA WEBCAM ET LES INFOS */
    .activation-footer {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Centrage horizontal */
        text-align: center !important;
        gap: 20px !important;
    }

    .feat {
        width: 100%;
        display: flex;
        flex-direction: column; /* Icône au-dessus du texte pour un look moderne */
        align-items: center;
        gap: 5px;
    }

    /* 4. On centre la note sur la webcam HD et le badge 48h */
    .final-trust-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px;
    }

    .activation-note {
        padding: 0 20px;
        line-height: 1.4;
    }
}