/* ========================================= */
/* 1. CONFIGURATION GLOBALE                  */
/* ========================================= */
:root {
    --bg-color: #060808;       /* Fond très sombre */
    --text-color: #e6f2ee;     /* Texte blanc cassé */
    --primary-color: #2dffb4;  /* Vert neon adouci */
    --primary-rgb: 45, 255, 180;
    --card-bg: rgba(255, 255, 255, 0.04); /* Fond des cartes standard */
    --font-main: 'Outfit', sans-serif;
    --font-title: 'Space Grotesk', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden; /* Empêche le scroll horizontal */
    padding-top: 44px; /* Espace pour la bannière urgente */
}

body.process-page {
    background: #070707;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 20px;
    background: #fff;
    color: #000;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    z-index: 100000;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 15px; }

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* ========================================= */
/* 2. LOADER & CURSEUR                       */
/* ========================================= */

/* Écran de chargement */
#loader {
    position: fixed; inset: 0; 
    background: var(--bg-color); 
    z-index: 99999;
    display: flex; justify-content: center; align-items: center; 
    transition: opacity 0.5s;
}
.spinner {
    width: 50px; height: 50px; 
    border: 3px solid #333; 
    border-top-color: var(--primary-color);
    border-radius: 50%; 
    animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Curseur personnalisé (Désactivé sur tactile) */
@media (hover: hover) and (pointer: fine) {
    .cursor, .cursor2 {
        position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999;
        transform: translate(-50%, -50%);
    }
    .cursor { width: 8px; height: 8px; background: var(--primary-color); }
    .cursor2 { width: 40px; height: 40px; border: 1px solid var(--primary-color); transition: 0.1s; }
}

/* ========================================= */
/* 3. HEADER & NAVIGATION                    */
/* ========================================= */
header {
    padding: 15px 0; 
    position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(10, 10, 10, 0.9); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-title); font-weight: 700; font-size: 1.5rem; color: #fff; }
.highlight { color: var(--primary-color); }

/* Liens Menu (Desktop) */
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a:hover { color: var(--primary-color); }

/* Bouton dans le menu */
.btn-nav { 
    border: 1px solid var(--primary-color); 
    padding: 8px 20px; border-radius: 50px; 
    color: var(--primary-color) !important; 
    font-weight: bold;
}
.btn-nav:hover { background: var(--primary-color); color: #000 !important; }

/* Burger (Caché sur PC) */
.burger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 6px;
}
.burger span { width: 25px; height: 3px; background: white; margin: 5px; transition: 0.3s; display: block; }

/* ========================================= */
/* 4. HERO SECTION                           */
/* ========================================= */
.hero { 
    height: 100vh; display: flex; align-items: center; justify-content: center; 
    text-align: center; padding-top: 60px; 
}
.tag { 
    display: inline-block; background: rgba(var(--primary-rgb), 0.1); 
    color: var(--primary-color); padding: 5px 15px; border-radius: 20px; 
    font-size: 0.9rem; margin-bottom: 20px; font-weight: bold; letter-spacing: 1px;
}
.hero h1 { 
    font-family: var(--font-title); font-size: 3.5rem; 
    line-height: 1.1; margin-bottom: 20px; color: #fff; 
}
.hero p { max-width: 600px; margin: 0 auto 30px; color: #bbb; font-size: 1.2rem; }
.hero-btns { display: flex; gap: 15px; justify-content: center; }

/* Process Page */
.process-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    background: radial-gradient(circle at 15% 10%, rgba(var(--primary-rgb), 0.18), transparent 42%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 38%),
                linear-gradient(180deg, rgba(7, 7, 7, 1), rgba(9, 9, 9, 1));
}
.process-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}
.process-hero-copy h1 {
    font-family: var(--font-title);
    font-size: 3.1rem;
    color: #fff;
    margin-bottom: 18px;
}
.process-hero-copy p { color: #bbb; font-size: 1.1rem; max-width: 560px; margin-bottom: 26px; }
.process-hero-copy { animation: heroFade 0.9s ease both; }

.process-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin-top: 30px;
}
.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    animation: cardRise 0.8s ease both;
}
.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.2s; }
.stat-card strong { color: #fff; font-size: 1.2rem; display: block; }
.stat-card span { color: #9a9a9a; font-size: 0.95rem; }

.process-hero-card {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.process-hero-card h2 { color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.process-hero-card p { color: #aaa; font-size: 0.95rem; margin-bottom: 16px; }
.snapshot-list {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}
.snapshot-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #bbb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 10px;
}
.snapshot-list li strong { color: #fff; font-weight: 600; }
.snapshot-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}
.snapshot-steps div {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
}
.snap-step { color: var(--primary-color); font-weight: 700; display: block; margin-bottom: 6px; }
.snapshot-steps p { color: #9a9a9a; font-size: 0.85rem; }

.process-strip {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 26px 0;
}
.strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    color: #8f8f8f;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-align: center;
}

/* Process Page Sections */
.process-main {
    background: #0a0c0c;
    position: relative;
    overflow: hidden;
}
.process-main::before { content: none; }
.process-section {
    position: relative;
    background: transparent;
    border-top: 0;
    border-bottom: 0;
}
.process-section.alt {
    background: transparent;
}
.process-cta {
    background: transparent;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
}
.pillar-card h3 { color: #fff; margin-bottom: 8px; font-family: var(--font-title); }
.pillar-card p { color: #bbb; margin-bottom: 14px; }
.pillar-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(var(--primary-rgb), 0.12);
    border-radius: 999px;
    padding: 6px 12px;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    max-width: 1100px;
    margin: 0 auto;
}

/* Showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.showcase-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}
.showcase-media {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.showcase-media-one {
    background-image: linear-gradient(120deg, rgba(var(--primary-rgb), 0.12), rgba(0, 0, 0, 0.1));
}
.showcase-media-two {
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.2));
}
.showcase-media-three {
    background-image: linear-gradient(120deg, rgba(var(--primary-rgb), 0.08), rgba(255, 255, 255, 0.05));
}
.showcase-info {
    padding: 18px 20px 22px;
}
.showcase-info h3 { color: #fff; margin-bottom: 6px; font-family: var(--font-title); }
.showcase-info p { color: #bbb; }

/* Boutons Généraux */
.btn { padding: 12px 30px; border-radius: 50px; font-weight: 600; cursor: pointer; border: none; font-size: 1rem; }
.btn-primary { background: var(--primary-color); color: #000; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3); }
.btn-outline { background: transparent; border: 1px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: #000; }

/* ========================================= */
/* 5. SECTIONS GÉNÉRALES & SERVICES          */
/* ========================================= */
.section { padding: 100px 0; }
.bg-darker { background: #050505; }

.section-title { 
    font-family: var(--font-title); font-size: 2.5rem; color: #fff; 
    margin-bottom: 20px; text-align: center; 
}
.subtitle { text-align: center; color: #888; margin-bottom: 60px; font-size: 1.1rem; }

/* Grilles */
.services-grid, .portfolio-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; 
}

/* Cartes Services */
.card {
    background: var(--card-bg); padding: 30px; border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.card:hover { transform: translateY(-10px); border-color: var(--primary-color); }
.icon-box { font-size: 2.5rem; margin-bottom: 20px; }
.card h3 { margin-bottom: 10px; color: #fff; font-family: var(--font-title); }

/* Engagements */
.engagements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.engagement-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s;
}
.engagement-card:hover { transform: translateY(-8px); border-color: var(--primary-color); }
.engagement-icon { font-size: 1.8rem; display: inline-block; margin-bottom: 12px; }
.engagement-card h3 { color: #fff; margin-bottom: 8px; font-family: var(--font-title); }
.engagement-card p { color: #bbb; }

/* ========================================= */
/* 6. PORTFOLIO                              */
/* ========================================= */
.portfolio-item { 
    background: var(--card-bg); border-radius: 15px; overflow: hidden; 
    border: 1px solid rgba(255,255,255,0.05); display: block; transition: 0.3s;
}
.portfolio-item:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.portfolio-preview {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #0d0f10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.portfolio-preview iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1280px;
    height: 720px;
    border: 0;
    transform: translate(-50%, -50%) scale(0.255);
    transform-origin: center;
    pointer-events: none;
    filter: saturate(0.98) contrast(1.05) brightness(0.98);
    opacity: 0.96;
}
.portfolio-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.6));
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-preview-overlay { opacity: 0.2; }

.portfolio-info { padding: 25px; }
.portfolio-info h3 { color: #fff; font-size: 1.2rem; margin-bottom: 5px; }
.link-text { color: var(--primary-color); font-size: 0.9rem; font-weight: bold; text-transform: uppercase; margin-top: 15px; display: block; }

/* ========================================= */
/* 7. NOUVELLE SECTION TARIFS (Glassmorphism)*/
/* ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center; /* Important pour l'effet de taille */
}

/* La Carte Tarif */
.pricing-card {
    background: rgba(20, 20, 20, 0.6); /* Fond semi-transparent */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px); /* Effet verre */
    text-align: left; /* Reset alignement */
}

/* Contenu (au dessus du spotlight) */
.card-content { padding: 40px; position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; }

/* Header Tarif */
.pricing-card .header { text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; margin-bottom: 30px; }
.plan-name { display: block; color: var(--primary-color); font-family: var(--font-title); font-weight: bold; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; }
.pricing-card .price { font-size: 3.5rem; font-weight: 700; color: #fff; line-height: 1; }
.pricing-card .currency { font-size: 1.5rem; vertical-align: super; opacity: 0.7; }
.pricing-card .desc { color: #888; margin-top: 15px; font-size: 0.95rem; }

/* Liste Fonctions */
.features-list { flex-grow: 1; margin-bottom: 30px; }
.features-list li { margin-bottom: 15px; color: #ccc; font-size: 1rem; display: flex; align-items: center; gap: 10px; }
.check { color: var(--primary-color); font-weight: bold; font-size: 1.2rem; }

/* Offre Populaire */
.pricing-card.popular {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.1);
    z-index: 10;
}
.pricing-card.popular:hover { box-shadow: 0 0 50px rgba(var(--primary-rgb), 0.2); }
.popular-badge {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    background: var(--primary-color); color: #000; padding: 5px 15px;
    font-weight: bold; font-size: 0.8rem; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; z-index: 3;
}

/* Effet Spotlight (Lumière souris) */
.pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    z-index: 1; opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.pricing-card:hover::before { opacity: 1; }

/* Timeline Process */
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding-left: 28px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 2px;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.6), rgba(var(--primary-rgb), 0));
}
.step-card {
    background: var(--card-bg);
    padding: 26px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.step-card::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 30px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.25);
}
.step-number {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.step-card h3 { color: #fff; margin-bottom: 8px; font-family: var(--font-title); }
.step-card p { color: #bbb; }
.step-meta { color: #888; font-size: 0.9rem; display: block; margin-top: 12px; }

@media screen and (min-width: 900px) {
    .process-timeline {
        grid-template-columns: 1fr 1fr;
        column-gap: 80px;
        row-gap: 30px;
        padding-left: 0;
    }
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .step-card { max-width: 520px; }
    .step-card:nth-child(odd) { grid-column: 1; justify-self: end; }
    .step-card:nth-child(even) { grid-column: 2; justify-self: start; }
    .step-card::before {
        left: auto;
        right: -38px;
        top: 32px;
    }
    .step-card:nth-child(even)::before {
        right: auto;
        left: -38px;
    }
}

/* Deliverables */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.deliverable-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 22px;
}
.deliverable-card h3 { color: #fff; margin-bottom: 8px; font-family: var(--font-title); }
.deliverable-card p { color: #bbb; }

/* Social Proof */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.proof-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    color: #bbb;
}
.proof-card p { margin-bottom: 12px; color: #ddd; }
.proof-author { color: var(--primary-color); font-weight: 600; font-size: 0.95rem; }
.logo-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}
.logo-row span {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 10px 14px;
    text-align: center;
}


/* CTA Box */
.cta-box {
    
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 18px;
    padding: 50px 30px;
    text-align: center;
}
.cta-box h2 { color: #fff; margin-bottom: 10px; font-family: var(--font-title); }
.cta-box p { color: #bbb; margin-bottom: 20px; }

/* Processus */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}
.process-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}
.process-step {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
}
.process-card h3 { color: #fff; margin-bottom: 8px; font-family: var(--font-title); }
.process-card p { color: #bbb; }

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}
.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 18px 22px;
}
.faq-item[open] { border-color: var(--primary-color); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: #bbb; margin-top: 10px; }

/* Cookies */
.cookie-banner {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    animation: cookieFade 0.25s ease both;
}
.cookie-banner.closing {
    animation: cookieFadeOut 0.2s ease both;
}
.cookie-content {
    background: rgba(12, 12, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    max-width: 720px;
    width: min(720px, 92vw);
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    animation: cookiePop 0.3s ease both;
}
.cookie-banner.closing .cookie-content {
    animation: cookiePopOut 0.2s ease both;
}
.cookie-text h3 { color: #fff; margin-bottom: 6px; font-size: 1rem; }
.cookie-text p { color: #bbb; max-width: 520px; font-size: 0.95rem; }
.cookie-text a { color: var(--primary-color); text-decoration: underline; text-underline-offset: 4px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { border: 1px solid rgba(255, 255, 255, 0.2); background: transparent; color: #fff; }

/* ========================================= */
/* HERO STATS                                */
/* ========================================= */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-title);
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================= */
/* SECTION À PROPOS                          */
/* ========================================= */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-content h2 {
    margin-bottom: 20px;
}
.about-content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}
.value-item {
    display: flex;
    gap: 16px;
    align-items: start;
}
.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.value-item h4 {
    margin-bottom: 4px;
    color: #fff;
}
.value-item p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}
.tech-stack {
    margin-top: 30px;
}
.tech-stack h4 {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}
.tech-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tech-badge {
    padding: 8px 16px;
    border: 1px solid rgba(45, 255, 180, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    background: rgba(45, 255, 180, 0.05);
}
.about-image {
    position: relative;
}
.about-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.about-photo img {
    width: 100%;
    height: auto;
    display: block;
}
.photo-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(45, 255, 180, 0.3);
}

/* ========================================= */
/* SECTION TÉMOIGNAGES                       */
/* ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(45, 255, 180, 0.15);
}
.testimonial-card.popular {
    border-color: var(--primary-color);
    background: rgba(45, 255, 180, 0.05);
}
.stars {
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.testimonial-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}
.testimonial-author {
    display: flex;
    gap: 12px;
    align-items: center;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.testimonial-author h4 {
    margin-bottom: 2px;
    color: #fff;
    font-size: 1rem;
}
.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px;
    background: rgba(45, 255, 180, 0.03);
    border-radius: 20px;
}
.trust-badge {
    display: flex;
    gap: 12px;
    align-items: center;
}
.trust-icon {
    font-size: 2rem;
}
.trust-badge strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-family: var(--font-title);
}
.trust-badge p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================= */
/* SECTION GARANTIES                         */
/* ========================================= */
.garanties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.garantie-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.garantie-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(45, 255, 180, 0.15);
}
.garantie-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}
.garantie-card h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.2rem;
}
.garantie-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================= */
/* WHATSAPP FLOTTANT                         */
/* ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    cursor: pointer;
    outline: none;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    background: #20BA5A;
}

.whatsapp-float:active {
    transform: translateY(-2px);
}

.whatsapp-float svg {
    display: block;
}

/* ========================================= */
/* BANNIÈRE URGENCE                          */
/* ========================================= */
.urgent-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease;
}
.urgent-banner.hidden {
    display: none;
}
.urgent-text {
    font-weight: 600;
    font-size: 0.95rem;
}
.urgent-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}
.urgent-close:hover {
    background: rgba(255, 255, 255, 0.2);
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 3100;
    display: none;
}
.cookie-modal.open { display: block; }
.cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.cookie-modal-card {
    position: relative;
    max-width: 520px;
    margin: 10vh auto;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    color: #ddd;
}
.cookie-modal-card h3 { color: #fff; margin-bottom: 8px; }
.cookie-modal-card p { color: #bbb; margin-bottom: 18px; }
.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cookie-option span { color: #888; font-size: 0.9rem; display: block; }
.cookie-status { color: var(--primary-color); font-size: 0.85rem; }
.cookie-modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }

.cookie-option.toggle {
    position: relative;
    padding-right: 54px;
}
.cookie-option.toggle input {
    position: absolute;
    right: 0;
    opacity: 0;
    width: 40px;
    height: 22px;
    cursor: pointer;
}
.toggle-ui {
    position: absolute;
    right: 0;
    width: 40px;
    height: 22px;
    background: #333;
    border-radius: 999px;
    transition: 0.3s;
}
.toggle-ui::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: 0.3s;
}
.cookie-option.toggle input:checked + .toggle-ui {
    background: rgba(var(--primary-rgb), 0.6);
}
.cookie-option.toggle input:checked + .toggle-ui::after {
    transform: translateX(18px);
}

.cookie-fab {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 2500;
    background: rgba(12, 12, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.cookie-fab.visible {
    opacity: 1;
    transform: translateY(0);
}

body.cookie-open {
    overflow: hidden;
}

/* ========================================= */
/* 8. CONTACT FORM                           */
/* ========================================= */
.contact-box { background: var(--card-bg); padding: 50px; border-radius: 20px; max-width: 600px; margin: 0 auto; }
.contact-box h2 { text-align: center; color: white; margin-bottom: 30px; font-family: var(--font-title); }

.input-group { margin-bottom: 20px; }
input, textarea, select { 
    width: 100%; padding: 15px; background: rgba(0,0,0,0.3); 
    border: 1px solid #333; color: white; border-radius: 8px; font-family: inherit; font-size: 1rem;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--primary-color); }
textarea { height: 150px; resize: none; }
.full-width { width: 100%; }

#form-status { margin-bottom: 20px; text-align: center; font-weight: bold; }
.form-note { text-align: center; color: #888; margin: 10px 0 20px; font-size: 0.95rem; }

/* ========================================= */
/* 9. PIED DE PAGE                           */
/* ========================================= */
footer { text-align: center; padding: 50px 0; border-top: 1px solid #222; margin-top: 50px; color: #666; }

/* ========================================= */
/* 10. ANIMATIONS D'APPARITION               */
/* ========================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ========================================= */
/* 11. RESPONSIVE MOBILE (CORRECTIF CRITIQUE)*/
/* ========================================= */
@media screen and (max-width: 768px) {
        .portfolio-preview {
            height: 210px;
        }
        .portfolio-preview iframe {
            transform: translate(-50%, -50%) scale(0.225);
        }
    
    .hero h1 { font-size: 2.5rem; }
    .process-hero { padding: 120px 0 70px; }
    .process-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .process-hero-copy h1 { font-size: 2.1rem; line-height: 1.15; }
    .process-hero-copy p { font-size: 1rem; max-width: 100%; }
    .tag { max-width: 100%; white-space: normal; }
    .hero-btns { flex-direction: column; align-items: stretch; }

    .process-hero-card { padding: 20px; }
    .snapshot-list li { flex-direction: column; align-items: flex-start; gap: 6px; }
    .snapshot-steps { grid-template-columns: repeat(3, minmax(70px, 1fr)); }

    .strip-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)); font-size: 0.75rem; }

    .process-timeline { padding-left: 20px; }
    .process-timeline::before { left: 6px; }
    .step-card::before { left: -24px; }

    .showcase-media { height: 160px; }
    .cookie-banner { padding: 12px; }
    .cookie-modal-card { margin: 12vh 16px; }

    /* Affiche le Burger */
    .burger { display: block; z-index: 2000; position: relative; }

    /* Style du Menu Mobile */
    .nav-links {
        position: fixed;
        top: 0; right: 0;
        height: 100vh; width: 80%; max-width: 340px;
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(10, 10, 10, 0.92));
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 8px;
        padding: 120px 30px 40px;
        transform: translateX(100%); /* Caché à droite */
        transition: transform 0.4s ease-in-out;
        border-left: 1px solid #333;
        box-shadow: -20px 0 35px rgba(0,0,0,0.8);
        backdrop-filter: blur(12px);
        z-index: 1500; /* En dessous du burger (2000) mais au dessus du reste */
    }

    /* Classe activée par JS */
    .nav-active { transform: translateX(0%); }

    .nav-links li { opacity: 0; margin: 10px 0; transform: translateX(20px); }
    .nav-links.nav-active li { opacity: 1; transform: translateX(0); }
    .nav-links a { font-size: 1.2rem; letter-spacing: 0.4px; }
    .nav-links .btn-nav { margin-top: 10px; align-self: stretch; text-align: center; }

    .nav-overlay {
        position: fixed; inset: 0;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0; pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1200;
    }
    .nav-links.nav-active ~ .nav-overlay { opacity: 1; pointer-events: auto; }

    body.menu-open { overflow: hidden; }

    /* Tarifs sur mobile */
    .pricing-card.popular { transform: scale(1); margin: 20px 0; }
    
    /* Animation Croix Burger */
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

    /* Responsive nouvelles sections */
    .hero-stats {
        gap: 20px;
        justify-content: center;
    }
    .stat-number {
        font-size: 2rem;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        order: -1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        gap: 20px;
        flex-direction: column;
        padding: 20px;
    }
    
    .garanties-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    }
    
    .urgent-banner {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    .urgent-text {
        font-size: 0.85rem;
    }


@keyframes heroFade {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cardRise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cookieFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes cookiePop {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cookieFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes cookiePopOut {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(6px) scale(0.98); }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}

/* Animation d'apparition des liens */
@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}