/* ========================================
   CSS Variables & Reset — Glassmorphism Polynésien
======================================== */
:root {
    /* --- Couleurs de base --- */
    --bleu-lagon: #2E7BAF;
    --bleu-lagon-light: #4A9AC9;
    --bleu-nuit: #142D4A;
    --bleu-nuit-light: #1E3A56;
    --blanc: #ffffff;
    --blanc-casse: #f8fafc;
    --gris-clair: #e2e8f0;
    --gris: #64748b;
    --dore: #d4a853;
    --dore-light: #f5e6c8;
    --sable: #f5f0e8;
    --sable-light: #faf7f2;
    --sable-dark: #ebe4d6;
    --success: #10b981;

    /* --- Glassmorphism semi-transparent --- */
    --glass-white: rgba(255, 255, 255, 0.08);
    --glass-white-md: rgba(255, 255, 255, 0.5);
    --glass-white-strong: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(20, 45, 74, 0.9);
    --glass-lagon: rgba(46, 123, 175, 0.12);
    --glass-lagon-strong: rgba(46, 123, 175, 0.25);
    --glass-dore: rgba(212, 168, 83, 0.12);
    --glass-dore-strong: rgba(212, 168, 83, 0.25);

    /* --- Bordures glass --- */
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-strong: rgba(255, 255, 255, 0.25);
    --glass-border-lagon: rgba(46, 123, 175, 0.3);
    --glass-border-dore: rgba(212, 168, 83, 0.3);

    /* --- Système de flou --- */
    --blur-sm: blur(8px);
    --blur-md: blur(12px);
    --blur-lg: blur(20px);
    --blur-xl: blur(24px);

    /* --- Ombres glass --- */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-glow-lagon: 0 0 20px rgba(46, 123, 175, 0.2), 0 0 60px rgba(46, 123, 175, 0.08);
    --shadow-glow-dore: 0 0 20px rgba(212, 168, 83, 0.3), 0 0 60px rgba(212, 168, 83, 0.1);
    --shadow-neo-light: 0 4px 24px rgba(255, 255, 255, 0.06);
    --shadow-neo-dark: 0 4px 24px rgba(0, 0, 0, 0.25);

    /* --- Rayons --- */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* --- Transition --- */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--bleu-nuit);
    background-color: var(--blanc);
}

.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bleu-lagon);
    color: var(--blanc);
    padding: 12px 24px;
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.2s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* ========================================
   Glass Utility Classes
======================================== */
.glass {
    background: var(--glass-white);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: var(--glass-dark);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border: 1px solid var(--glass-border);
}

.glass-strong {
    background: var(--glass-white-strong);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border-strong);
}

.glass-lagon {
    background: var(--glass-lagon);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border: 1px solid var(--glass-border-lagon);
}

.glass-dore {
    background: var(--glass-dore);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border: 1px solid var(--glass-border-dore);
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--bleu-nuit);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--gris);
    line-height: 1.7;
}

/* ========================================
   Layout
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* ========================================
   Buttons — Glassmorphism
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

/* Reflet glissant au hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bleu-lagon) 0%, var(--bleu-lagon-light) 100%);
    color: var(--blanc);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow), 0 0 20px rgba(46, 123, 175, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-lagon);
}

.btn-secondary {
    background: rgba(46, 123, 175, 0.08);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    color: var(--bleu-lagon);
    border: 1.5px solid var(--bleu-lagon);
}

.btn-secondary:hover {
    background: var(--bleu-lagon);
    color: var(--blanc);
    box-shadow: var(--shadow-glow-lagon);
}

.btn-gold {
    background: linear-gradient(135deg, var(--dore) 0%, #e6bc6a 100%);
    color: var(--bleu-nuit);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow), 0 0 20px rgba(212, 168, 83, 0.15);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-dore);
}

/* ========================================
   Navigation — Glass Navbar
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--sable-light);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid var(--sable-dark);
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--sable-light);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bleu-nuit);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--bleu-lagon) 0%, var(--bleu-nuit) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--blanc);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--bleu-nuit);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--bleu-lagon);
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Navigation Dropdown — Glass */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-dropdown-toggle svg {
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border-strong);
    box-shadow: var(--shadow-glass);
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-top: 12px;
    list-style: none;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.85);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
}

.nav-dropdown-menu li {
    padding: 0;
}

.nav-dropdown .nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--bleu-nuit);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-dropdown .nav-dropdown-menu a:hover {
    background: rgba(46, 123, 175, 0.08);
    color: var(--bleu-lagon);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bleu-nuit);
    margin: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar:not(.scrolled) .mobile-menu-btn span {
    background: var(--bleu-nuit);
}

/* Mobile legal links - hidden on desktop */
.mobile-legal-links {
    display: none;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--sable-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 24px;
        gap: 4px;
        z-index: 100;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--gris-clair);
        color: var(--bleu-nuit) !important;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn span {
        background: var(--bleu-nuit) !important;
    }

    /* Hide dropdown on mobile */
    .nav-dropdown {
        display: none;
    }

    /* Show mobile legal links */
    .mobile-legal-links {
        display: block;
    }

    .mobile-legal-links a {
        color: var(--gris) !important;
        font-size: 0.85rem;
    }

    .nav-links .nav-cta {
        margin-top: 8px;
        text-align: center;
        border-bottom: none;
    }
}

/* ========================================
   Hero Section — Dark Mesh + Orbs
======================================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B1929 0%, #142D4A 40%, #183352 70%, #142D4A 100%);
}

#hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(circle, rgba(46, 123, 175, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

#hero > .container {
    position: relative;
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* Hero Orbs */
.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb:nth-child(1) {
    width: 400px;
    height: 400px;
    background: rgba(46, 123, 175, 0.2);
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.hero-orb:nth-child(2) {
    width: 300px;
    height: 300px;
    background: rgba(212, 168, 83, 0.12);
    bottom: 15%;
    left: 10%;
    animation-delay: -7s;
}

.hero-orb:nth-child(3) {
    width: 250px;
    height: 250px;
    background: rgba(74, 154, 201, 0.1);
    top: 50%;
    left: 40%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

/* Hero Glass Panel */
.hero-glass-panel {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

/* Reflet interne en haut */
.hero-glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    margin-bottom: 24px;
    color: var(--blanc);
    text-shadow: 0 0 40px rgba(46, 123, 175, 0.2);
}

.hero-text h1 span {
    color: var(--bleu-lagon-light);
    text-shadow: 0 0 30px rgba(74, 154, 201, 0.3);
}

.hero-text .subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.floating-badge {
    position: absolute;
    background: var(--blanc);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge.top-right {
    top: -20px;
    right: -20px;
    animation-delay: 0.5s;
}

.floating-badge.bottom-left {
    bottom: -20px;
    left: -20px;
}

.floating-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-icon.success { background: rgba(16, 185, 129, 0.1); }
.floating-badge-icon.ai { background: rgba(46, 123, 175, 0.1); }

.floating-badge-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--bleu-nuit);
}

.floating-badge-subtext {
    font-size: 0.7rem;
    color: var(--gris);
}

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

.hero-reassurance {
    text-align: center;
    padding: 24px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-reassurance p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-reassurance svg {
    width: 18px;
    height: 18px;
    fill: var(--bleu-lagon-light);
}

@media (max-width: 968px) {
    #hero {
        padding-top: 120px;
        padding-bottom: 40px;
        min-height: auto;
        align-items: flex-start;
    }

    .hero-glass-panel {
        padding: 28px 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    #hero {
        padding-top: 140px;
    }
}

@media (max-width: 968px) {
    .hero-text .subtitle {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1rem;
    }

    .hero-reassurance p {
        color: rgba(255, 255, 255, 0.7) !important;
        flex-wrap: wrap;
        font-size: 0.85rem;
    }
}

/* ========================================
   Problem/Promise Section — Light
======================================== */
#probleme {
    background: var(--sable);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-stats {
    display: grid;
    gap: 24px;
}

.stat-card {
    background: var(--glass-white-strong);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border-strong);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon.warning { background: rgba(245, 158, 11, 0.1); }
.stat-icon.danger { background: rgba(239, 68, 68, 0.1); }

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-content h4 {
    margin-bottom: 8px;
    color: var(--bleu-nuit);
}

.stat-content p {
    font-size: 0.9rem;
}

.promise-box {
    background: var(--glass-dark);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--blanc);
    position: relative;
    overflow: hidden;
}

.promise-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 123, 175, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.promise-box h3 {
    color: var(--blanc);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.promise-box h3 svg {
    width: 28px;
    height: 28px;
    fill: var(--bleu-lagon-light);
}

.promise-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .problem-content {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Pricing Section — Dark Mesh
======================================== */
#formules {
    background: linear-gradient(135deg, #0B1929 0%, #142D4A 40%, #183352 70%, #142D4A 100%);
    position: relative;
    overflow: hidden;
}

#formules::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    width: 80%;
    height: 120%;
    background: radial-gradient(circle, rgba(46, 123, 175, 0.1) 0%, transparent 60%);
    pointer-events: none;
    transform: translateX(-50%);
}

#formules::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

#formules .section-header h2 {
    color: var(--blanc);
}

#formules .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

#formules .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    overflow: visible;
}

/* Reflet en haut de carte */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.pricing-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-glass);
}

.pricing-card.featured {
    border-color: var(--bleu-lagon);
    transform: scale(1.02);
    box-shadow: var(--shadow-glow-lagon);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--bleu-lagon) 0%, var(--bleu-lagon-light) 100%);
    color: var(--blanc);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-badge.gold {
    background: linear-gradient(135deg, var(--dore) 0%, #e6bc6a 100%);
    color: var(--bleu-nuit);
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.pricing-header h3 {
    margin-bottom: 8px;
    color: var(--blanc);
}

.pricing-header .subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blanc);
}

.pricing-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-forfaits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.forfait-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.forfait-item span:first-child {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.forfait-item span:last-child {
    font-weight: 600;
    color: var(--bleu-lagon-light);
}

.pricing-features {
    flex: 1;
    margin-bottom: 24px;
}

.pricing-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: var(--bleu-lagon-light);
    margin-top: 2px;
}

.pricing-ideal {
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 24px;
}

.pricing-ideal h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dore);
    margin-bottom: 8px;
}

.pricing-ideal p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-cta {
    margin-top: auto;
}

.pricing-cta .btn {
    width: 100%;
}

/* Pricing Card Business — Sections */
.pricing-sections {
    flex: 1;
    margin-bottom: 24px;
}

.pricing-section {
    margin-bottom: 20px;
}

.pricing-section:last-child {
    margin-bottom: 0;
}

.pricing-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bleu-lagon-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bleu-lagon);
    display: inline-block;
}

.pricing-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-section li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-section li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: var(--bleu-lagon-light);
    margin-top: 2px;
}

@media (max-width: 1100px) {
    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* ========================================
   Why Us Section — Light + Subtle Radials
======================================== */
#pourquoi {
    background: var(--sable-light);
    position: relative;
    overflow: visible;
}

#pourquoi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(46, 123, 175, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#pourquoi > * {
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.why-card {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border-strong);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow-glow-lagon);
    transform: translateY(-4px);
    border-color: var(--glass-border-lagon);
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: rgba(46, 123, 175, 0.08);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border-lagon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: rgba(46, 123, 175, 0.15);
    box-shadow: 0 0 20px rgba(46, 123, 175, 0.2);
}

.why-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--bleu-lagon);
}

.why-card h3 {
    margin-bottom: 16px;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.why-card .highlight {
    color: var(--bleu-lagon);
    font-weight: 600;
}

.partner-mention {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--gris-clair);
}

.partner-mention p {
    font-size: 0.85rem;
    color: var(--gris);
}

.partner-mention strong {
    color: var(--bleu-nuit);
}

@media (max-width: 968px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Process Section — Dark Enriched
======================================== */
#process {
    background: linear-gradient(135deg, #0B1929 0%, #142D4A 40%, #183352 70%, #142D4A 100%);
    color: var(--blanc);
    position: relative;
    overflow: hidden;
}

#process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(46, 123, 175, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(74, 154, 201, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

#process > .container {
    position: relative;
    z-index: 1;
}

#process .section-header h2 {
    color: var(--blanc);
}

#process .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--bleu-lagon), var(--bleu-lagon-light), var(--dore), var(--bleu-lagon));
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: rgba(46, 123, 175, 0.15);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border-lagon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bleu-lagon-light);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-glow-lagon);
    transition: var(--transition);
}

.process-step:hover .process-number {
    background: rgba(46, 123, 175, 0.25);
    box-shadow: 0 0 30px rgba(46, 123, 175, 0.4);
}

.process-step h3 {
    color: var(--blanc);
    margin-bottom: 12px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-grid::before {
        display: none;
    }
}

/* ========================================
   Target Audience Section — Light
======================================== */
#cibles {
    background: var(--sable);
    position: relative;
    overflow: hidden;
}

#cibles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 30%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#cibles > .container {
    position: relative;
    z-index: 1;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.target-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border-strong);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-dore);
    border-color: var(--glass-border-dore);
}

.target-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: rgba(212, 168, 83, 0.12);
    border: 1px solid var(--glass-border-dore);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.target-card:hover .target-icon {
    background: rgba(212, 168, 83, 0.2);
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.2);
}

.target-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--dore);
}

.target-card h3 {
    margin-bottom: 12px;
}

.target-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .target-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FAQ Section — Light
======================================== */
#faq {
    background: var(--sable-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    border: 1px solid var(--gris-clair);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--bleu-lagon);
    box-shadow: 0 0 12px rgba(46, 123, 175, 0.08);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--bleu-lagon);
    box-shadow: 0 0 16px rgba(46, 123, 175, 0.12);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--bleu-nuit);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(46, 123, 175, 0.03);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--bleu-lagon);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--gris);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ========================================
   Contact Section — Gradient sable
======================================== */
#contact {
    background: linear-gradient(135deg, var(--sable) 0%, var(--dore-light) 50%, rgba(46, 123, 175, 0.05) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.contact-text h2 {
    margin-bottom: 16px;
}

.contact-text > p {
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--bleu-lagon);
}

.contact-info-item span {
    font-weight: 500;
    color: var(--bleu-nuit);
}

.contact-form {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border: 1px solid var(--glass-border-strong);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
}

/* Reflet en haut du formulaire */
.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--bleu-nuit);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gris-clair);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bleu-lagon);
    box-shadow: 0 0 0 3px rgba(46, 123, 175, 0.15), var(--shadow-glow-lagon);
    background: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 16px;
}

/* User Type Selector — Glass */
.user-type-selector {
    margin-bottom: 24px;
}

.user-type-options {
    display: flex;
    gap: 16px;
}

.user-type-option {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--gris-clair);
    border-radius: var(--radius);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.5);
}

.user-type-option:hover {
    border-color: var(--bleu-lagon-light);
}

.user-type-option:has(input:checked) {
    border-color: var(--bleu-lagon);
    background: rgba(46, 123, 175, 0.08);
    box-shadow: 0 0 12px rgba(46, 123, 175, 0.1);
}

.user-type-option input {
    display: none;
}

.user-type-label {
    font-weight: 500;
    color: var(--bleu-nuit);
}

.user-type-option:has(input:checked) .user-type-label {
    color: var(--bleu-lagon);
}

/* Conditional Fields */
.hidden {
    display: none !important;
}

.particulier-fields,
.pro-fields {
    animation: fadeInFields 0.3s ease;
}

@keyframes fadeInFields {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Checkbox RGPD */
.form-checkbox {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gris-clair);
    border-radius: 4px;
    background: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--bleu-lagon);
    border-color: var(--bleu-lagon);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--blanc);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(46, 123, 175, 0.2);
}

.checkbox-text {
    font-size: 0.85rem;
    color: var(--gris);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--bleu-lagon);
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-text a:hover {
    color: var(--bleu-nuit);
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Footer — Dark with Gradient Line
======================================== */
footer {
    background: linear-gradient(180deg, var(--bleu-nuit) 0%, #0A1A2E 100%);
    color: var(--blanc);
    padding: 60px 0 24px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bleu-lagon-light), var(--dore), var(--bleu-lagon-light), transparent);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 60%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(46, 123, 175, 0.05) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-brand .logo {
    color: var(--blanc);
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, var(--bleu-lagon) 0%, var(--bleu-lagon-light) 100%);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--blanc);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #1877f2;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-partner {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer-partner strong {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        margin: 0 auto;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   Utilities
======================================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

.logo-img {
    height: 40px;
    width: auto;
}

/* Forfait Selector */
.forfait-selector {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.forfait-btn {
    padding: 8px 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.forfait-btn:hover {
    border-color: var(--bleu-lagon);
    color: var(--bleu-lagon-light);
}

.forfait-btn.active {
    background: var(--bleu-lagon);
    border-color: var(--bleu-lagon);
    color: var(--blanc);
}

.pricing-price .price-value {
    display: inline-block;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--blanc) !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pricing-price .price-value.rolling {
    animation: priceRoll 0.4s ease-out;
}

@keyframes priceRoll {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* AI Badge */
.ai-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--bleu-lagon) 0%, var(--bleu-lagon-light) 100%);
    color: var(--blanc);
    padding: 12px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.ai-badge svg {
    width: 28px;
    height: 28px;
}

/* Pole Selector Styles — Glass Dark */
.pole-selector {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    border-radius: var(--radius);
    border: 1px dashed rgba(46, 123, 175, 0.4);
}

.pole-selector-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-align: center;
}

.pole-toggles {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.pole-toggle {
    cursor: pointer;
}

.pole-toggle input {
    display: none;
}

.pole-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.pole-toggle-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.pole-toggle input:checked + .pole-toggle-btn {
    background: rgba(46, 123, 175, 0.2);
    border-color: var(--bleu-lagon-light);
    color: var(--bleu-lagon-light);
    box-shadow: 0 0 20px rgba(46, 123, 175, 0.3);
}

.pole-toggle-btn:hover {
    border-color: var(--bleu-lagon);
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Pole sections visibility */
.pole-section {
    transition: all 0.3s ease;
    opacity: 1;
    max-height: 2000px;
    overflow: hidden;
}

/* Service details */
.service-details {
    margin: 8px 0 0 28px;
    list-style: disc;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.6;
}

.service-details li {
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 4px;
    display: list-item;
    color: rgba(255, 255, 255, 0.7);
}

.service-details li::marker {
    color: rgba(255, 255, 255, 0.4);
}

/* Volumetrie text inline */
.volumetrie-text {
    color: var(--bleu-lagon-light);
    font-weight: 600;
    font-size: 0.8rem;
    margin-left: 8px;
}

/* Human managed badge */
.human-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--dore) 0%, #e6bc6a 100%);
    color: var(--bleu-nuit);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

.pole-section.hidden {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
}

/* No pole message */
.no-pole-message {
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.no-pole-message.hidden {
    display: none;
}

/* Business AI badge dynamic */
.business-ai {
    transition: all 0.3s ease;
}

.business-ai.hidden {
    display: none;
}

/* Business card specific */
.business-custom .pricing-header {
    padding-bottom: 0;
}

.business-custom .pricing-sections {
    padding-top: 15px;
}

/* Why Grid Wrapper for floating badges */
.why-grid-wrapper {
    position: relative;
}

.why-badge-left {
    position: absolute;
    top: -20px;
    left: 40px;
    z-index: 10;
    animation-delay: 0.3s;
}

.why-badge-right {
    position: absolute;
    top: -20px;
    right: 40px;
    z-index: 10;
    animation-delay: 0.8s;
}

/* Contact badge */
.contact-badge {
    position: absolute;
    top: -25px;
    right: 50px;
    animation-delay: 0.5s;
    z-index: 10;
}

@media (max-width: 968px) {
    .why-badge-left,
    .why-badge-right {
        display: none;
    }
}

@media (max-width: 968px) {
    .contact-badge {
        display: none;
    }
}

/* Animated Counters */
.counter {
    display: inline-block;
}

/* Animated Checkmarks */
.pricing-features li,
.pricing-section li {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.pricing-features.animate li,
.pricing-section.animate li {
    opacity: 1;
    transform: translateX(0);
}

.pricing-features li svg,
.pricing-section li svg {
    transition: transform 0.3s ease;
}

.pricing-features.animate li svg,
.pricing-section.animate li svg {
    animation: checkPop 0.4s ease forwards;
}

@keyframes checkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/* Progress Bar for Savings */
.savings-bar-container {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 40px;
    box-shadow: var(--shadow);
}

.savings-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.savings-bar-header h4 {
    color: var(--bleu-nuit);
    font-size: 1rem;
}

.savings-bar-header span {
    color: var(--bleu-lagon);
    font-weight: 700;
    font-size: 1.1rem;
}

.savings-bar {
    height: 24px;
    background: var(--gris-clair);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.savings-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bleu-lagon) 0%, var(--bleu-lagon-light) 100%);
    border-radius: 12px;
    width: 0%;
    transition: width 1.5s ease-out;
    position: relative;
}

.savings-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.savings-bar-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.85rem;
}

.savings-bar-labels span:first-child {
    color: var(--gris);
}

.savings-bar-labels span:last-child {
    color: var(--success);
    font-weight: 600;
}

/* ========================================
   Animations — Glassmorphism
======================================== */

/* glowPulse replaces old pulse */
.btn-primary.pulse {
    animation: glowPulse 2.5s infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(46, 123, 175, 0.3), 0 0 15px rgba(46, 123, 175, 0.1);
    }
    50% {
        box-shadow: 0 0 15px rgba(46, 123, 175, 0.5), 0 0 40px rgba(46, 123, 175, 0.2);
    }
}

.btn-gold.pulse {
    animation: glowPulseGold 2.5s infinite;
}

@keyframes glowPulseGold {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 168, 83, 0.3), 0 0 15px rgba(212, 168, 83, 0.1);
    }
    50% {
        box-shadow: 0 0 15px rgba(212, 168, 83, 0.5), 0 0 40px rgba(212, 168, 83, 0.2);
    }
}

/* Icon hover — unified scale+glow */
.why-icon svg,
.target-icon svg,
.stat-icon svg,
.process-number {
    transition: var(--transition);
}

.why-card:hover .why-icon svg,
.target-card:hover .target-icon svg,
.stat-card:hover .stat-icon svg {
    animation: iconScaleGlow 0.5s ease;
}

.process-step:hover .process-number {
    animation: iconScaleGlow 0.5s ease;
}

@keyframes iconScaleGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Glass Shine on reveal */
.glass-shine {
    position: relative;
    overflow: hidden;
}

.glass-shine.revealed::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: glassShine 0.8s ease forwards;
    pointer-events: none;
}

@keyframes glassShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Contact info icons hover */
.contact-info-icon {
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1);
    background: var(--bleu-lagon);
}

.contact-info-item:hover .contact-info-icon svg {
    fill: var(--blanc);
}

/* Parallax Effect */
.parallax-bg {
    position: relative;
    overflow: hidden;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(46, 123, 175, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(46, 123, 175, 0.04) 0%, transparent 70%);
    pointer-events: none;
    will-change: transform;
    z-index: 0;
}

.parallax-bg > * {
    position: relative;
    z-index: 1;
}

/* Floating Bubbles / Particles — on dark bg */
.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), rgba(46, 123, 175, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    opacity: 0;
    animation: floatBubble linear infinite;
}

.bubble::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

@keyframes floatBubble {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-120vh) translateX(100px) scale(0.8);
        opacity: 0;
    }
}

/* Testimonials Section */
#avis {
    padding: 80px 0;
    background: var(--blanc);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    margin-bottom: 16px;
}

.testimonials-header p {
    color: var(--gris);
    font-size: 1.1rem;
}

.testimonials-track-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track-wrapper::before,
.testimonials-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--blanc) 0%, transparent 100%);
}

.testimonials-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--blanc) 0%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 40s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: 350px;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gris-clair);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #f59e0b;
}

.testimonial-content {
    color: var(--bleu-nuit);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bleu-lagon) 0%, var(--bleu-nuit) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    color: var(--bleu-nuit);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.testimonial-info p {
    color: var(--gris);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 300px;
        padding: 24px;
    }

    .testimonials-track-wrapper::before,
    .testimonials-track-wrapper::after {
        width: 50px;
    }
}

/* Form Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 64px;
    height: 64px;
    fill: var(--success);
    margin-bottom: 16px;
}

.form-success h3 {
    margin-bottom: 8px;
    color: var(--bleu-nuit);
}

.form-success p {
    color: var(--gris);
}

/* Smooth scroll offset for fixed header */
section[id] {
    scroll-margin-top: 80px;
}

/* Spinning animation for form submit button */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spinning {
    animation: spin 1s linear infinite;
}

button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ========================================
   Cookie Banner — Glass
======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.9);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border-top: 1px solid var(--sable-dark);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text h4 {
    color: var(--bleu-nuit);
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner-text h4 svg {
    width: 24px;
    height: 24px;
    fill: var(--bleu-lagon);
}

.cookie-banner-text p {
    color: var(--gris);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--bleu-lagon);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--bleu-nuit);
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--bleu-lagon) 0%, var(--bleu-lagon-light) 100%);
    color: var(--blanc);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-lagon);
}

.cookie-btn-refuse {
    background: rgba(255, 255, 255, 0.5);
    color: var(--gris);
    border: 2px solid var(--gris-clair);
}

.cookie-btn-refuse:hover {
    border-color: var(--bleu-lagon);
    color: var(--bleu-lagon);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--bleu-lagon);
    padding: 12px 16px;
}

.cookie-btn-settings:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* ========================================
   Pricing Categories (Services à la carte)
======================================== */
.pricing-categories {
    padding: 0 24px 24px;
}

.pricing-category {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
    border-left: 3px solid var(--bleu-lagon);
}

.pricing-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.category-header svg {
    width: 22px;
    height: 22px;
    fill: var(--bleu-lagon-light);
    flex-shrink: 0;
}

.category-header span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.category-price {
    color: var(--bleu-lagon-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.category-price strong {
    font-size: 1rem;
}

.category-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-items li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.category-items li::before {
    content: '\2022';
    color: var(--bleu-lagon-light);
    position: absolute;
    left: 6px;
}

@media (max-width: 768px) {
    .pricing-categories {
        padding: 0 16px 16px;
    }

    .pricing-category {
        padding: 14px;
    }
}

/* ========================================
   Reveal Animations
======================================== */
.reveal-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive — Mobile Optimizations
======================================== */
@media (max-width: 768px) {
    /* Reduce blur on mobile for performance */
    .why-card,
    .target-card,
    .stat-card,
    .faq-item,
    .contact-form {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* Hide hero orbs on mobile */
    .hero-orbs {
        display: none;
    }

    /* Simplify dark bg gradients on mobile */
    #hero {
        background: linear-gradient(180deg, #0B1929 0%, #142D4A 100%);
    }

    #formules {
        background: linear-gradient(180deg, #0B1929 0%, #142D4A 100%);
    }

    #process {
        background: linear-gradient(180deg, #0B1929 0%, #142D4A 100%);
    }

    /* Hide bubbles on mobile */
    .bubbles-container {
        display: none;
    }

    /* Simplify hero glass panel on mobile */
    .hero-glass-panel {
        padding: 24px 16px;
    }
}

/* ========================================
   Fallback — No backdrop-filter
======================================== */
@supports not (backdrop-filter: blur(1px)) {
    .navbar {
        background: rgba(250, 247, 242, 0.95);
    }

    .navbar.scrolled {
        background: rgba(250, 247, 242, 0.98);
    }

    .navbar:not(.scrolled) .nav-links a {
        color: var(--bleu-nuit);
    }

    .navbar:not(.scrolled) .mobile-menu-btn span {
        background: var(--bleu-nuit);
    }

    .pricing-card {
        background: rgba(20, 45, 74, 0.92);
    }

    .why-card {
        background: rgba(250, 247, 242, 0.92);
    }

    .target-card {
        background: rgba(245, 240, 232, 0.92);
    }

    .stat-card {
        background: rgba(245, 240, 232, 0.92);
    }

    .faq-item {
        background: rgba(250, 247, 242, 0.92);
    }

    .contact-form {
        background: rgba(255, 255, 255, 0.92);
    }

    .hero-glass-panel {
        background: rgba(20, 45, 74, 0.85);
    }

    .cookie-banner {
        background: rgba(250, 247, 242, 0.95);
    }

    .nav-dropdown-menu {
        background: rgba(250, 247, 242, 0.95);
    }

    .nav-links {
        background: rgba(250, 247, 242, 0.98) !important;
    }

    .pole-selector {
        background: rgba(20, 30, 50, 0.85);
    }
}

/* ========================================
   Accessibility — Reduced Motion
======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
