/* ==========================================================================
XLR WEB - STYLES.CSS
Architecture ITCSS (Inverted Triangle CSS)
Réorganisé du moins spécifique au plus spécifique
========================================================================== */

/* ==========================================================================
1. SETTINGS - Variables CSS globales
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    /* Typographie */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Tailles (Fluid Typography approach) */
    --text-xs: 0.85rem;
    --text-sm: 0.95rem;
    --text-base: 1.1rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2.2rem;
    --text-3xl: 3.2rem;
    --text-4xl: 4.5rem;
    
    /* Graisses (Weights) */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Couleurs - Background */
    --bg-main: #050810;
    /* --bg-main: linear-gradient(to bottom right, #090514 0%, #150b29 100%);
    --bg-main: linear-gradient(135deg, #020617 0%, #0f172a 100%); */
    --bg-main: linear-gradient(180deg, #0a0a0c 0%, #050505 100%);
    --bg-surface: rgba(255, 255, 255, 0.03);
    --bg-elevated: rgba(255, 255, 255, 0.08);
    
    /* Couleurs - Texte */
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --color-trust: #94A3B8;
    
    /* Couleurs - Accent */
    --color-accent-solid: #ff6700;
    --gradient-sunset: linear-gradient(135deg, #ff6700 0%, #b007eb 100%);
    --gradient-sunset-hover: linear-gradient(135deg, #ff8533 0%, #c433f0 100%);
    
    /* Couleurs - Highlight */
    --color-highlight: #FFB800;
    
    /* Design System */
    --radius-bento: 16px;
    --transition-fast: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}


/* ==========================================================================
2. TOOLS - Mixins et fonctions (non applicable sans préprocesseur)
========================================================================== */
/* Cette couche est vide car vous n'utilisez pas de préprocesseur (Sass/Less) */


/* ==========================================================================
3. GENERIC - Règles de base, reset CSS, normalize
========================================================================== */
*, 
*::before, 
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch; 
}


/* ==========================================================================
4. ELEMENTS - Styles appliqués aux balises HTML nues
========================================================================== */
body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    background-color: #030108;
    background-image: 
    radial-gradient(circle at 15% 15%, rgba(35, 20, 80, 0.9) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(20, 10, 35, 0.6) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body::selection {
    background: rgba(255, 103, 0, 0.3);
    color: #ffffff;
}

body::-moz-selection {
    background: rgba(255, 103, 0, 0.3);
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.1;
}

h1 {
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    letter-spacing: -0.01em;
}

h4, 
.badge-neuromarketing, 
.stat-item p, 
.tag {
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

p {
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 65ch;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}


/* ==========================================================================
5. OBJECTS - Classes purement structurelles et non cosmétiques
========================================================================== */

/* Grilles globales */
.bento-grid, 
.portfolio-grid, 
.testimonial-grid, 
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Bento Large - cartes qui s'étendent sur 2 colonnes */
@media (min-width: 900px) {
    .bento-large {
        grid-column: span 2;
    }
}

/* Container pour aligner correctement le texte animé */
.typewriter-container {
    display: inline-block;
    position: relative;
    vertical-align: bottom;
}

/* Section padding */
.section-padding {
    padding: 100px 5%;
}

/* Header de section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

/* Mobile only */
.mobile-only {
    display: none;
}

/* Portfolio Masonry */
.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 320px;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-surface);
    border-radius: var(--radius-bento);
    padding: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

/* Pre-footer content */
.pre-footer-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Nav container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Portfolio filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 100px 5% 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 20;
    text-align: left;
    padding-right: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 30px;
}

/* Stats */
.stats {
    background-color: var(--bg-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 70px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Direct contact */
.direct-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

/* Form group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Values list */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* Logos container */
.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    opacity: 0.5;
    transition: var(--transition-fast);
}

/* Sticky stats section */
.sticky-stats-section {
    position: relative;
    height: 400vh;
    background: transparent;
}

.sticky-stats-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    z-index: 10;
    overflow: hidden;
}

.sticky-stats-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-stats-progress {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

/* Why choose us grid */
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}


/* ==========================================================================
6. COMPONENTS - Styles spécifiques aux éléments d'interface utilisateur
========================================================================== */

/* -------------------------------------------------------------------------
6.1 Navigation
------------------------------------------------------------------------- */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5% 10px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    background-image: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
}

#navbar.scrolled {
    padding: 15px 5%;
    background: rgba(3, 1, 8, 0.4);
    background-image: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    opacity: 0.7;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    opacity: 1;
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-sunset);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* -------------------------------------------------------------------------
6.2 Boutons & CTA
------------------------------------------------------------------------- */
.cta-button {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-block;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.primary-cta {
    background: var(--gradient-sunset);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 103, 0, 0.4);
}

.primary-cta:hover {
    background: var(--gradient-sunset-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 103, 0, 0.6);
}

.secondary-cta {
    background-color: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
}

.secondary-cta:hover {
    border-color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
}

.cta-button:active {
    animation: buttonPress 0.2s ease;
    transform: scale(0.98);
}

@keyframes buttonPress {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* -------------------------------------------------------------------------
6.3 Typographie & Text
------------------------------------------------------------------------- */
.typewriter-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    vertical-align: bottom;
    line-height: inherit;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 
    typing 2s steps(17, end) forwards,
    blink-caret 0.75s step-end infinite;
    border-right: 4px solid var(--color-accent-solid);
    padding-right: 6px;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--color-accent-solid); }
}

/* Texte Dégradé */
.logo span, 
.section-header span, 
.hero h1 span, 
.contact-info h2 span, 
.footer-brand span {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* -------------------------------------------------------------------------
6.4 Hero Section & Laptop
------------------------------------------------------------------------- */
.hero-mockup {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0;
    z-index: 10;
    animation: floatLaptop 8s ease-in-out infinite;
    transform: perspective(1000px) rotateY(-5deg);
    isolation: isolate;
}

@keyframes floatLaptop {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.laptop-svg {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    filter: drop-shadow(-20px 40px 40px rgba(0, 0, 0, 0.6));
}

/* Halos */
.laptop-glow-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    z-index: -1;
    pointer-events: none;
}

.laptop-glow {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 140%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: var(--gradient-sunset);
    filter: blur(100px);
    -webkit-filter: blur(100px);
    opacity: 0.4;
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

.laptop-glow-violet {
    position: absolute;
    top: 50%;
    left: 55%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #7209B7 0%, #3A0CA3 100%);
    filter: blur(80px);
    -webkit-filter: blur(80px);
    opacity: 0.35;
    border-radius: 50%;
    animation: pulseGlowViolet 5s ease-in-out infinite alternate;
}

.laptop-glow-cyan {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #00f0ff 0%, transparent 70%);
    filter: blur(40px);
    -webkit-filter: blur(40px);
    opacity: 0.5;
    border-radius: 50%;
    animation: pulseGlowCyan 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.3; filter: blur(80px); transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 0.5; filter: blur(120px); transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes pulseGlowViolet {
    0% { opacity: 0.25; filter: blur(60px); transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.45; filter: blur(100px); transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes pulseGlowCyan {
    0% { opacity: 0.4; filter: blur(30px); transform: translate(-50%, -50%) scale(0.85); }
    100% { opacity: 0.7; filter: blur(50px); transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes machineVibrate {
    0% { transform: translateY(0px) rotate(0deg); }
    10% { transform: translateY(-1px) rotate(0.1deg); }
    20% { transform: translateY(1px) rotate(-0.1deg); }
    30% { transform: translateY(-1px) rotate(0.05deg); }
    40% { transform: translateY(1px) rotate(-0.05deg); }
    50% { transform: translateY(-0.5px) rotate(0.02deg); }
    60% { transform: translateY(0.5px) rotate(-0.02deg); }
    70% { transform: translateY(-0.5px) rotate(0.01deg); }
    80% { transform: translateY(0.5px) rotate(-0.01deg); }
    90% { transform: translateY(-0.25px) rotate(0deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-mockup.charged {
    animation: floatLaptop 8s ease-in-out infinite, machineVibrate 0.5s ease-in-out infinite;
}

/* -------------------------------------------------------------------------
6.5 Arcs Électriques & Particules
------------------------------------------------------------------------- */
.electric-arcs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
}

.electric-bolt {
    fill: none;
    stroke: #FFD700;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px #FFD700) drop-shadow(0 0 20px #FFA500) drop-shadow(0 0 30px #FFFF00);
}

.electric-bolt-1 { animation: boltFlicker1 3s ease-in-out infinite; }
.electric-bolt-2 { animation: boltFlicker2 2.5s ease-in-out infinite; }
.electric-bolt-3 { animation: boltFlicker3 4s ease-in-out infinite; }
.electric-bolt-4 { animation: boltFlicker4 3.5s ease-in-out infinite; }

@keyframes boltFlicker1 {
    0%, 100% { opacity: 0; stroke-width: 2; }
    92% { opacity: 0; }
    93% { opacity: 1; stroke-width: 4; }
    94% { opacity: 0.2; }
    95% { opacity: 1; stroke-width: 3; }
    96% { opacity: 0; }
    97% { opacity: 0.8; }
}

@keyframes boltFlicker2 {
    0%, 100% { opacity: 0; stroke-width: 2; }
    88% { opacity: 0; }
    89% { opacity: 0.9; stroke-width: 4; }
    90% { opacity: 0.1; }
    91% { opacity: 1; stroke-width: 3; }
    92% { opacity: 0; }
    93% { opacity: 0.7; }
}

@keyframes boltFlicker3 {
    0%, 100% { opacity: 0; stroke-width: 2; }
    78% { opacity: 0; }
    79% { opacity: 1; stroke-width: 4; }
    80% { opacity: 0.15; }
    81% { opacity: 0.9; stroke-width: 3; }
    82% { opacity: 0; }
    83% { opacity: 0.8; }
}

@keyframes boltFlicker4 {
    0%, 100% { opacity: 0; stroke-width: 2; }
    95% { opacity: 0; }
    96% { opacity: 0.85; stroke-width: 4; }
    97% { opacity: 0.1; }
    98% { opacity: 1; stroke-width: 3; }
    99% { opacity: 0; }
}

.laptop-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #00f0ff;
    box-shadow: 0 0 6px #00f0ff, 0 0 12px #00f0ff;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; background: #ff6700; box-shadow: 0 0 6px #ff6700; }
.particle:nth-child(2) { top: 25%; left: 75%; animation-delay: 0.5s; background: #00f0ff; box-shadow: 0 0 6px #00f0ff; }
.particle:nth-child(3) { top: 60%; left: 10%; animation-delay: 1s; background: #a855f7; box-shadow: 0 0 6px #a855f7; }
.particle:nth-child(4) { top: 70%; left: 80%; animation-delay: 1.5s; background: #ff6700; box-shadow: 0 0 6px #ff6700; }
.particle:nth-child(5) { top: 40%; left: 90%; animation-delay: 0.8s; background: #00f0ff; box-shadow: 0 0 6px #00f0ff; }
.particle:nth-child(6) { top: 80%; left: 40%; animation-delay: 1.2s; background: #a855f7; box-shadow: 0 0 6px #a855f7; }

@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 1; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.8; }
    80% { opacity: 0.4; }
    100% { transform: translateY(-60px) scale(0.5); opacity: 0; }
}

/* -------------------------------------------------------------------------
6.6 Scroll Indicator
------------------------------------------------------------------------- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 100;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.1);
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: var(--gradient-sunset);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 6px;
}

.scroll-arrows span {
    display: block;
    font-size: 10px;
    line-height: 8px;
    background: linear-gradient(to bottom, #ff6700 0%, #b007eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: arrowDrop 2s ease-in-out infinite;
}

.scroll-arrows span:nth-child(1) { animation-delay: 0s; }
.scroll-arrows span:nth-child(2) { animation-delay: 0.15s; }
.scroll-arrows span:nth-child(3) { animation-delay: 0.3s; }

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

@keyframes arrowDrop {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}

/* -------------------------------------------------------------------------
6.7 Statistiques
------------------------------------------------------------------------- */
.stat-item {
    text-align: center;
    margin: 15px;
}

.stat-item span, 
.stat-item h2 {
    font-family: var(--font-heading);
    font-weight: var(--font-extrabold);
    letter-spacing: -0.05em;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--color-highlight);
    display: inline-block;
}

.stat-item span {
    font-size: 2.2rem;
    color: var(--color-highlight);
    font-family: var(--font-heading);
    font-weight: 700;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-top: 8px;
}

/* -------------------------------------------------------------------------
6.8 Cartes Services (Bento)
------------------------------------------------------------------------- */
.bento-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-bento);
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box, var(--gradient-sunset) border-box;
    border: 1px solid transparent;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 107, 53, 0.1);
    color: #fff;
}

.bento-card:hover h3 {
    color: #ffffff;
}

.bento-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.bento-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.bento-card p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.trust-icon {
    font-size: 2.8rem;
    color: var(--text-main);
    margin-bottom: 25px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.bento-card:hover .trust-icon {
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
    opacity: 1;
}

/* -------------------------------------------------------------------------
6.9 Portfolio
------------------------------------------------------------------------- */
.portfolio-item {
    background-color: var(--bg-surface);
    border-radius: var(--radius-bento);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition-fast);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.img-placeholder {
    height: 250px;
    background: linear-gradient(45deg, #111827, #1f2937);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.portfolio-info span {
    font-size: 0.9rem;
    color: var(--color-accent-solid);
    font-weight: 500;
}

/* Portfolio carré */
.portfolio-square {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.portfolio-square img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-square .portfolio-info {
    flex-shrink: 0;
}

/* Portfolio Masonry Cards */
.portfolio-card {
    position: relative;
    border-radius: var(--radius-bento);
    overflow: hidden;
    cursor: pointer;
}

.card-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.portfolio-card:hover .card-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-main) 0%, rgba(11, 15, 25, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    opacity: 0.9;
    transition: var(--transition-fast);
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
    background: linear-gradient(to top, var(--bg-main) 0%, rgba(11, 15, 25, 0.8) 60%, rgba(11, 15, 25, 0.2) 100%);
}

.tag {
    background: rgba(255, 184, 0, 0.15);
    color: var(--color-highlight);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    width: max-content;
}

.overlay-content h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 10px;
    transform: translateY(15px);
    transition: transform 0.3s ease;
}

.overlay-content p,
.read-more {
    color: var(--text-muted);
    font-size: 0.95rem;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.3s ease;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-accent-solid);
    font-weight: 600;
}

.portfolio-card:hover .overlay-content h3,
.portfolio-card:hover .overlay-content p,
.portfolio-card:hover .read-more {
    transform: translateY(0);
    opacity: 1;
}

/* -------------------------------------------------------------------------
6.10 Filter Buttons
------------------------------------------------------------------------- */
.filter-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-sunset);
    color: white;
    border: none;
    padding: 11px 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* -------------------------------------------------------------------------
6.11 Témoignages
------------------------------------------------------------------------- */
.testimonial-card {
    background-color: var(--bg-surface);
    padding: 35px 30px;
    border-radius: var(--radius-bento);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.stars {
    color: var(--color-highlight);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-main);
    font-size: 1.05rem;
}

.testimonial-card h4 {
    color: white;
    font-size: 1.1rem;
}

.testimonial-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* -------------------------------------------------------------------------
6.12 Pricing Cards
------------------------------------------------------------------------- */
.pricing-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-bento);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-fast);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 15px 0;
}

.price-anchor {
    margin-bottom: -5px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    opacity: 0.7;
}

.price-savings {
    color: var(--color-highlight);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: -10px;
    margin-bottom: 15px;
}

.price-ttc {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.7;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    margin-top: 20px;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.features li i {
    color: var(--color-highlight);
    font-size: 1.3rem;
}

.features li.disabled {
    color: rgba(255,255,255,0.2);
    text-decoration: line-through;
}

.features li.disabled i {
    color: rgba(255,255,255,0.2);
}

.pricing-card.featured {
    border: 2px solid transparent;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 53, 0.15);
    z-index: 2;
}

.badge-popular {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-sunset);
    color: white;
    padding: 8px 19px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* -------------------------------------------------------------------------
6.13 Contact Form
------------------------------------------------------------------------- */
.dc-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dc-item i {
    font-size: 2rem;
    color: var(--color-accent-solid);
    background: rgba(255, 107, 53, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.dc-item h4 {
    margin-bottom: 5px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent-solid);
    box-shadow: 0 0 0 1px var(--color-accent-solid), 0 0 15px rgba(255, 103, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

select.form-control {
    background-color: rgba(30, 30, 30, 0.95);
    color: #ffffff;
    cursor: pointer;
}

select.form-control option {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 12px;
}

.submit-btn {
    width: 100%;
    margin-top: 15px;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.form-trust {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Form Success */
.form-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.form-success i {
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* -------------------------------------------------------------------------
6.14 About Page
------------------------------------------------------------------------- */
.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-main);
}

.story-image {
    position: relative;
}

.img-wrapper {
    height: 450px;
    border-radius: var(--radius-bento);
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-sunset);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.team-card {
    background-color: var(--bg-surface);
    padding: 40px 20px;
    border-radius: var(--radius-bento);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--bg-main);
    margin: 0 auto 20px;
    border: 3px solid transparent;
    background-image: linear-gradient(var(--bg-main), var(--bg-main)), var(--gradient-sunset);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.job-title {
    color: var(--color-accent-solid);
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.logo-item {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted);
}

/* -------------------------------------------------------------------------
6.15 Pre-Footer CTA
------------------------------------------------------------------------- */
.pre-footer-cta {
    position: relative;
    padding: 120px 5% 80px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    isolation: isolate;
}

.pre-footer-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: var(--font-extrabold);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
}

.pre-footer-content h2 span {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pre-footer-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.giant-cta {
    font-size: 1.25rem !important;
    padding: 20px 40px !important;
    border-radius: 50px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 103, 0, 0.3) !important;
    animation: ctaPulse 3s infinite;
}

.giant-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(176, 7, 235, 0.4) !important;
}

@keyframes ctaPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 103, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 103, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 103, 0, 0); }
}

.footer-glow {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 80%;
    background: var(--gradient-sunset);
    filter: blur(120px);
    -webkit-filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

/* -------------------------------------------------------------------------
6.16 Footer
------------------------------------------------------------------------- */
footer {
    width: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: var(--font-extrabold);
    letter-spacing: -0.02em;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent-solid);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--color-accent-solid);
    font-size: 1.4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Google Map */
.map-container iframe {
    width: 100%;
    height: 400px;
    filter: invert(100%) hue-rotate(240deg) sepia(30%) contrast(90%) brightness(67%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* -------------------------------------------------------------------------
6.17 Floating Elements
------------------------------------------------------------------------- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: transform var(--transition-fast), opacity 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-btn.whatsapp-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(21, 11, 41, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-main);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: var(--gradient-sunset);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Micro-interactions hover */
a:hover,
button:hover {
    cursor: pointer;
}

.portfolio-item:hover,
.bento-card:hover,
.testimonial-card:hover,
.pricing-card:hover {
    cursor: pointer;
}

/* -------------------------------------------------------------------------
6.18 Custom Cursor - Accessible avec fallback WCAG
-------------------------------------------------------------------------- */

/* Fallback: desactiver le custom cursor pour les utilisateurs qui preferent reduced motion */
@media (prefers-reduced-motion: reduce) {
    .custom-cursor,
    .custom-cursor-follower {
        display: none !important;
    }
}

/* Fallback: desactiver le custom cursor sur les ecrans tactiles */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor,
    .custom-cursor-follower {
        display: none !important;
    }
}

/* Custom cursor uniquement pour les ecrans avec souris fine */
@media (pointer: fine) {
    body {
        cursor: none;
        position: relative;
        z-index: 0;
    }
    
    a, button, .cta-button {
        cursor: none;
    }
    
    .custom-cursor {
        position: fixed;
        width: 8px;
        height: 8px;
        background-color: #FFFFFF;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 10001;
        transition: transform 0.15s ease;
        mix-blend-mode: difference;
    }
    
    .custom-cursor-follower {
        position: fixed;
        width: 40px;
        height: 40px;
        border: 1.5px solid #FFFFFF;
        background-color: transparent;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 10000;
        mix-blend-mode: difference;
        transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
        height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
        background-color 0.3s ease, 
        border-color 0.3s ease;
    }
    
    .custom-cursor.hovered {
        transform: translate(-50%, -50%) scale(0);
    }
    
    .custom-cursor-follower.hovered {
        width: 60px;
        height: 60px;
        background-color: #FFFFFF;
        border-color: transparent;
    }
}

/* -------------------------------------------------------------------------
619 Organic Texture (Grain/Noise)
------------------------------------------------------------------------- */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 9999;
}

/* -------------------------------------------------------------------------
6.20 Methodology Section
------------------------------------------------------------------------- */
.methodology .step-card {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 35px 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    border-right: 1px solid rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methodology .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.methodology .step-number {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6700, #b007eb);
    border-radius: 16px 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0.9;
    color: #fff;
}

.methodology .step-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.methodology .step-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.methodology-cta {
    text-align: center;
    margin-top: 60px;
}

.methodology-cta p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.methodology .section-header p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* -------------------------------------------------------------------------
6.21 Why Choose Us
------------------------------------------------------------------------- */
.why-choose-us {
    max-width: 1100px;
    margin: 0 auto;
}

.why-choose-us h3 {
    font-size: 1.5rem;
    margin-bottom: 35px;
    color: var(--text-main);
    text-align: center;
    font-weight: 600;
}

#why-us {
    background-color: var(--bg-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 5%;
    margin: 60px 0;
}

#why-us .section-header {
    margin-bottom: 40px;
}

#why-us .why-choose-us {
    max-width: 1200px;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(-8px);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-sunset);
    transform: scaleX(1);
    transform-origin: left;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.why-choose-card i {
    color: var(--color-accent-solid);
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.2) translateY(-3px);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.why-choose-card i::before {
    display: inline-block;
}

.why-choose-card h4 {
    color: var(--color-highlight);
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-choose-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* -------------------------------------------------------------------------
6.22 Sticky Stats
------------------------------------------------------------------------- */
.sticky-stats-section .section-header {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 20;
    padding-bottom: 0;
}

.sticky-stats-section .section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.sticky-stats-section .section-header p {
    max-width: 500px;
    margin: 0 auto;
    font-size: 1rem;
}

.sticky-stat-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 650px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.sticky-stat-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.sticky-stat-card.exit {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
}

.sticky-stat-card {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-stat-card.active {
    border-top: 2px solid rgba(255, 107, 53, 0.4);
}

.sticky-stat-card {
    box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 107, 53, 0.08),
    0 -30px 60px rgba(0, 0, 0, 0.4);
}

.sticky-stat-card.active {
    box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(255, 107, 53, 0.15),
    0 -40px 80px rgba(0, 0, 0, 0.5);
}

/* Gradient variants */
.sticky-stat-card[data-index="0"] .sticky-stat-number {
    background: linear-gradient(135deg, #ff6700 0%, #ff3366 50%, #b007eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sticky-stat-card[data-index="1"] .sticky-stat-number {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sticky-stat-card[data-index="2"] .sticky-stat-number {
    background: linear-gradient(135deg, #0891b2 0%, #22d3ee 50%, #34d399 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sticky-stat-card[data-index="3"] .sticky-stat-number {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sticky-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: block;
}

.sticky-stat-text {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.5;
    max-width: 550px;
    margin: 0 auto 25px;
}

.sticky-stat-source {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
}

.sticky-stat-source::before {
    content: '— ';
    opacity: 0.5;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-dot.active {
    background: var(--color-accent-solid);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
    transform: scale(1.3);
}

/* -------------------------------------------------------------------------
6.23 Menu Toggle (Mobile)
------------------------------------------------------------------------- */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.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(5px, -5px);
}


/* ==========================================================================
7. UTILITIES - Classes utilitaires et de surcharge
========================================================================== */

/* -------------------------------------------------------------------------
7.1 Media Queries Responsives
------------------------------------------------------------------------- */

/* Tablette */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 25px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-mockup {
        transform: none;
        margin-top: 20px;
    }
    
    .hero h1 {
        font-size: 4.5rem;
        line-height: 1.1;
        margin-bottom: 24px;
    }
    
    .hero p {
        font-size: 1.15rem;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    p { max-width: 100%; }
    
    /* Conteneurs principaux */
    .bento-grid,
    .portfolio-grid,
    .testimonial-grid,
    .team-grid,
    .pricing-grid,
    .portfolio-masonry,
    .story-grid,
    .footer-content,
    .pre-footer-content,
    .nav-container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Grilles */
    .bento-grid,
    .portfolio-grid,
    .testimonial-grid,
    .team-grid,
    .pricing-grid,
    .portfolio-masonry {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    /* Bento Cards */
    .bento-card {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Portfolio Cards */
    .portfolio-item,
    .portfolio-card {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Portfolio masonry */
    .portfolio-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .portfolio-masonry .large-card,
    .portfolio-masonry .wide-card {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Pricing Cards */
    .pricing-card {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
        margin-left: 0;
        margin-right: 0;
        gap: 28px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .badge-popular {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    
    /* Contact Wrapper */
    .contact-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        margin-left: 0;
        margin-right: 0;
        gap: 30px;
    }
    
    /* Story Grid */
    .story-grid {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        gap: 40px;
    }
    
    .story-image .img-wrapper {
        height: 250px;
    }
    
    /* Testimonial Cards */
    .testimonial-card {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Team Cards */
    .team-card {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Step Cards */
    .methodology .step-card {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Section padding global */
    section,
    .section-padding {
        padding: 60px 20px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Stats section */
    .stats {
        padding: 50px 20px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 100%;
        margin: 10px 0;
    }
    
    /* Footer */
    footer {
        padding: 50px 20px 100px;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Pre-footer CTA */
    .pre-footer-cta {
        padding: 60px 20px 40px;
    }
    
    /* Titres de sections */
    .section-header {
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Form elements */
    .form-group {
        width: 100%;
    }
    
    .form-control {
        width: 100%;
    }
    
    /* Portfolio filters */
    .portfolio-filters {
        padding: 0 10px;
        gap: 10px;
    }
    
    /* Portfolio item carré */
    .portfolio-square {
        max-width: 100%;
    }
    
    /* Trust bar */
    .logos-container {
        gap: 30px;
    }
    
    /* BR mobile-only */
    .mobile-only {
        display: block;
    }
    
    /* Valeurs par défaut */
    * {
        max-width: 100%;
    }
    
    /* Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #030108;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links a {
        color: var(--color-highlight);
        font-size: 1.4rem;
        opacity: 1;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .nav-container .cta-button {
        display: none;
    }
    
    .hero {
        min-height: auto;
        min-height: 90vh;
        padding: 90px 20px 40px;
    }
    
    .hero-content {
        padding-top: 0;
    }
    
    .hero-mockup {
        margin-top: 25px;
        transform: scale(0.85);
    }
    
    .typewriter-text {
        font-size: 2.2rem;
        border-right-width: 2px;
    }
    
    section {
        padding: 80px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .hero-actions .cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-wrapper,
    .story-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .stat-item h2 {
        font-size: 2.5rem;
    }
    
    footer {
        padding-bottom: 100px;
    }
    
    .footer-contact p {
        justify-content: flex-start;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        bottom: 20px;
        left: 20px;
    }
    
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
    
    /* Logo plus petit sur mobile */
    .logo img {
        height: 50px !important;
    }
    
    .footer-brand img {
        height: 60px !important;
    }
    
    /* Sections avec padding sur mobile */
    .legal-content {
        padding: 80px 20px;
    }
    
    /* Tableaux */
    .legal-content table,
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px 0;
        width: 100%;
    }
    
    table th,
    table td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    table th {
        background: rgba(255, 255, 255, 0.05);
        font-weight: 600;
    }
    
    /* Scroll indicator */
    .scroll-indicator {
        display: none;
    }
}

/* Tablette sticky stats */
@media (max-width: 1024px) {
    .sticky-stats-section {
        position: relative;
        height: auto;
        background: var(--bg-main);
    }
    
    .sticky-stats-section .section-header {
        position: relative;
        top: 0;
        padding: 60px 20px 30px;
        z-index: 5;
    }
    
    .sticky-stats-section .section-header p {
        font-size: 0.9rem;
    }
    
    .sticky-stats-container {
        position: relative;
        height: auto;
        padding: 0;
    }
    
    .sticky-stats-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        width: 100%;
    }
    
    .sticky-stat-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none !important;
        opacity: 1;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        padding: 30px 20px 40px;
        margin: 0;
        border-radius: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-left: none;
        border-right: none;
        border-bottom: none;
        box-sizing: border-box;
        text-align: center;
    }
    
    .sticky-stat-card[data-index="0"] {
        border-top: none;
    }
    
    .sticky-stat-number {
        font-size: clamp(3rem, 20vw, 4.5rem);
    }
    
    .sticky-stat-text {
        font-size: 1rem;
        max-width: 100%;
        margin: 0 auto 25px;
    }
    
    .sticky-stat-source {
        font-size: 0.75rem;
    }
    
    .sticky-stats-progress {
        display: none;
    }
}

/* -------------------------------------------------------------------------
7.2 Accessibilité : Réduire les animations
------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    body {
        cursor: auto !important;
    }
    
    .custom-cursor,
    .custom-cursor-follower {
        display: none !important;
    }
    
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .typewriter-text {
        animation: none !important;
        border-right: none !important;
        width: auto !important;
    }
    
    .hero-mockup {
        animation: none !important;
    }
    
    .laptop-glow {
        animation: none !important;
        opacity: 0.35 !important;
    }
    
    .giant-cta {
        animation: none !important;
    }
    
    .bento-card:hover,
    .portfolio-item:hover,
    .testimonial-card:hover,
    .pricing-card:hover {
        transform: none !important;
    }
    
    .nav-links,
    .menu-toggle span {
        transition: none !important;
    }
    
    /* Sticky stats */
    .sticky-stat-card {
        transition: opacity 0.01ms !important;
        transform: none !important;
    }
    
    .sticky-stat-card.active {
        opacity: 1;
    }
    
    .progress-dot {
        transition: none !important;
    }
}


/* ==========================================================================
FIN DU FICHIER
========================================================================== */
