.logo-wrap {
    display:flex;
    align-items:center;
    gap:10px;
}

.logo {
    height:40px;
}

.brand {
    font-family:'Orbitron';
    font-size:1.2rem;
    background:linear-gradient(135deg,#6C3BFF,#00D4FF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.nav {
    display:flex;
    gap:30px;
}

.nav a {
    color:#aaa;
    text-decoration:none;
    transition:0.3s;
}

.nav a:hover {
    color:white;
}

/*HERO*/
.hero-seo {
    margin-top:25px;

    font-size:0.95rem;
    line-height:1.7;

    color:#8f8f9a;

    max-width:520px;
}

.hero-left {
    display:flex;
    flex-direction:column;
    gap:22px;
}

.hero-left h1 {
    line-height:1.15;
    margin:0;
}

/* TEXT */
.hero h1 {
    font-family:'Orbitron';
    font-size:3rem;
    background:linear-gradient(135deg,#6C3BFF,#00D4FF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-sub {
    max-width:540px;
    line-height:1.7;
    color:#a0a0aa;
    margin:0;
}

.hero p {
    margin-top:15px;
    color:#aaa;
}

/* BUTTONS */
.hero-buttons {
    display:flex;
    gap:15px;
    margin-top:5px;
}

.btn {
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
}

.primary {
    background:linear-gradient(135deg,#6C3BFF,#00D4FF);
    color:white;
}

.btn.secondary {
    background:transparent;
    border:1px solid rgba(255,255,255,0.12);

    color:#d0d0d8;
    letter-spacing:0.3px;
    backdrop-filter:blur(10px);

    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}


.btn.plans {
    opacity:0.88;

    box-shadow:0 8px 25px rgba(108,59,255,0.18);
}

/* hover */
.btn.plans:hover {
    opacity:1;
}



/* hover premium */
.btn.secondary:hover {
    background:rgba(255,255,255,0.05);

    border-color:rgba(108,59,255,0.5);

    color:#fff;

    box-shadow:0 0 20px rgba(108,59,255,0.15);

    transform:translateY(-2px);
}

/*TITRE ULTRA PREMIUM*/

.hero h1 {
    font-family:'Orbitron';
    font-size:3.2rem;
    line-height:1.2;

    background:linear-gradient(90deg,#6C3BFF,#00D4FF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
        0 0 10px rgba(108,59,255,0.3),
        0 0 20px rgba(0,212,255,0.2);

    animation:glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,100% {
        text-shadow:0 0 10px rgba(108,59,255,0.2);
    }
    50% {
        text-shadow:0 0 25px rgba(0,212,255,0.4);
    }
}

/*BOUTONS HAUT DE GAMME*/

.btn.primary {
    position:relative;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(108,59,255,0.4);
}

.btn.primary::after {
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
    transition:0.6s;
}

.btn.primary:hover::after {
    left:100%;
}

.btn:hover {
    transform:translateY(-3px) scale(1.03);
}

/*SCROLL EFFECT (ultra premium)*/

.header.scrolled {
    background:rgba(10,10,15,0.9);
    box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

/*LOGO PREMIUM*/

.logo {
    height:40px;
    filter:drop-shadow(0 0 10px rgba(108,59,255,0.5));
}

/*NAV LINKS HAUT DE GAMME*/

.nav a {
    position:relative;
    color:#aaa;
    text-decoration:none;
    font-size:0.95rem;
    transition:0.3s;
}

/* hover */
.nav a:hover {
    color:white;
}

/* underline animé */
.nav a::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:linear-gradient(135deg,#6C3BFF,#00D4FF);
    transition:0.3s;
}

.nav a:hover::after {
    width:100%;
}

/*CTA DANS LE HEADER*/

.nav-cta {
    margin-left:20px;
    padding:8px 18px;
    border-radius:20px;

    background:linear-gradient(135deg,#6C3BFF,#00D4FF);
    color:white;

    font-size:0.9rem;
    transition:0.3s;
}

.nav-cta:hover {
    transform:scale(1.05);
    box-shadow:0 0 20px rgba(108,59,255,0.6);
}


/*ANIMATION BURGER → CROIX*/

/* état actif */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity:0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}

/*TRANSITION (important pour le rendu premium)*/

.menu-toggle span {
    transition:0.3s;
}

/*Proof*/

.hero-proof {
    margin-top:20px;
    display:flex;
    gap:25px;
    color:#777;
    font-size:0.9rem;
    flex-wrap:wrap;
}

.hero-proof span {
    display:flex;
    align-items:center;
    gap:6px;
    transition:0.3s;
}

/* effet hover subtil */
.hero-proof span:hover {
    color:#fff;
    transform:translateY(-2px);
}

.hero-proof span {
    display:flex;
    align-items:center;
    gap:6px;
    transition:0.3s;

    background:rgba(255,255,255,0.03);
    padding:6px 12px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.05);
}

/*CTA ULTRA PREMIUM*/

.btn.gradient {
    position:relative;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(108,59,255,0.4);
    background:linear-gradient(135deg,#6C3BFF,#00D4FF);

    color:#fff;

    border:none;

    box-shadow:0 10px 30px rgba(108,59,255,0.35);
}



.btn.gradient::after {
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
    transition:0.6s;
}

.btn.gradient:hover::after {
    left:100%;
}

.btn.gradient:hover {
    transform:translateY(-2px) scale(1.05);
    box-shadow:0 10px 35px rgba(108,59,255,0.6);
}


/*Whatsapp*/

.whatsapp {
    position:fixed;
    bottom:20px;
    right:20px;

    width:60px;
    height:60px;

    background:#25D366;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.4),
        0 0 15px rgba(37,211,102,0.5);
    z-index:999;

    transition: all 0.3s ease;
}

.whatsapp img {
    width:30px;
    height:30px;
}

/* hover */
.whatsapp:hover {
    transform:scale(1.1);
    box-shadow:0 15px 35px rgba(37,211,102,0.6);
}



/*ANIMATION PULSE (premium mais subtil)*/

.whatsapp::after {
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    border:2px solid #25D366;
    animation:pulse 2s infinite;
}

@keyframes pulse {
    0% { transform:scale(1); opacity:1; }
    100% { transform:scale(1.6); opacity:0; }
}


/* Popup Whatsapp Scroll */

.wa-popup {
    position:fixed;
    bottom:100px;
    right:20px;

    background:#111;
    padding:15px;
    border-radius:15px;

    width:220px;

    box-shadow:0 15px 40px rgba(0,0,0,0.6);

    opacity:0;
    transform:translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index:998;
}

/* visible */
.wa-popup.show {
    opacity:1;
    transform:translateY(0) scale(1);
    pointer-events:auto;
}

.wa-content p {
    font-size:0.9rem;
    margin-bottom:10px;
    color:#ccc;
}

.wa-btn {
    display:block;
    text-align:center;
    padding:10px;
    border-radius:20px;
    background:#25D366;
    color:white;
    text-decoration:none;
    font-size:0.9rem;
}

/* bouton fermer */
.wa-close {
    position:absolute;
    top:5px;
    right:10px;
    cursor:pointer;
    color:#777;
    font-size:1.2rem;
}


/*SECTION “HOW IT WORKS” (CRITIQUE)*/

.how {
    padding:80px 20px;
    text-align:center;
}

.how h2 {
    font-family:'Orbitron';
    font-size:2rem;
    margin-bottom:40px;
    background:linear-gradient(135deg,#6C3BFF,#00D4FF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.how-container {
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.how-step {
    background:rgba(255,255,255,0.02);
    border:1px solid rgba(255,255,255,0.05);
    border-radius:15px;
    padding:30px;
    width:280px;

    transition:0.3s;
}

.how-step:hover {
    transform:translateY(-8px);
    border-color:rgba(108,59,255,0.4);
}

.step-number {
    font-size:1.5rem;
    font-weight:600;
    color:#6C3BFF;
    margin-bottom:10px;
}

.how-step h3 {
    margin-bottom:10px;
}

.how-step p {
    font-size:0.9rem;
    color:#aaa;
}


/*Devices Section*/

.devices {
    padding:80px 20px;
    text-align:center;
}

.devices h2 {
    font-family:'Orbitron';
    font-size:2rem;
    margin-bottom:10px;
    background:linear-gradient(135deg,#6C3BFF,#00D4FF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.devices-sub {
    color:#aaa;
    margin-bottom:40px;
}

.devices-container {
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.device {
    width:140px;
    height:140px;

    background:rgba(255,255,255,0.02);
    border:1px solid rgba(255,255,255,0.05);
    border-radius:15px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    transition: all 0.3s ease;
}

.device span {
    font-size:2rem;
    margin-bottom:10px;
}

.device p {
    font-size:0.9rem;
    color:#ccc;
}

/* hover premium */
.device:hover {
    transform:translateY(-8px);
    border-color:rgba(108,59,255,0.4);
    box-shadow:0 10px 30px rgba(108,59,255,0.2);
}

/*FAQ*/

.faq {
    padding:100px 20px;
    max-width:900px;
    margin:auto;
    position:relative;
}

/* glow background */
.faq::before {
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(108,59,255,0.15), transparent);
    top:-150px;
    left:-100px;
    filter:blur(80px);
    z-index:-1;
}

.faq h2 {
    text-align:center;
    margin-bottom:50px;
    font-family:'Orbitron';
    font-size:2rem;
    background:linear-gradient(135deg,#6C3BFF,#00D4FF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* CARD */
.faq-item {
    margin-bottom:15px;
    border-radius:15px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);

    transition: all 0.3s ease;
    overflow:hidden;
}

.faq-item:hover {
    border-color:rgba(108,59,255,0.5);
    box-shadow:0 0 20px rgba(108,59,255,0.2);
}

/* QUESTION */
.faq-question {
    padding:18px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-weight:500;
}

.faq-question span {
    color:#fff;
}

/* ICON FUTURISTE */
.faq-icon {
    width:18px;
    height:18px;
    position:relative;
}

.faq-icon::before,
.faq-icon::after {
    content:"";
    position:absolute;
    background:#6C3BFF;
    transition:0.3s;
}

.faq-icon::before {
    width:100%;
    height:2px;
    top:50%;
}

.faq-icon::after {
    width:2px;
    height:100%;
    left:50%;
}

/* ANSWER */
.faq-answer {
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
}

.faq-answer p {
    padding:0 20px 20px;
    color:#aaa;
    font-size:0.95rem;
}

/* ACTIVE STATE */
.faq-item.active {
    background:rgba(108,59,255,0.08);
}

.faq-item.active .faq-answer {
    max-height:150px;
}

.faq-item.active .faq-icon::after {
    transform:scaleY(0);
}


.faq-question:hover {
    color:#fff;
    text-shadow:0 0 8px rgba(108,59,255,0.6);
}



/*CTA*/

.final-cta {
    padding:100px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* glow background */
.final-cta::before {
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(108,59,255,0.25), transparent 70%);
    top:-200px;
    left:50%;
    transform:translateX(-50%);
    filter:blur(100px);
    z-index:-1;
}

/* title */
.final-cta h2 {
    font-family:'Orbitron';
    font-size:2.5rem;
    background:linear-gradient(135deg,#6C3BFF,#00D4FF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:15px;
}

/* subtitle */
.cta-sub {
    color:#aaa;
    margin-bottom:30px;
    font-size:1rem;
}

/* bouton boost */
.cta-btn {
    padding:16px 40px;
    font-size:1.1rem;
    border-radius:40px;

    box-shadow:0 10px 40px rgba(108,59,255,0.4);
}

/* hover premium */
.cta-btn:hover {
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 15px 60px rgba(108,59,255,0.6);
}

/* trust */
.cta-trust {
    margin-top:20px;
    font-size:0.9rem;
    color:#888;
}

/*INPUT / CLICK FEEDBACK (si ajouté plus tard)*/

input:focus {
    border-color:#6C3BFF;
    box-shadow:0 0 10px rgba(108,59,255,0.3);
}

/*Footer*/

.footer {
    padding:60px 20px 30px;
    position:relative;
    background:#0A0A0F;
    overflow:hidden;
}

/* glow background */
.footer::before {
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(108,59,255,0.15), transparent);
    bottom:-200px;
    left:-150px;
    filter:blur(100px);
    z-index:-1;
}

.footer-container {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    max-width:1100px;
    margin:auto;
    flex-wrap:wrap;
    gap:30px;
}

/* brand */
.footer-brand {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-brand h3 {
    font-family:'Orbitron';
    background:linear-gradient(135deg,#6C3BFF,#00D4FF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.footer-brand p {
    color:#888;
    margin-top:5px;
}

/* links */
.footer-links {
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-links a {
    color:#aaa;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover {
    color:#fff;
    text-shadow:0 0 8px rgba(108,59,255,0.6);
}

/* contact */
.footer-contact p {
    color:#888;
    margin-bottom:10px;
}

.footer-whatsapp {
    display:inline-block;
    padding:10px 18px;
    border-radius:20px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    font-size:0.9rem;
    transition:0.3s;
}

.footer-whatsapp:hover {
    transform:scale(1.05);
    box-shadow:0 0 15px rgba(37,211,102,0.5);
}

/* bottom */
.footer-bottom {
    margin-top:40px;
    text-align:center;
    font-size:0.85rem;
    color:#666;
}

.footer::after {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
    background:linear-gradient(90deg, transparent, #6C3BFF, transparent);
}

/* effet lien premium */
.link-hover {
    position:relative;
    color:#aaa;
    text-decoration:none;
    transition:0.3s;
}

.link-hover:hover {
    color:#fff;
    text-shadow:0 0 10px rgba(108,59,255,0.6);
}

/* underline animé */
.link-hover::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:2px;
    background:linear-gradient(135deg,#6C3BFF,#00D4FF);
    transition:0.3s;
    pointer-events:none;
}

.link-hover:hover::after {
    width:100%;
}


/*Footer Logo*/


.footer-logo {
    width:70px;
    margin-bottom:15px;

    filter:drop-shadow(0 0 12px rgba(108,59,255,0.5));

    transition:0.3s ease;
}

/* hover subtil */
.footer-logo:hover {
    transform:scale(1.05);
    filter:drop-shadow(0 0 18px rgba(0,212,255,0.6));
}
