/* ============================================
   0. POLICES LOCALES HÉBERGÉES (100% Netlify CDN)
============================================ */
/* INTER — Regular (400) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: optional; /* OPTIMISATION LCP/CLS : Empêche le saut de texte */
    src: url('../../public/fonts/inter-v20-latin-regular.woff2') format('woff2');
}

/* INTER — Medium (500) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: optional;
    src: url('../../public/fonts/inter-v20-latin-500.woff2') format('woff2');
}

/* INTER — Semi Bold (600) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: optional;
    src: url('../../public/fonts/inter-v20-latin-600.woff2') format('woff2');
}

/* INTER — Bold (700) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: optional;
    src: url('../../public/fonts/inter-v20-latin-700.woff2') format('woff2');
}

/* INTER — Extra Bold (800) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: optional;
    src: url('../../public/fonts/inter-v20-latin-800.woff2') format('woff2');
}

/* INTER — Black (900) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: optional;
    src: url('../../public/fonts/inter-v20-latin-900.woff2') format('woff2');
}

/* JETBRAINS MONO — Regular (400) */
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400;
    font-display: optional;
    src: url('../../public/fonts/jetbrains-mono-v24-latin-regular.woff2') format('woff2');
}

/* JETBRAINS MONO — Bold (700) */
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 700;
    font-display: optional;
    src: url('../../public/fonts/jetbrains-mono-v24-latin-700.woff2') format('woff2');
}

/* JETBRAINS MONO — Extra Bold (800) */
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 800;
    font-display: optional;
    src: url('../../public/fonts/jetbrains-mono-v24-latin-800.woff2') format('woff2');
}

/* ============================================
   1. VARIABLES CSS (Design Tokens)
============================================ */
:root {
    /* Couleurs de fond */
    --bg-primary: #06060b;
    --bg-secondary: #0c0c14;
    --bg-card: #10101a;
    --bg-card-hover: #151522;
    --bg-elevated: #1a1a2e;

    /* Accents néon */
    --accent-cyan: #00f0ff;
    --accent-violet: #7b2ff7;
    --accent-magenta: #ff006e;
    --accent-green: #00ff88;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    --gradient-glow: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));

    /* Typographie */
    --text-primary: #f8f8fa;
    --text-secondary: #c0c0d1; 
    --text-muted: #9a9ab0;

    /* Bordures */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(0, 240, 255, 0.2);

    /* Espacements */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Polices */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Transitions & Rayons */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* ============================================
   2. RESET, BASE & GESTION DU DÉBORDEMENT
============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    /* Sécurité anti-débordement intégrée */
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Sécurité renforcée pour éviter les CLS sur les médias */
img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ============================================
   3. UTILITAIRES & CONTENEUR
============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem; 
    }
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mono {
    font-family: var(--font-mono);
    font-size: 0.85em;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-cyan);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    background: rgba(0, 240, 255, 0.05);
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   4. BOUTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), color var(--transition-base);
    will-change: transform;
}

.btn__arrow {
    transition: transform var(--transition-base);
    font-style: normal;
    display: inline-block;
    will-change: transform;
}

.btn:hover .btn__arrow {
    transform: translateX(4px) translateZ(0);
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.3),
                0 0 60px rgba(123, 47, 247, 0.15);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.btn--outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    transition: background var(--transition-base);
    z-index: -1;
}

.btn--outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px) translateZ(0);
}

.btn--sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

/* ============================================
   5. HEADER / NAVIGATION (Fix Mobile Inclus)
============================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.8rem 0; 
    transition: background-color var(--transition-base), border-color var(--transition-base), backdrop-filter var(--transition-base);
    background: transparent;
    border-bottom: 1px solid transparent;
    width: 100%;
    max-width: 100vw;
}

.header--scrolled {
    background: rgba(6, 6, 11, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
}

.header--menu-open {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(6, 6, 11, 0.98) !important;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    z-index: 1001;
}

.logo__img {
    height: 32px;
    width: auto;
    display: block;
    image-rendering: high-quality;
    -webkit-font-smoothing: antialiased;
}

.logo__accent {
    color: var(--accent-cyan);
}

.nav__list {
    display: none;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after { width: 100%; }

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
    will-change: transform, opacity;
}

.nav__toggle--active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) translateZ(0);
}
.nav__toggle--active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}
.nav__toggle--active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) translateZ(0);
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(6, 6, 11, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-slow), visibility var(--transition-slow);
    }
    .nav--open { opacity: 1; visibility: visible; }
    .nav__list { display: flex; flex-direction: column; align-items: center; gap: var(--space-lg); }
    .nav__link { font-size: 1.3rem; }
    .header__actions .btn--sm { display: none; }
}

@media (min-width: 769px) {
    .nav__list { display: flex; }
    .nav__toggle { display: none; }
}

@media (max-width: 480px) {
    .logo { font-size: 1.15rem; }
    .logo__img { height: 24px; }
    .nav__toggle { margin-right: 0.2rem; }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
    overflow: hidden;
}

/* Effets de fond (Lueurs) */
.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

/* ACCÉLÉRATION MATÉRIELLE POUR SOULAGER LE PROCESSEUR */
.hero__glow {
    position: absolute; 
    border-radius: 50%; 
    filter: blur(120px); 
    opacity: 0.15; 
    z-index: -1;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero__glow--1 {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    top: -10%;
    right: -5%;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--accent-violet);
    bottom: -10%;
    left: -5%;
    animation-delay: 2s;
}

.hero__glow--3 {
    width: 300px;
    height: 300px;
    background: var(--accent-magenta);
    top: 40%;
    left: 40%;
    opacity: 0.08;
    animation-delay: 4s;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1) translateZ(0); }
    100% { transform: translate(30px, -20px) scale(1.1) translateZ(0); }
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 850px;
}

/* Badge d'introduction */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-cyan);
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    background: rgba(0, 240, 255, 0.05);
    margin-bottom: var(--space-lg);
}

.hero__badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    will-change: transform, opacity;
    transform: translateZ(0);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1) translateZ(0); }
    50% { opacity: 0.5; transform: scale(0.8) translateZ(0); }
}

/* Titre principal - Hauteur fixée pour contrer le CLS */
.hero__title {
    line-height: 1.1; 
    min-height: 120px; 
}

.hero__title-icon {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    font-size: 0.8em;
    will-change: transform;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateZ(0); }
    50% { transform: translateY(-8px) translateZ(0); }
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero__subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero__cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    margin-bottom: var(--space-xl);
}

@media (min-width: 600px) {
    .hero__cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

/* Barre de statistiques */
.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.hero__stat-unit {
    font-size: 0.7em;
    color: var(--accent-cyan);
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Indicateur de scroll */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
    animation: scrollLine 2s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes scrollLine {
    0% { 
        transform: translateY(-20px) translateZ(0); 
        opacity: 0; 
    }
    30% { 
        transform: translateY(0) translateZ(0); 
        opacity: 1; 
    }
    70% { 
        transform: translateY(0) translateZ(0); 
        opacity: 1; 
    }
    100% { 
        transform: translateY(20px) translateZ(0); 
        opacity: 0; 
    }
}

/* ============================================
   7. SECTION EXPERTISE
   ============================================ */
.expertise {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-accent), transparent);
}

.expertise__grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .expertise__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

.expertise__card {
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform var(--transition-base), border-color var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base);
    will-change: transform;
}

.expertise__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.expertise__card:hover {
    transform: translateY(-6px) translateZ(0);
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(0, 240, 255, 0.05);
}

.expertise__card:hover::before {
    opacity: 1;
}

.expertise__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--accent-cyan);
    margin-bottom: var(--space-md);
}

.expertise__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.expertise__card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.expertise__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: auto;
}

.expertise__card-tags li {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-cyan);
    padding: 0.3rem 0.7rem;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.12);
    border-radius: var(--radius-full);
}

/* ============================================
   8. SECTION PRICING (PACKS & SÉRÉNITÉ)
============================================ */
.pricing {
    padding: var(--space-2xl) 0;
    position: relative;
}

.pricing__grid {
    display: grid;
    gap: var(--space-md);
    align-items: start;
}

@media (min-width: 768px) {
    .pricing__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .pricing__grid {
        align-items: center;
    }
}

/* Cartes Pack Classiques */
.pricing__card {
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    will-change: transform;
}

.pricing__card:hover {
    transform: translateY(-8px) translateZ(0);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(0, 240, 255, 0.15);
}

.pricing__card--featured {
    border-color: var(--border-subtle); 
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.04) 0%, var(--bg-card) 100%);
    position: relative;
}

@media (min-width: 1024px) {
    .pricing__card--featured {
        transform: scale(1.05) translateZ(0);
        z-index: 2;
    }
    .pricing__card--featured:hover {
        transform: scale(1.05) translateY(-8px) translateZ(0);
    }
}

/* Ruban (Correction de géométrie intégrée) */
.pricing__card-ribbon {
    position: absolute;
    top: 30px;
    right: -45px;
    width: 180px;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 0;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
    z-index: 10;
}

.pricing__card-header { margin-bottom: var(--space-md); }
.pricing__card-label { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.pricing__card-name { font-size: 1.5rem; font-weight: 800; margin: var(--space-xs) 0; line-height: 1.2; }
.pricing__card-audience { font-size: 0.85rem; color: var(--text-muted); }
.pricing__card-price {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    margin: 1.5rem 0 2.5rem 0; 
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}
.pricing__card-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.8rem; 
    font-weight: 800;
    color: var(--accent-cyan, #00f0ff);
    line-height: 1;
    letter-spacing: -2px; 
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3); 
}
.pricing__payment-note {
    font-size: 0.9rem;
    color: var(--text-muted, #a0a0a0);
    font-style: italic;
    opacity: 0.9;
}

.pricing__card-features { margin-bottom: var(--space-lg); }
.pricing__card-features li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
.pricing__check { flex-shrink: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; background: rgba(0, 255, 136, 0.1); color: var(--accent-green); border-radius: 50%; font-size: 0.7rem; font-weight: 700; margin-top: 2px; }
.pricing__card-features li strong { color: var(--text-primary); }

/* Cartes Horizontales (Sérénité & Modules additionnels) */
.pricing__horizontal { margin-top: var(--space-xl); display: flex; flex-direction: column; gap: 2rem; }
.pricing__card--horizontal {
    background: linear-gradient(180deg, rgba(123, 47, 247, 0.03) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-subtle);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    will-change: transform;
}

.pricing__horizontal-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--accent-green);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-bottom-left-radius: var(--radius-sm);
    border-bottom-right-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
    z-index: 2;
}

.pricing__horizontal-prefix {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted, #a0a0a0);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
    text-align: center;
}

.pricing__horizontal-content { display: flex; flex-direction: column; padding: var(--space-lg); width: 100%; gap: var(--space-md); }
.pricing__horizontal-header { margin-bottom: 0.5rem; }
.pricing__horizontal-label { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent-cyan); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.25rem; }
.pricing__horizontal-title { font-size: 1.5rem; font-weight: 800; margin: 0; line-height: 1.2; }

.pricing__horizontal-features { display: flex; flex-direction: column; gap: 0.6rem; margin-top: var(--space-sm); }
.pricing__horizontal-features li { font-size: 0.9rem; color: var(--text-secondary); padding-left: 1.5rem; position: relative; line-height: 1.4; }
.pricing__horizontal-features li::before { content: '🛡️'; position: absolute; left: 0; top: 0; font-size: 0.85rem; }

.pricing__horizontal-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-md);
}

.pricing__horizontal-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.2rem; 
    font-weight: 800;
    color: #00ff66;
    display: block;
    text-align: center;
    margin-bottom: 1.2rem;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.25);
}

.pricing__period {
    font-size: 1.2rem;
    color: var(--text-muted, #a0a0a0);
    font-weight: 400;
    letter-spacing: normal;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
    .pricing__horizontal-content { flex-direction: row; align-items: center; justify-content: space-between; gap: var(--space-xl); }
    .pricing__horizontal-features { flex-direction: row; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 0; }
    .pricing__horizontal-features li { flex: 1 1 45%; padding-left: 1.5rem; }
    .pricing__horizontal-action {
        flex-direction: column;
        align-items: flex-end;
        border-top: none;
        border-left: 1px solid var(--border-subtle);
        padding-top: 0;
        padding-left: var(--space-lg);
        min-width: 280px;
        text-align: right;
    }
}

/* ============================================
   9. SECTION PORTFOLIO & MOCKUP MAC
============================================ */
.portfolio {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-accent), transparent);
}

.portfolio__showcase {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 900px) {
    .portfolio__showcase {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--space-2xl);
        align-items: center;
    }
}

/* Faux navigateur Apple */
.portfolio__mockup {
    perspective: 1500px;
    width: 100%;
}

.portfolio__mockup-browser {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    will-change: transform;
}

.portfolio__mockup-browser:hover {
    transform: rotateY(-3deg) rotateX(2deg) translateY(-5px) translateZ(0);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 240, 255, 0.1);
}

.portfolio__mockup-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.2rem;
    background: linear-gradient(180deg, #1e1e2e 0%, #161625 100%);
    border-bottom: 1px solid var(--border-subtle);
}

.portfolio__mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.portfolio__mockup-dot--red { background: #ff5f57; }
.portfolio__mockup-dot--yellow { background: #ffbd2e; }
.portfolio__mockup-dot--green { background: #28ca42; }

.portfolio__mockup-url {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(0,0,0,0.3);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    margin-left: 0.5rem;
    border: 1px solid rgba(255,255,255,0.04);
}

.portfolio__mockup-content {
    padding: var(--space-md);
    width: 100%;
    aspect-ratio: 16 / 10;
}

.portfolio__mockup-grid {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: var(--space-sm);
    height: 100%;
}

/* Image principale du mockup */
.portfolio__mockup-main {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-elevated);
}

.portfolio__mockup-main img,
.portfolio__screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform var(--transition-slow);
    cursor: zoom-in;
    will-change: transform;
}

.portfolio__mockup-browser:hover .portfolio__mockup-main img {
    transform: scale(1.02) translateZ(0);
}

/* Sidebar produits (petites images à droite) */
.portfolio__mockup-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    height: 100%;
}

.portfolio__mockup-item {
    flex: 1;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
}

.portfolio__mockup-item img,
.portfolio__product-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-fast);
    cursor: zoom-in;
    border-radius: 4px;
    will-change: transform;
}

.portfolio__mockup-item:hover img {
    transform: scale(1.05) translateZ(0);
}

/* Icône loupe au survol */
.portfolio__mockup-main::after,
.portfolio__mockup-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 6, 11, 0);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-base), background-color var(--transition-base);
    pointer-events: none;
}

.portfolio__mockup-browser:hover .portfolio__mockup-main::after,
.portfolio__mockup-item:hover::after {
    opacity: 1;
    background: rgba(6, 6, 11, 0.4);
}

@media (max-width: 768px) {
    .portfolio__mockup-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 110px;
    }
    .portfolio__mockup-sidebar {
        flex-direction: row;
    }
}

/* Infos droite du portfolio */
.portfolio__details {
    padding: var(--space-md) 0;
}

@media (min-width: 900px) {
    .portfolio__details {
        padding: 0;
    }
}

.portfolio__details-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.portfolio__details-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.portfolio__tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}

.portfolio__tech-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-cyan);
    padding: 0.35rem 0.85rem;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.12);
    border-radius: var(--radius-full);
    transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    will-change: transform;
}

.portfolio__tech-tag:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: var(--accent-cyan);
    transform: translateY(-1px) translateZ(0);
}

.portfolio__metrics {
    display: flex;
    gap: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.portfolio__metric {
    display: flex;
    flex-direction: column;
}

.portfolio__metric-value {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--accent-green);
}

.portfolio__metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

/* ============================================
   10. SECTION CONTACT
============================================ */
.contact {
    padding: var(--space-2xl) 0;
    position: relative;
}

.contact__inner {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .contact__inner {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-xl);
    }
}

.contact__info {
    padding-top: var(--space-md);
}

.contact__info-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.contact__info-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact__info-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__info-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.contact__info-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

a.contact__info-value:hover {
    color: var(--accent-cyan);
}

/* Formulaire */
.contact__form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.form__group {
    margin-bottom: var(--space-md);
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-muted);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
    background: var(--bg-card-hover);
}

.form__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a6a80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form__select option {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-sm);
}

/* ============================================
   11. FOOTER
============================================ */
.footer {
    padding: var(--space-xl) 0 var(--space-md);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
}

/* Tablette : la marque occupe toute la largeur, les 4 colonnes en 2x2 */
@media (min-width: 600px) {
    .footer__inner {
        grid-template-columns: repeat(2, 1fr);
        column-gap: var(--space-lg);
    }
    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* Desktop : marque + 4 colonnes égales alignées */
@media (min-width: 960px) {
    .footer__inner {
        grid-template-columns: 1.6fr repeat(4, 1fr);
        gap: var(--space-lg);
        align-items: start;
    }
    .footer__brand {
        grid-column: auto;
    }
}

.footer__brand {
    max-width: 320px;
}

.footer__brand-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: var(--space-sm);
}

.footer__links {
    display: flex;
    gap: var(--space-xl);
}

.footer__col-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__list a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--accent-cyan);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: var(--space-md);
    text-align: center;
}

@media (min-width: 600px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer__bottom-tech .mono {
    color: var(--accent-cyan);
}

/* ============================================
   12. ANIMATIONS D'APPARITION (Scroll Reveal)
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

/* Délais échelonnés pour les grilles d'expertise et de prix */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   13. ACCESSIBILITÉ
============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus visible pour la navigation au clavier */
:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
}

/* ============================================
   14. AJUSTEMENTS FINAUX & POLISH
============================================ */
/* Couleur de la sélection de texte */
::selection {
    background: rgba(0, 240, 255, 0.2);
    color: var(--text-primary);
}

/* Scrollbar personnalisée (Navigateurs Webkit) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* ============================================
   15. LIGHTBOX (Modal de zoom d'image)
============================================ */
.lightbox {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 11, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.lightbox--active {
    visibility: visible;
    opacity: 1;
}

.lightbox__content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform var(--transition-base);
    will-change: transform;
}

.lightbox--active .lightbox__content {
    transform: scale(1) translateZ(0);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--text-secondary);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox__close:hover {
    color: var(--accent-cyan);
}

/* ============================================
   16. PAGE OFFRES (offres.html)
============================================ */
/* Hero spécifique à la page offres */
.offers-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.offers-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.offers-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: var(--space-md) auto var(--space-lg);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.offers-hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 1;
}

.offers-hero__subtitle strong {
    color: var(--accent-green);
    font-weight: 600;
}

/* Grille & Blocs des offres détaillées */
.offers-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    padding: var(--space-xl) 0 var(--space-2xl);
}

.offer-block {
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden; 
    transition: border-color var(--transition-base), background-color var(--transition-base);
}

.offer-block:hover {
    border-color: rgba(0, 240, 255, 0.15);
    background: var(--bg-card-hover);
}

.offer-block--highlight {
    border-color: var(--accent-cyan);
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.04) 0%, var(--bg-card) 100%);
}

.offer-block--serenity {
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.03) 0%, var(--bg-card) 100%);
    border: 1px dashed var(--border-accent);
    overflow: visible; 
}

.offer-block__header { margin-bottom: var(--space-md); }

.offer-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 240, 255, 0.15);
    margin-bottom: var(--space-xs);
    display: inline-block;
}

.offer-title { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; margin: var(--space-xs) 0 0; line-height: 1.2; }
.offer-audience { font-size: 0.95rem; color: var(--text-muted); margin-top: 0.3rem; }

.offer-block__content { display: flex; flex-direction: column; gap: var(--space-md); }
.offer-list { display: flex; flex-direction: column; gap: 0.8rem; margin: var(--space-sm) 0; }
.offer-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 1.8rem;
    position: relative;
}
.offer-list li strong { color: var(--text-primary); }

.offer-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--border-subtle);
    margin-top: var(--space-xs);
}

.price-big { font-size: 1.8rem; font-weight: 800; font-family: var(--font-mono); color: var(--accent-green); vertical-align: middle; }
.text-highlight { color: var(--accent-cyan); font-style: italic; font-weight: 500; font-size: 0.95em; }

/* Ruban E-commerce & Badge Sérénité */
.offer-ribbon {
    position: absolute;
    top: 30px;
    right: -45px;
    width: 180px;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 0;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10;
}

.serenity-badge {
    position: absolute; top: -12px; right: 20px;
    background: var(--accent-green); color: var(--bg-primary);
    font-size: 0.7rem; font-weight: 800; padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm); text-transform: uppercase; letter-spacing: 0.05em;
}

.serenity-note {
    font-size: 0.85rem; color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02); padding: 0.6rem;
    border-radius: var(--radius-sm); border-left: 2px solid var(--accent-violet);
    margin: 0.5rem 0 0; line-height: 1.5;
}

/* Section Formulaire Offres */
.offers-form-section { padding: var(--space-2xl) 0; background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); }
.offers-form-inner { display: grid; gap: var(--space-xl); }
.offers-form-info { position: sticky; top: 120px; }
.offers-form-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

/* Responsive Page Offres */
@media (min-width: 900px) {
    .offers-form-inner { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
    .offer-block { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-lg); align-items: center; }
    .offer-block--serenity { grid-template-columns: 1.3fr 1fr; }
}

@media (max-width: 767px) {
    .offers-hero { padding-top: 120px; padding-bottom: 60px; }
    .offer-block__content { order: 2; }
    .offer-block__header { order: 1; }
}

/* ============================================
   17. PAGE FAQ (FAQ.html)
============================================ */
.faq-page { padding-top: 140px; padding-bottom: 80px; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq__category { margin-bottom: 40px; }

.faq__category-title {
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 10px;
}

.faq__item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    background: var(--bg-card);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq__item:hover {
    border-color: var(--accent-violet);
}

.faq__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__icon {
    color: var(--accent-cyan);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    will-change: transform;
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg) translateZ(0);
    color: var(--accent-magenta);
}

/* CORRECTION D'AFFICHAGE (Ne bloque plus le texte) */
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--bg-elevated);
}

.faq__answer-inner {
    padding: 0 20px 20px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq__answer-inner strong { color: var(--text-primary); }

.faq__item.is-open .faq__answer {
    padding: 20px;
    max-height: 800px; 
}

/* ============================================
   18. PAGES LÉGALES (Mentions, CGV)
============================================ */
.legal-page { padding-top: 140px; padding-bottom: 80px; }
.legal-container { max-width: 800px; margin: 0 auto; }

.legal-text h2 {
    color: var(--text-primary);
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 8px;
}

.legal-text h3 {
    color: var(--accent-cyan);
    font-size: 1.15rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text li {
    color: var(--text-secondary);
    list-style-type: square;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-text strong {
    color: var(--text-primary);
}

.legal-text a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.legal-text a:hover {
    color: var(--accent-violet);
}

/* ==========================================================================
   NOUVEAUTÉS : OPTIONS AUTOMATISATION & HORS FORFAIT
========================================================================== */

/* Carte Services à la carte (Hors Forfait) */
.card--hors-forfait {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.badge--outline {
    background: transparent;
    border: 1px solid var(--text-muted, #a0a0a0);
    color: var(--text-muted, #a0a0a0);
}

.text-white {
    color: #ffffff;
}

.hors-forfait-desc {
    color: var(--text-muted, #a0a0a0);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.list--hors-forfait {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-price {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 1.5rem; 
    color: #00ff66;
    white-space: nowrap;
    margin-left: 15px;
    letter-spacing: -1px;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}

.action--center {
    justify-content: center;
}

#bossHud { position: relative; top: 0; right: 0; width: 100%; margin-top: 10px; }

/* ============================================
   19. FOOTER SOCIALS
============================================ */
.footer__socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}
.footer__social-link {
    color: var(--text-muted);
    transition: color var(--transition-base), transform var(--transition-base);
    display: inline-flex;
}
.footer__social-link:hover {
    color: var(--accent-cyan);
    transform: translateY(-3px);
}

/* ============================================
   20. EASTER EGG (index.html)
============================================ */
.easter-egg-container {
    display: inline-flex;
}
.easter-egg-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><text y="15" font-size="15">👾</text></svg>'), pointer;
}
.mushroom-icon {
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.1));
    transition: filter 0.4s ease, transform 0.4s ease;
}
.easter-egg-text {
    font-family: 'Press Start 2P', 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0);
    transition: text-shadow 0.4s ease, color 0.4s ease;
}
.easter-egg-link:hover { opacity: 1; transform: translateY(-8px); }
.easter-egg-link:hover .mushroom-icon { filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.6)); transform: scale(1.1); }
.easter-egg-link:hover .easter-egg-text { color: #ffffff; text-shadow: 0 0 15px rgba(0, 240, 255, 1); }

/* ============================================
   21. SECTION COMMITMENT (index.html)
============================================ */
.commitment {
    padding: 5rem 0;
}
.commitment__card {
    background: linear-gradient(145deg, rgba(20,20,20,0.6) 0%, rgba(5,5,5,0.9) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}
.commitment__glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--accent-cyan);
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.commitment__inner {
    position: relative;
    z-index: 1;
}
.commitment__badge {
    display: inline-block;
    background: var(--accent-cyan);
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.commitment__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}
.commitment__text {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 750px;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.commitment__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}
.commitment__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-primary);
    font-size: 1rem;
}
.commitment__check {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}
.commitment__item-title {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}
.commitment__item-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
}

/* ============================================
   22. PRICING REFONTE CARD (index.html)
============================================ */
.pricing__refonte {
    border-color: rgba(0, 240, 255, 0.4) !important;
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.08);
    margin-bottom: 4rem;
}
.pricing__refonte-accent {
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-cyan), #0080ff);
}
.pricing__refonte-inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 2rem;
    padding: 2rem;
}
.pricing__refonte-left {
    flex: 1 1 55%;
}
.pricing__refonte-label {
    color: var(--accent-cyan);
}
.pricing__refonte-title {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-top: 0.5rem;
}
.pricing__refonte-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.pricing__refonte-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.pricing__refonte-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0.8rem;
}
.pricing__refonte-row-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
}
.pricing__refonte-row-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.pricing__refonte-row-price {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1.4rem;
    white-space: nowrap;
}
.pricing__refonte-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    align-items: center;
}
.pricing__refonte-right {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 250px;
}
.pricing__audit-box {
    background: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    text-align: center;
    box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.05), 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}
.pricing__audit-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--accent-cyan);
    filter: blur(70px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.pricing__audit-inner {
    position: relative;
    z-index: 1;
}
.pricing__audit-old-price {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-decoration: line-through;
}
.pricing__audit-price {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6), 0 0 20px rgba(0, 240, 255, 0.4), 0 0 40px rgba(0, 240, 255, 0.2);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}
.pricing__audit-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.pricing__audit-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.5;
}

/* PRICING DIVIDER */
.pricing__divider {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}
.pricing__divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
}
.pricing__divider-text {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   23. CONTACT EXTRAS (index.html)
============================================ */
.contact__info-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 3rem;
}
.contact__info-details--reset {
    margin: 0;
}
.form__group--addon {
    margin-top: -10px;
    margin-bottom: 20px;
}
.form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    color: var(--text-primary);
}
.form__checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-cyan);
    flex-shrink: 0;
}

/* ============================================
   24. PORTFOLIO CTA (index.html)
============================================ */
.portfolio__cta {
    text-align: center;
    margin-top: 5rem;
}
.portfolio__cta-text {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ============================================
   25. DIVERS UTILITAIRES PRICING / FORM
============================================ */
.pricing__check--cyan {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
}
.pricing__card-feature--highlight {
    background: rgba(0, 240, 255, 0.05);
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}
.pricing__card-feature--highlight-strong {
    background: rgba(0, 240, 255, 0.1);
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 240, 255, 0.3);
}
.pricing__horizontal-action--center {
    align-items: center;
    justify-content: center;
}
.pricing__horizontal-badge--fire {
    background: linear-gradient(90deg, var(--accent-cyan), #0080ff);
    color: #000;
    font-weight: 800;
}
.pricing__details {
    cursor: pointer;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(150, 150, 150, 0.3);
    list-style: none;
}
.pricing__details-summary {
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    list-style: none;
    outline: none;
}
.pricing__details-summary::-webkit-details-marker { display: none; }
.pricing__details-list {
    margin-top: 12px;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: disc;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
    font-weight: normal;
}
.form__honeypot {
    display: none;
}
.c-cyan { color: var(--accent-cyan); }

/* ============================================
   26. PAGES LÉGALES — UTILITAIRES
============================================ */
.section-header--left {
    text-align: left;
    margin-bottom: 40px;
}
.legal-meta {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    margin-top: 10px;
}

/* ============================================
   27. PAGE MERCI (merci.html)
============================================ */
.thank-you-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-top: 100px;
}
.thank-you-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 3.5rem 2rem;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.thank-you-icon {
    margin-bottom: 2rem;
    animation: float 5s ease-in-out infinite;
}
.thank-you-icon img {
    max-width: 110px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.5));
    image-rendering: crisp-edges;
}
.thank-you-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.thank-you-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.thank-you-sub {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* ============================================
   28. PAGE FAQ (FAQ.html)
============================================ */
.faq__answer {
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.4s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
}
.faq__item.is-open .faq__answer {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}
.faq__section-intro {
    color: var(--text-muted);
    margin-top: 15px;
}
.faq__list {
    margin-top: 10px;
    padding-left: 20px;
}
.faq__list-item {
    margin-bottom: 5px;
}
.mb-15 {
    margin-bottom: 15px;
}

/* ============================================
   29. PAGE PARTENAIRES (partenaires.html)
============================================ */
.partners-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 6rem;
}
.partner-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.partner-card:hover {
    transform: translateY(-5px) translateZ(0);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.05);
    background: rgba(30, 30, 30, 0.6);
}
.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--text-gradient, linear-gradient(90deg, #00f0ff, #0080ff));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.partner-card:hover::before {
    opacity: 1;
}
.partner-logo-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.partner-logo-wrapper img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) brightness(200%);
    transition: filter 0.3s ease;
}
.partner-card:hover .partner-logo-wrapper img {
    filter: grayscale(0%) brightness(100%);
}
.partner-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}
.partner-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: center;
}
.partner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    margin-top: auto;
}
.partner-link:hover { color: #fff; }
.partner-link svg { transition: transform 0.3s; }
.partner-link:hover svg { transform: translateX(4px); }
.section-description--wide {
    max-width: 700px;
    margin: 20px auto 0;
}
.partners__cta-section {
    text-align: center;
    margin: 4rem 0 6rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.section-title--sm {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.partners__cta-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ============================================
   30. FOOTER SOCIALS (commun à toutes les pages)
============================================ */
.footer__socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}
.footer__social-link {
    color: var(--text-muted, #a0a0a0);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
}
.footer__social-link:hover {
    color: var(--accent-cyan, #00f0ff);
    transform: translateY(-3px);
}

/* ============================================
   31. PAGE OFFRES — Bloc Refonte phare
============================================ */
.offer-refonte {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}
.offer-refonte__accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--text-gradient, linear-gradient(90deg, #00f0ff, #0080ff));
}
.offer-refonte__ribbon {
    background: var(--text-gradient, linear-gradient(90deg, #00f0ff, #0080ff));
    color: #000;
    font-weight: 800;
}
.offer-refonte__wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.offer-refonte__main {
    flex: 1 1 55%;
    padding: 2.5rem;
}
.offer-refonte__header {
    margin-bottom: 1rem;
}
.offer-refonte__tag {
    color: var(--accent-cyan);
    border-color: transparent;
    background: transparent;
    padding: 0;
}
.offer-refonte__title {
    color: #fff;
    font-size: 2.2rem;
    margin-top: 0.5rem;
}
.offer-refonte__intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.offer-refonte__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.offer-refonte__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.8rem;
}
.offer-refonte__row-name {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
}
.offer-refonte__row-detail {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.offer-refonte__row-price {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1.4rem;
}
.offer-refonte__included {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}
.offer-refonte__included-check {
    color: var(--accent-cyan);
}
.offer-refonte__cta-col {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.03) 0%, transparent 80%);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
}
.offer-refonte__cta-card {
    background: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    text-align: center;
    box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.offer-refonte__cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--accent-cyan, #00f0ff);
    filter: blur(70px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.offer-refonte__cta-inner {
    position: relative;
    z-index: 1;
}
.offer-refonte__cta-old-value {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-decoration: line-through;
}
.offer-refonte__cta-price {
    margin-bottom: 1rem;
}
.offer-refonte__cta-price span {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6), 0 0 20px rgba(0, 240, 255, 0.4), 0 0 40px rgba(0, 240, 255, 0.2);
    line-height: 1;
}
.offer-refonte__cta-label {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.offer-refonte__cta-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
}
.offer-refonte__cta-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.5;
}
.offer-list__highlight {
    background: rgba(0, 240, 255, 0.05);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    margin-bottom: 15px;
}
.offer-list__highlight--strong {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
}
.offer-list__highlight strong {
    color: #fff;
}
.form__group--checkbox {
    margin-top: -10px;
    margin-bottom: 20px;
}
.form__label--inline {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    color: var(--text-color);
}
.form__checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-cyan, #00f0ff);
}
.form__honeypot {
    display: none;
}

/* ============================================
   32. PAGE AUTOMATISATION
============================================ */
.auto-hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 10rem 0 6rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}
.auto-hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.auto-hero__badge {
    margin: 0 auto 1.5rem;
}
.auto-hero__title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.auto-hero__subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}
.auto-hero__cta-group {
    justify-content: center;
}
.auto-intro {
    padding: 5rem 0;
}
.auto-intro__card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.6) 0%, rgba(5, 5, 5, 0.9) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}
.auto-intro__title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}
.auto-intro__text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
}
.auto-piliers {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.85) 0%, rgba(15, 15, 15, 0.75) 100%), url('../../images/fond.automatisation.webp') center/cover fixed no-repeat;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}
.auto-piliers__tag {
    background: rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(5px);
}
.auto-piliers__desc {
    color: #eaeaea;
}
.auto-piliers__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.auto-piliers__card {
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 240, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.auto-exemples {
    padding: 5rem 0;
}
.auto-exemples__stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.auto-exemples__card {
    align-items: flex-start;
}
.auto-exemples__card--highlight {
    border-color: rgba(0, 240, 255, 0.4);
}
.auto-exemples__badge {
    background: var(--accent-cyan, #00f0ff);
    color: #000;
}
.auto-exemples__features {
    margin-top: 1.5rem;
}
.auto-exemples__feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.auto-exemples__feature:last-child {
    margin-bottom: 0;
}
.auto-exemples__feature strong {
    color: #fff;
    font-size: 1.1rem;
}
.auto-contact {
    padding: 4rem 0 6rem;
    text-align: center;
}
.auto-contact__title {
    margin-bottom: 1.5rem;
}
.auto-contact__desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ============================================
   33. PAGE DEMO / SHOWROOM
============================================ */
.demo-hero__cta-group {
    justify-content: center;
    margin-top: 2rem;
}
.demo-ia-section {
    background: var(--bg-alt);
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.demo-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.demo-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.demo-card__media {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}
.demo-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.demo-card__title {
    margin-bottom: 0.5rem;
}
.demo-card__tags {
    margin-top: auto;
    justify-content: center;
}
.demo-auto-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.demo-auto-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.demo-auto-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.demo-auto-card__icon {
    margin-bottom: var(--space-md);
    flex-shrink: 0;
}
.demo-auto-card__tags {
    justify-content: center;
}
.demo-cta {
    margin-top: 2rem;
}
.demo-cta__inner {
    text-align: center;
}
.demo-cta__text {
    max-width: 600px;
    margin: 0 auto 2rem auto;
}
.lightbox__img--sized {
    width: 1000px;
    max-width: 90vw;
}
.lightbox__video--sized {
    max-width: 90vw;
    max-height: 80vh;
    outline: none;
}

/* ============================================
   34. PAGES AUTH (login, reset-password)
============================================ */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}
.auth-card {
    background: #10101a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.auth-logo {
    width: 70px;
    height: auto;
    margin: 0 auto 24px auto;
    display: block;
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.6)) drop-shadow(0 0 25px rgba(123, 47, 247, 0.4));
    image-rendering: crisp-edges;
}
.auth-card__title {
    font-size: 1.5rem;
    margin: 0 0 8px 0;
    text-align: center;
    color: #fff;
}
.auth-card__sub {
    color: #9a9ab0;
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.5;
    text-align: center;
}
.auth-form__group {
    margin-bottom: 16px;
}
.auth-form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #c0c0d1;
}
.auth-form__input {
    width: 100%;
    padding: 12px 16px;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: white;
    outline: none;
    transition: all 0.2s;
    font-size: 0.95rem;
    font-family: inherit;
}
.auth-form__input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}
.auth-form__btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    border: none;
    border-radius: 8px;
    color: #06060b;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
    font-size: 0.95rem;
}
.auth-form__btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 240, 255, 0.2);
}
.auth-form__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.auth-msg {
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    display: none;
    text-align: center;
}
.auth-msg--error {
    background: rgba(255, 0, 110, 0.05);
    border: 1px solid rgba(255, 0, 110, 0.3);
    color: var(--accent-magenta);
}
.auth-msg--success {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--accent-green, #00ff88);
}
.auth-msg.is-visible {
    display: block;
}
