:root { --orange: #f56a31; --bg: #050505; --glass: rgba(255, 255, 255, 0.03); }
body { background: var(--bg); color: #fff; font-family: 'Inter', sans-serif; margin: 0; overflow-x: hidden; }

/* SCANNER GLOBAL 
.jef-scanner-line {
    position: fixed; top: 0; left: 0; width: 100%; height: 2px;
    background: var(--orange); box-shadow: 0 0 15px var(--orange);
    z-index: 100; animation: scan 4s linear infinite; opacity: 0.3;
} */

.jef-wrapper { max-width: 1000px; margin: 0 auto; padding: 100px 20px; }

/* TITRES MASSIFS */
.jef-title { font-family: 'Arimo', sans-serif; font-weight: 900; font-size: 4rem; text-align: center; }
.jef-orange { color: var(--orange); text-shadow: 0 0 20px rgba(245, 106, 49, 0.5); }

/* BOX DESIGN */
.jef-box {
    background: var(--glass); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px; margin-bottom: 20px; cursor: pointer;
    backdrop-filter: blur(10px); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}

.jef-box:hover { border-color: var(--orange); transform: scale(1.01); }

/* CONTENU & SOUS-MENU */
.jef-box-body { max-height: 0; overflow: hidden; padding: 0 40px; transition: 0.6s ease; opacity: 0; }
.jef-box.active .jef-box-body { max-height: 800px; padding-bottom: 40px; opacity: 1; }

.jef-sub-trigger {
    width: 100%; background: rgba(245, 106, 49, 0.1); border: 1px solid var(--orange);
    color: var(--orange); padding: 12px; border-radius: 10px; cursor: pointer;
    font-weight: 700; display: flex; justify-content: space-between; margin-top: 20px;
}

.jef-sub-content { max-height: 0; overflow: hidden; transition: 0.4s ease; background: #00000000; border-radius: 10px; }
.jef-submenu.open .jef-sub-content { max-height: 200px; padding: 15px; margin-top: 5px; }

/* LASER EFFECT */
.jef-laser {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 106, 49, 0.1), transparent);
    transform: skewX(-25deg); pointer-events: none;
}
.jef-box:hover .jef-laser { animation: laserMove 1s forwards; }

@keyframes scan { 0% { top: 0; } 100% { top: 100%; } }
@keyframes laserMove { 0% { left: -100%; } 100% { left: 150%; } }


/* ============================================================
   JEFHIP DIGITAL - GLOBAL CENTERING FIX (PC & MOBILE)
   ============================================================ */

/* 1. Force le centrage de tout le contenu dans le body */
body {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre horizontalement */
    justify-content: center; /* Centre verticalement si la page est courte */
    min-height: 100vh; /* Prend toute la hauteur de l'écran */
    margin: 0;
    padding: 0;
    text-align: center; /* Centre les textes à l'intérieur des éléments */
}

/* 2. S'assure que le container principal est centré et ne déborde pas */
.jef-wrapper, 
.jef-main-content,
.jef-container {
    width: 100%;
    max-width: 1000px; /* Limite la largeur sur PC */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre les box et le header */
    padding: 60px 20px; /* Espace respirable */
    box-sizing: border-box;
}

/* 3. Centre les titres spécifiquement */
.jef-glitch-title, 
.jef-title,
.jef-subtitle,
.jef-tagline {
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* 4. Centre les box et leur contenu */
.jef-box, 
.jef-faq-card,
.jef-faq-box {
    width: 100%; /* Prend toute la largeur disponible du container */
    max-width: 800px; /* Largeur optimale pour la lecture */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre le contenu interne */
}

/* 5. Centre le texte à l'intérieur des box */
.jef-box-header h3,
.jef-faq-question h3,
.jef-box-body p,
.jef-answer-content p {
    text-align: center;
    width: 100%;
}

/* 6. Centre le footer */
.jef-footer {
    width: 100%;
    text-align: center;
    margin-top: auto; /* Pousse le footer vers le bas */
    padding: 20px;
}


/* --- STYLE DES LIENS EXPERT --- */
.jef-link {
    color: #ffffff; /* Gris technique par défaut */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    padding: 8px 0;
    position: relative;
}

/* Effet au survol du lien */
.jef-link:hover {
    color: #f56a31; /* Orange Jefhip */
    transform: translateX(10px); /* Décalage fluide */
    text-shadow: 0 0 10px rgba(245, 106, 49, 0.5);
}

/* Ajout d'une puce animée avant le lien */
.jef-link::before {
    content: '→';
    margin-right: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #f56a31;
}

.jef-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}



/* --- STYLE DES MENUS / BOX --- */
.jef-box, .jef-faq-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px); /* Effet de verre flou */
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

/* Hover sur la boîte entière */
.jef-box:hover, .jef-faq-card:hover {
    background: rgba(245, 106, 49, 0.05); /* Teinte orange très légère */
    border-color: #f56a31; /* Bordure orange éclatante */
    box-shadow: 0 0 30px rgba(245, 106, 49, 0.15);
    transform: translateY(-5px); /* Soulèvement pro */
}

/* Effet Laser (Brillance) qui traverse la box */
.jef-laser {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(245, 106, 49, 0.2), 
        transparent
    );
    transform: skewX(-25deg);
    pointer-events: none;
}

.jef-box:hover .jef-laser, .jef-faq-card:hover .jef-laser {
    animation: laserSweep 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes laserSweep {
    0% { left: -100%; }
    100% { left: 150%; }
}


/* --- STYLISATION DES LISTES ET MESSAGES (SOUS-MENUS) --- */

/* 1. Suppression des puces par défaut et centrage */
.jef-sub-content ul {
    list-style: none; /* Supprime le ::marker blanc moche */
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Tout au centre */
    gap: 12px; /* Espace entre les messages */
}

/* 2. Design des messages (li) */
.jef-sub-content li {
    font-size: 0.95rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
    padding: 5px 15px;
}

/* 3. Nouveau Marker JEFHIP (La puce orange design) */
.jef-sub-content li::before {
    content: ''; 
    position: absolute;
    left: -15px; /* Ajuste selon ton centrage */
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #f56a31; /* Orange Jefhip */
    border-radius: 50%; /* Cercle parfait */
    box-shadow: 0 0 10px #f56a31; /* Effet néon */
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* 4. Effet au survol du message */
.jef-sub-content li:hover {
    color: #fff;
    transform: scale(1.05); /* Grossit légèrement */
}

.jef-sub-content li:hover::before {
    opacity: 1;
    left: -20px; /* La puce s'écarte un peu au hover */
    box-shadow: 0 0 15px #f56a31;
}

/* 5. Style pour les messages importants (ex: Support 24/7) */
.jef-sub-content li strong {
    color: #f56a31;
    font-weight: 700;
}

/* --- AJUSTEMENT DES LIENS DANS LES MESSAGES --- */
.jef-sub-content .jef-link {
    justify-content: center; /* Centre le lien si c'est un flex */
    font-size: 0.9rem;
    margin-top: 5px;
}