@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700;800&display=swap');

/* --- 1. DESIGN SYSTEM & VARIABLES --- */
/* --- 1. DESIGN SYSTEM & VARIABLES (VERSION HARDWARE) --- */
:root {
    --bg-dark: #08080a;           /* Noir plus profond */
    --bg-card: #121215;           /* Gris anthracite technique */
    --primary: #00d2ff;           /* Cyan électrique style LED */
    --primary-light: #00f2ff;
    --accent: #7000ff;            /* Violet pour les touches RGB */
    --text-main: #a1a1aa;
    --text-bright: #f4f4f5;
    --border: rgba(255, 255, 255, 0.05);
    --radius-lg: 8px;             /* Angles plus fermés/pro */
    --radius-md: 4px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- 2. NAVBAR PREMIUM (FLOAT) --- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    height: 68px;
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 20px;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    top: 12px;
    height: 60px;
    width: 90%;
    background: rgba(5, 7, 10, 0.9);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 24px;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-bright);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -1px;
}

.logo span { color: var(--primary-light); }

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 10px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-bright);
    background: rgba(255, 255, 255, 0.05);
}

/* --- 2.1 ACTIONS NAVBAR (NOUVEAU STYLE) --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-bright);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 12px;
    transition: var(--transition);
}

/* Le petit point vert "Online" */
.btn-contact::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-light);
}

.btn-devis {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(45, 106, 222, 0.2);
    transition: var(--transition);
}

.btn-devis:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 222, 0.4);
    filter: brightness(1.1);
}

/* Correction mobile pour les nouveaux boutons */
@media (max-width: 768px) {
    .btn-contact { display: none; } /* On cache contact sur petit mobile */
    .btn-devis {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}


/* --- 3. HERO SECTION (LAYOUT PRO) --- */
.hero {
    position: relative;
    padding: 160px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 30%, rgba(45, 106, 222, 0.1) 0%, var(--bg-dark) 50%);
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black, transparent);
    opacity: 0.4;
    z-index: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-tech {
    display: inline-flex;
    padding: 6px 14px;
    background: rgba(45, 106, 222, 0.1);
    border: 1px solid rgba(45, 106, 222, 0.2);
    border-radius: 100px;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--text-bright);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(to right, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-main);
    max-width: 580px;
    margin-bottom: 48px;
}

/* --- BOUTONS HERO --- */
.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 64px;
}

.btn-main-pro {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-main-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 106, 222, 0.5);
}

.btn-secondary-tech {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    color: var(--text-bright);
    text-decoration: none;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    font-weight: 700;
    transition: var(--transition);
}

.btn-secondary-tech:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-bright);
}

/* --- TRUST BAR --- */
.hero-trust {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    width: 100%;
}

.trust-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(13, 17, 23, 0.5);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: var(--transition);
}

.tech-badge:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.badge-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 106, 222, 0.1);
    border-radius: 8px;
}

.badge-content .label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--text-main);
}

.badge-content .val {
    font-size: 0.9rem;
    color: var(--text-bright);
    font-weight: 800;
}

/* --- CARTE FLOTTANTE (DROITE) --- */
.hero-image {
    display: flex;
    justify-content: flex-end;
}

.tech-card-floating {
    width: 100%;
    max-width: 440px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.card-header {
    color: #10b981;
    font-family: monospace;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 12px #10b981;
}

.card-body {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.card-stats {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
}

/* --- MINI GRAPH --- */
.mini-graph {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 40px;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.mini-graph .bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--accent));
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-in-out infinite alternate;
}

@keyframes barGrow {
    from { opacity: 0.4; transform: scaleY(0.8); }
    to { opacity: 1; transform: scaleY(1); }
}

/* --- RESPONSIVE GLOBAL & HERO --- */
@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .hero-content { align-items: center; }
    .hero-btns, .trust-grid { justify-content: center; }
    .hero-image { justify-content: center; }
    .navbar { width: calc(100% - 32px); }
}

/* --- LOGIQUE NAVBAR MOBILE (992px) --- */

/* 1. On définit le bouton burger (caché sur PC) */
.mobile-toggle {
    display: none; 
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2001; /* Doit être au-dessus du menu */
    position: relative;
    padding: 10px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

@media (max-width: 992px) {
    /* 2. On affiche le bouton burger */
    .mobile-toggle { 
        display: flex !important; 
    }

    /* 3. Le menu mobile (caché par défaut à droite) */
    .nav-links {
        display: flex !important; /* On remplace le display: none par flex */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        
        position: fixed;
        top: 0;
        right: -100%; /* Sort de l'écran */
        width: 100%;
        height: 100vh;
        background: #05070a;
        transition: 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 2000;
    }

    /* 4. État quand on clique (JS ajoute la classe .active) */
    .nav-links.active {
        right: 0;
    }

    /* 5. Animation du burger en X */
    .mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* 6. On cache les actions de droite pour épurer */
    .nav-actions {
        display: none !important;
    }
}

    /* GESTION DES BOUTONS SUR MOBILE */
    /* On cache les boutons de la navbar principale pour éviter les doublons */
    .nav-actions {
        display: none; 
    }

    /* Animation Burger en X */
    .mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 768px) {
    .navbar {
        height: 60px;
        width: 94%;
        top: 10px;
    }
    .logo { font-size: 1.1rem; }
}/* --- RESPONSIVE HERO --- */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-layout {
        grid-template-columns: 1fr; /* Une seule colonne */
        gap: 40px;
    }

    .hero-content {
        align-items: center; /* Centre tout le texte */
    }

    .hero h1 {
        font-size: 2.2rem; /* Titre plus petit pour pas qu'il coupe */
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* BOUTONS EN COLONNE */
    .hero-btns {
        flex-direction: column; /* L'un sur l'autre */
        width: 100%;
        gap: 12px;
    }

    .btn-main-pro, .btn-secondary-tech {
        width: 100%; /* Toute la largeur */
        justify-content: center;
        padding: 16px;
    }

    /* BADGES HARDWARE (Grille 2 colonnes sur mobile) */
    .trust-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .tech-badge {
        padding: 10px;
        justify-content: center;
    }

    /* CARTE FLOTTANTE (Plus petite) */
    .tech-card-floating {
        max-width: 100%;
        padding: 20px;
        margin-top: 20px;
    }

    .card-body {
        font-size: 1.4rem;
    }
}
/* --- SECTION PRODUITS --- */
.section-products {
    padding: 120px 0;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--text-main);
    max-width: 600px;
    margin: 15px auto 0;
}

/* --- GRILLE & CARTES --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 40px 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Effet au survol */
.product-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Image du produit */
.product-image {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: transform 0.6s ease;
}

.product-image img {
    max-height: 100%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(-3deg);
}

/* Contenu texte */
.product-info h3 {
    color: var(--text-bright);
    font-size: 1.5rem;
    margin: 15px 0 10px;
}

.product-badge {
    padding: 4px 12px;
    background: rgba(45, 106, 222, 0.1);
    border: 1px solid rgba(45, 106, 222, 0.3);
    color: var(--primary-light);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-badge.accent {
    background: rgba(0, 242, 255, 0.1);
    border-color: rgba(0, 242, 255, 0.3);
    color: var(--accent);
}

.spec-list {
    list-style: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.spec-list li {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-list li span { color: var(--primary-light); font-weight: bold; }

/* Responsive mobile */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-card {
        padding: 30px 20px;
    }
}
.product-img-container {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit le cadre sans déformer */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--bg-dark) 100%);
    opacity: 0.6; /* Crée une transition douce entre l'image et le texte */
}

/* Effet Zoom au survol de la carte */
.product-card:hover .main-img {
    transform: scale(1.1);
}

.product-card {
    background: rgba(13, 17, 23, 0.4);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 24px;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--primary-light);
    background: rgba(45, 106, 222, 0.05);
}
/* --- BOX ICONES STYLE TECH --- */
.icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.emoji-icon {
    font-size: 2.5rem;
    z-index: 2;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Halo de couleur derrière l'emoji */
.icon-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--primary);
    filter: blur(25px);
    opacity: 0.3;
    z-index: 1;
}

.icon-glow.blue { background: var(--accent); }
.icon-glow.purple { background: #a855f7; }

/* Animation au survol de la carte */
.product-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-light);
    background: rgba(45, 106, 222, 0.1);
}

.product-card:hover .icon-glow {
    opacity: 0.6;
    transform: scale(1.2);
}

/* --- AJUSTEMENTS PRODUCT CARD --- */
.product-card {
    background: rgba(13, 17, 23, 0.4);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 35px;
    height: 100%;
    transition: var(--transition);
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* --- SECTION B2B PREMIUM --- */
.section-b2b {
    padding: 100px 0;
    background: radial-gradient(circle at bottom right, rgba(45, 106, 222, 0.05), transparent);
}

.b2b-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

/* LISTE DE FEATURES */
.features-wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-light);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(45, 106, 222, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text strong {
    color: var(--text-bright);
    display: block;
    margin-bottom: 4px;
}

/* STATS STYLE DASHBOARD */
.stats-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-bright);
    display: block;
}

.stats-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.main-stat .stat-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}

.main-stat .fill {
    width: 85%;
    height: 100%;
    background: var(--primary-light);
    box-shadow: 0 0 15px var(--primary-light);
}

/* RESPONSIVE MOBILE */
@media (max-width: 992px) {
    .b2b-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }

    .section-title {
        text-align: center;
    }
}
/* --- SECTION PACKS --- */
.section-packs {
    padding: 100px 0;
    background: var(--bg-dark);
}

.pack-card {
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* La carte mise en avant */
.pack-card.highlight {
    border-color: var(--primary);
    background: rgba(45, 106, 222, 0.03);
    box-shadow: 0 20px 50px rgba(45, 106, 222, 0.1);
}

.pack-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pack-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pack-card h3 {
    color: var(--text-bright);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.pack-features {
    list-style: none;
    margin: 30px 0;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.pack-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pack-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

/* BOUTON PACK */
.btn-pack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-pack.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
}

.btn-pack:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.btn-pack span {
    transition: transform 0.3s ease;
}

.btn-pack:hover span {
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pack-card {
        padding: 30px;
    }
}

/* --- CTA PARTICULIERS --- */
.section-cta-personal {
    padding: 80px 0;
}

.cta-glass-card {
    background: linear-gradient(135deg, rgba(45, 106, 222, 0.1) 0%, rgba(0, 242, 255, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-bright);
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-features-mini {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features-mini span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 15px;
    border-radius: 100px;
}

/* --- TESTIMONIALS --- */
.section-testimonials {
    padding: 100px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.stars {
    color: #facc15; /* Jaune étoile */
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
}

.user-details strong {
    display: block;
    color: var(--text-bright);
    font-size: 0.9rem;
}

.user-details span {
    font-size: 0.75rem;
    color: var(--text-main);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .cta-content h2 { font-size: 1.8rem; }
    .grid-3 { grid-template-columns: 1fr; gap: 20px; }
}

/* --- SECTION FAQ MODERNE --- */
.section-faq {
    padding: 100px 0;
    background: var(--bg-dark);
}

.max-800 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: var(--transition);
    overflow: hidden;
}

/* En-tête de la question */
.faq-item summary {
    list-style: none; /* Cache la flèche par défaut */
    padding: 24px 30px;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-bright);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-light);
    transition: transform 0.4s ease;
}

/* Texte de réponse */
.faq-content {
    padding: 0 30px 24px;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* États au survol et ouverture */
.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-light);
}

.faq-item[open] {
    background: rgba(45, 106, 222, 0.05);
    border-color: var(--primary);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg); /* Le + devient un x */
    color: var(--accent);
}

/* Animation fluide (CSS moderne) */
.faq-item[open] .faq-content {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- SECTION FINAL CTA --- */
.section-final-cta {
    padding: 100px 0 140px;
    background: var(--bg-dark);
}

.cta-box {
    position: relative;
    background: linear-gradient(135deg, rgba(45, 106, 222, 0.15) 0%, rgba(5, 7, 10, 1) 100%);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* Lueur d'ambiance en arrière-plan de la boîte */
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
}

.cta-text-wrapper h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-bright);
    font-weight: 800;
}

.cta-text-wrapper p {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Style spécifique pour le bouton version large */
.btn-lg {
    padding: 22px 45px !important;
    font-size: 1.2rem !important;
    box-shadow: 0 20px 40px rgba(45, 106, 222, 0.3);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.btn-lg:hover .arrow-icon {
    transform: translateX(8px);
}

.cta-trust-mini {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--text-main);
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-box {
        padding: 60px 20px;
        border-radius: 30px;
    }
    
    .cta-trust-mini {
        flex-direction: column;
        gap: 10px;
    }
}
/* --- FOOTER PREMIUM --- */
.footer-premium {
    padding: 80px 0 40px;
    background: #05070a;
    border-top: 1px solid var(--border);
    position: relative;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-bright);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Colonne Marque */
.footer-col.brand p {
    max-width: 300px;
    margin: 20px 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-bright);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

/* Liens */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

/* Infos Contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
}

/* Bas de page */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: var(--text-main);
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-col.brand p {
        margin: 20px auto;
    }
    .social-links {
        justify-content: center;
    }
    .info-item {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}
/* --- PAGE CONTACT STYLE --- */
.section-contact {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 10% 10%, rgba(45, 106, 222, 0.05) 0%, transparent 50%);
}

.contact-header { margin-bottom: 40px; }

.contact-card-premium {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(20px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { margin-bottom: 25px; }

.form-group label {
    display: block;
    color: var(--text-bright);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Style des champs de saisie */
.modern-form input:not([type="checkbox"]), 
.modern-form select, 
.modern-form textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-bright);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.modern-form input:focus, 
.modern-form select:focus, 
.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(45, 106, 222, 0.05);
    box-shadow: 0 0 15px rgba(45, 106, 222, 0.1);
}

/* Bouton pleine largeur */
.btn-block {
    width: 100%;
    justify-content: center;
    padding: 18px !important;
}

/* Case à cocher stylisée */
.checkbox-wrapper {
    background: rgba(45, 106, 222, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(45, 106, 222, 0.1);
}

.custom-checkbox {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-size: 0.9rem;
}

/* Success Overlay */
.success-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 10;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* --- VERSION PC (Bureau) --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

/* On cache les boutons qui sont DANS la liste sur PC */
.nav-links .mobile-only-btn {
    display: none;
}

/* On affiche bien les boutons de droite sur PC */
.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* 🎯 CORRECTION : On cache le burger par défaut sur PC */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* --- VERSION MOBILE (992px et moins) --- */
@media (max-width: 992px) {
    /* 🎯 CORRECTION : On affiche le burger seulement ici */
    .mobile-toggle {
        display: flex !important;
    }

    /* On cache les actions de droite pour éviter les doublons */
    .nav-actions {
        display: none !important;
    }

    /* 1. On s'assure que le container est un flex-column parfait */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        justify-content: center; /* Centre verticalement */
        align-items: center;     /* Centre horizontalement */
        gap: 30px;
        
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #05070a;
        transition: 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        padding: 0;
    }

    /* 2. On force les éléments de liste à prendre toute la largeur pour centrer le texte */
    .nav-links li {
        width: 100%;
        text-align: center;
        list-style: none;
    }

    /* 3. Style des liens simples */
    .nav-links .nav-link {
        font-size: 1.2rem;
        color: white;
    }

    /* 4. FIX DU BOUTON : On le force à être en bloc au centre */
    .nav-links .mobile-only-btn {
        display: flex !important;
        justify-content: center;
        width: 100%;
    }

    /* Le bouton lui-même */
    .nav-links .btn-devis, 
    .nav-links .btn-contact {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 12px;
        text-align: center;
        width: auto; 
        min-width: 180px; 
    }

    /* 5. Le menu qui glisse */
    .nav-links.active {
        right: 0;
    }

    /* Animation du burger en X */
    .mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

}
/* --- SECTION PRODUITS : STYLE HARDWARE --- */
.section-header-tech {
    margin-bottom: 80px;
    text-align: left;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

.tech-tag {
    font-family: 'JetBrains Mono', monospace; /* Si vous l'avez, sinon monospace */
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.tech-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* L'item Individuel */
.tech-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-item.reverse {
    direction: rtl; /* Inverse le texte et l'image */
}
.tech-item.reverse .tech-content { direction: ltr; } /* Remet le texte à l'endroit */

/* Contenu Texte */
.tech-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.serial-no {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-main);
    opacity: 0.6;
}

.tech-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.tech-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.spec-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: var(--radius-md);
}

.spec-label {
    display: block;
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

.spec-value {
    color: var(--text-bright);
    font-weight: 600;
}

/* Visuel Technique */
.tech-visual {
    position: relative;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.visual-container {
    position: relative;
}

.big-emoji {
    font-size: 8rem;
    filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.3));
}

/* Animation de ligne de scan (Hardware effect) */
.scan-line {
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scanAnimation 3s infinite linear;
}

@keyframes scanAnimation {
    0% { top: 0%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tech-item, .tech-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }
    .tech-visual { height: 250px; }
}
.tech-badge.hybrid {
    border-color: #ffffff;
    color: #ffffff;
}
/* --- SECTION PACKS : LOOK MODULE TECHNIQUE --- */
.packs-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pack-module {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* Badge de statut style "Console" */
.pack-status {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.pack-body {
    padding: 30px;
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr; /* Structure en 3 colonnes sur PC */
    gap: 30px;
    align-items: center;
}

.pack-main-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.pack-symbol {
    font-size: 2.5rem;
    background: rgba(0, 210, 255, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 210, 255, 0.1);
}

.pack-text h3 {
    color: var(--text-bright);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.pack-text p {
    font-size: 0.9rem;
    max-width: 300px;
}

/* Liste des spécifications */
.pack-spec-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-item {
    font-size: 0.95rem;
    color: var(--text-bright);
}

.spec-item span {
    color: var(--primary);
    font-weight: 800;
    margin-right: 10px;
    font-family: monospace;
}

/* Boutons style "Action" */
.btn-tech {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    text-align: center;
    width: 100%;
}

.btn-tech.secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-bright);
}

.btn-tech:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

/* Mise en avant du pack populaire */
.pack-module.active {
    border-color: var(--primary);
    box-shadow: inset 0 0 20px rgba(0, 210, 255, 0.05);
}

/* RESPONSIVE MOBILE */
@media (max-width: 992px) {
    .pack-body {
        grid-template-columns: 1fr; /* On empile sur mobile */
        text-align: left;
    }
}
/* --- SECTION CTA PARTICULIERS --- */
.section-cta-personal {
    padding: 100px 0;
}

.cta-terminal-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, #0a0a0c 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* Grille de fond subtile */
.bg-grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: center;
}

/* Indicateur de statut */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.dot.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.cta-main-text h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Bénéfices empilés */
.benefits-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.tag-icon { font-size: 1.2rem; }

.tag-txt strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-bright);
}

.tag-txt span {
    font-size: 0.75rem;
    color: var(--text-main);
}

/* Bouton spécifique Hardware */
.btn-hardware {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    padding: 18px 30px;
    font-weight: 800;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-hardware:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cta-grid { grid-template-columns: 1fr; }
    .cta-terminal-box { padding: 40px 20px; }
    .cta-main-text h2 { font-size: 2rem; }
}
/* --- SECTION FINAL CTA : COMMAND CENTER --- */
.section-final-cta {
    padding: 120px 0;
    background: radial-gradient(circle at center, #101014 0%, var(--bg-dark) 100%);
}

.cta-command-center {
    background: #0d0d10;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Effet de balayage laser en arrière-plan */
.cta-scan-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 210, 255, 0.03) 50%, 
        transparent 100%);
    background-size: 100% 200%;
    animation: scanMove 8s linear infinite;
    pointer-events: none;
}

@keyframes scanMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 200%; }
}

.tech-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: monospace;
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.cta-command-center h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-bright);
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-glow {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

/* Bouton Cyber-Style */
.action-frame {
    display: inline-block;
    padding: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.btn-cyber {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    padding: 20px 60px;
    text-decoration: none;
    border-radius: calc(var(--radius-md) - 2px);
    transition: var(--transition);
}

.btn-glitch-effect {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.btn-sub {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 5px;
    font-family: monospace;
}

.btn-cyber:hover {
    background: transparent;
    color: #000;
}

.btn-cyber:hover .btn-glitch-effect,
.btn-cyber:hover .btn-sub {
    color: #000;
}

/* Stats Footer */
.cta-footer-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.stat-icon {
    color: var(--primary);
    font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cta-command-center h2 { font-size: 2rem; }
    .cta-footer-stats { flex-direction: column; gap: 15px; }
}