/* ============================================
   UPYOURCOM - STYLES COMPLETS
   Mode Jour/Nuit + Effets Audacieux
   ============================================

   MAJ Claude Code :
   - Slider de témoignages avec contrôles et dots
   - Section CTA avec particules animées et icône fusée
   - Scroll indicator cliquable avec hover effect
   - Responsive amélioré pour le slider
   - Variables CSS pour cohérence du design
   ============================================ */

/* --- CUSTOM CURSOR --- */
/* Désactiver le curseur personnalisé sur mobile/tablette */
@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none !important;
    }
}

/* Réactiver le curseur par défaut sur tactile */
@media (hover: none) or (pointer: coarse) {
    * {
        cursor: auto !important;
    }
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(58, 105, 133, 0.6);
    border: 2px solid rgba(137, 194, 217, 0.9);
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease, opacity 0.15s ease;
    transform: translate(-50%, -50%);
}

/* Cacher le curseur personnalisé sur mobile/tablette */
@media (hover: none) or (pointer: coarse) {
    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #89C2D9;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(137, 194, 217, 0.8);
}

.custom-cursor.cursor-hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(137, 194, 217, 0.3);
}

/* --- PAGE TRANSITION OVERLAY --- */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0A0F1C;
    z-index: 10000;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    opacity: 1;
}

.page-transition.is-active {
    transform: translateX(0);
}

.page-transition.is-leaving {
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Mode clair */
[data-theme="light"] .page-transition {
    background: #F8FAFC;
}

/* Prevent flash on load */
body.is-loading {
    overflow: hidden;
}

/* Override white background during transition - Use dark background */
html {
    background: #0A0F1C !important;
}

body {
    background: var(--color-bg);
    min-height: 100vh;
}

/* --- 1. VARIABLES & THEMES --- */
:root {
    /* Colors - Light Theme */
    --color-primary: #3A6985;
    --color-primary-dark: #2c5167;
    --color-primary-light: #89C2D9;
    --color-accent: #F97316;
    --color-success: #10B981;

    --color-bg: #F8FAFC;
    --color-bg-secondary: #FFFFFF;
    --color-bg-tertiary: #F1F5F9;
    --color-text: #0F172A;
    --color-text-secondary: #64748B;
    --color-border: #D1D5DB;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Sizing */
    --nav-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dark Theme */
[data-theme="dark"] {
    --color-bg: #0A0F1C;
    --color-bg-secondary: #111827;
    --color-bg-tertiary: #1F2937;
    --color-text: #F8FAFC;
    --color-text-secondary: #94A3B8;
    --color-border: #374151;
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

/* Cinematic vignette effect */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 150% 150% at 50% 50%, transparent 60%, rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
    z-index: 9997;
}

[data-theme="dark"] body::after {
    background: radial-gradient(ellipse 150% 150% at 50% 50%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* --- 3. UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    border: 1px solid var(--color-border);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--color-text);
}

/* Dégradé bleu pour les titres de section spécifiques - Mode jour */
.section-title.gradient-blue,
h2.gradient-blue,
.cta-content h2.gradient-blue,
.contact-info h2.gradient-blue,
.story-content h2.gradient-blue {
    background: linear-gradient(135deg, #2c5167 0%, #3A6985 50%, #89C2D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Dégradé blanc vers bleu pour les titres de section spécifiques - Mode nuit */
[data-theme="dark"] .section-title.gradient-blue,
[data-theme="dark"] h2.gradient-blue,
[data-theme="dark"] .cta-content h2.gradient-blue,
[data-theme="dark"] .contact-info h2.gradient-blue,
[data-theme="dark"] .story-content h2.gradient-blue {
    background: linear-gradient(135deg, #ffffff 0%, #89C2D9 50%, #3A6985 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.section-desc {
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}

/* --- 4. BUTTONS --- */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(58, 105, 133, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(58, 105, 133, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(58, 105, 133, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(58, 105, 133, 0.15);
    border-color: rgba(58, 105, 133, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(58, 105, 133, 0.2);
}

/* Dark theme glassmorphism */
[data-theme="dark"] .btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

[data-theme="dark"] .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* --- 5. PAGE LOADER --- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.loader-logo span {
    color: var(--color-primary);
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--color-border);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--color-primary);
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

/* --- 6. CURSOR --- */
/* Cursor handling is done at the top of the file with hover/pointer media queries */

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(58, 105, 133, 0.6);
}

.cursor-outline {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--color-primary);
    background: transparent;
    box-shadow: 0 0 15px rgba(58, 105, 133, 0.3);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

/* --- 7. NOISE OVERLAY --- */
.noise-overlay {
    display: none;
}

/* --- 8. NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

[data-theme="dark"] .navbar {
    background: rgba(10, 15, 28, 0.8);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
}

.logo-up { color: var(--color-text); }
.logo-your { color: var(--color-primary); }
.logo-com { color: var(--color-text); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-links a:not(.btn-primary):hover::after,
.nav-links a:not(.btn-primary).active::after {
    width: 100%;
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    position: relative;
}

.theme-toggle i {
    position: absolute;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.theme-toggle .ph-sun {
    opacity: 1;
    transform: rotate(0);
}

.theme-toggle .ph-moon {
    opacity: 0;
    transform: rotate(-90deg);
}

[data-theme="dark"] .theme-toggle .ph-sun {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="dark"] .theme-toggle .ph-moon {
    opacity: 1;
    transform: rotate(0);
}

.theme-toggle:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: var(--transition-smooth);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-content a {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    padding: 16px;
    transition: var(--transition-smooth);
}

.mobile-menu-content a:hover,
.mobile-menu-content a.active {
    color: var(--color-primary);
}

.chatbot-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
}

.chatbot-toggle-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(58, 105, 133, 0.3);
}

.chatbot-toggle-mobile i {
    font-size: 1.2rem;
}

.theme-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 24px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    font-weight: 500;
}

/* Mobile CTA Button */
.btn-mobile-cta {
    margin-top: 24px;
    padding: 14px 28px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-align: center;
    border-radius: var(--radius-full) !important;
    background: var(--color-primary) !important;
    color: white !important;
}

/* --- 9. HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary-light);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    opacity: 0.5;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

/* Atmospheric depth glow behind hero title */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 50% 50%, rgba(58, 105, 133, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

[data-theme="dark"] .hero-content::before {
    background: radial-gradient(circle at 50% 50%, rgba(137, 194, 217, 0.12) 0%, transparent 70%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text);
}

/* Mode nuit : Titre en bleu clair (simple et propre) */
[data-theme="dark"] .hero-title {
    color: #89C2D9;
}

.title-line {
    display: block;
}

.word {
    display: inline-block;
    margin-right: 12px;
}

.hero-title .highlight {
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--color-primary-light);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-10deg);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.scroll-indicator:hover {
    color: var(--color-primary);
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator:hover .mouse {
    border-color: var(--color-primary);
}

.scroll-indicator:hover .wheel {
    background: var(--color-primary);
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--color-text-secondary);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--color-text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* --- VIDEO SHOWCASE SECTION --- */
.video-showcase {
    padding: 60px 0 80px;
    background: var(--color-bg);
}

.video-card-3d {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.video-card-3d:hover {
    box-shadow:
        0 30px 80px rgba(58, 105, 133, 0.35),
        0 0 0 1px rgba(137, 194, 217, 0.25),
        0 0 60px rgba(137, 194, 217, 0.15);
}

.video-card-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg,
        rgba(58, 105, 133, 0.6),
        rgba(137, 194, 217, 0.6),
        rgba(58, 105, 133, 0.6));
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
    filter: blur(25px);
}

.video-card-3d:hover .video-card-glow {
    opacity: 0.8;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.8; filter: blur(25px); }
    50% { opacity: 1; filter: blur(30px); }
}

.showcase-video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.video-card-3d:hover .showcase-video {
    filter: brightness(1.05) contrast(1.05);
}

/* --- 10. SERVICES SECTION --- */
.services {
    padding: 120px 0;
    background: var(--color-bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .service-card {
    background: var(--color-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(58, 105, 133, 0.15);
}

.service-card:hover::before {
    opacity: 0.03;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 0.05;
}

.card-content {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card > .card-content > p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.service-features i {
    color: var(--color-primary);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
}

.card-link:hover {
    gap: 10px;
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(58, 105, 133, 0.1) 0%, rgba(137, 194, 217, 0.1) 100%);
    border-color: var(--color-primary-light);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 3px 8px;
    background: var(--color-accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- 11. PROCESS SECTION --- */
.process {
    padding: 120px 0;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color-primary);
    transition: height 0.3s ease;
}

.process-steps {
    position: relative;
}

.process-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.process-step.active {
    opacity: 1;
}

.step-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-bg-secondary);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: var(--transition-smooth);
}

.process-step.active .step-marker {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-text-secondary);
}

/* --- 12. MARQUEE --- */
.marquee-section {
    padding: 60px 0;
    background: var(--color-primary);
    overflow: hidden;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.marquee-content .separator {
    color: var(--color-primary-light);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- 13. TESTIMONIALS --- */
.testimonials {
    padding: 120px 0;
    background: var(--color-bg-secondary);
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    min-width: 100%;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .testimonial-card {
    background: var(--color-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    display: flex;
    gap: 4px;
    color: #FBBF24;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-text);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.slider-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

.slider-dot:hover {
    background: var(--color-primary-light);
}

/* --- 14. CTA SECTION --- */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    position: relative;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .cta-box {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 20s ease-in-out infinite;
}

/* CTA Particles - Effect "décollage" */
.cta-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary-light);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleRise 4s ease-in infinite;
}

.particle:nth-child(1) {
    left: 20%;
    bottom: 0;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    bottom: 0;
    animation-delay: 0.8s;
}

.particle:nth-child(3) {
    left: 60%;
    bottom: 0;
    animation-delay: 1.6s;
}

.particle:nth-child(4) {
    left: 80%;
    bottom: 0;
    animation-delay: 2.4s;
}

.particle:nth-child(5) {
    left: 50%;
    bottom: 0;
    animation-delay: 3.2s;
}

@keyframes particleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-400px) scale(0.5);
        opacity: 0;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(58, 105, 133, 0.3);
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-content p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- 15. FOOTER --- */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--color-text-secondary);
    margin: 16px 0 24px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: var(--color-bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* --- 16. PAGE HEADER --- */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.page-header-small {
    padding: 140px 0 60px;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--color-text);
}

.page-description {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- 17. PRICING --- */
.pricing-section {
    padding: 80px 0;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.custom-pack-tab-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    margin-top: 16px;
    gap: 12px;
}

.new-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    }
}

.pricing-tab {
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    user-select: none;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-tab:hover {
    border-color: var(--color-primary);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(58, 105, 133, 0.3);
}

.pricing-tab.active {
    background: var(--color-primary) !important;
    color: white !important;
    border-color: var(--color-primary);
    -webkit-text-fill-color: white !important;
}

/* Custom Pack Tab - Plus gros et distinct */
.pricing-tab-custom {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid var(--color-primary-light);
    position: relative;
    overflow: hidden;
}

.pricing-tab-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(137, 194, 217, 0.2), transparent);
    transition: left 0.6s ease;
}

.pricing-tab-custom:hover::before {
    left: 100%;
}

.pricing-tab-custom:hover {
    border-color: var(--color-primary);
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(58, 105, 133, 0.3);
}

.pricing-tab-custom.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%) !important;
    -webkit-text-fill-color: white !important;
    border-color: var(--color-primary) !important;
}

.pricing-tab-custom i {
    font-size: 1.3rem;
    margin-right: 8px;
    vertical-align: middle;
}

.pricing-tab-custom span {
    vertical-align: middle;
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Pack Builder */
.custom-pack-builder {
    max-width: 1200px;
    margin: 0 auto;
}

.custom-pack-header {
    text-align: center;
    margin-bottom: 32px;
}

.custom-pack-header h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.custom-pack-header p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

.custom-pack-visual {
    max-width: 500px;
    margin: 0 auto 48px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.custom-pack-visual:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(58, 105, 133, 0.3);
}

.custom-pack-visual img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.custom-pack-visual:hover img {
    transform: scale(1.05);
}

.custom-pack-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.custom-pack-services {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-category {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition-smooth);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
}

[data-theme="dark"] .service-category {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

.service-category:hover {
    border-color: var(--color-primary-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .service-category:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.service-category h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
}

.service-category h4 i {
    font-size: 1.5rem;
    color: var(--color-primary-light);
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--color-bg-tertiary);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
}

.service-item:hover {
    background: var(--color-bg);
    border-color: var(--color-primary-light);
    transform: translateX(4px);
}

.service-item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.service-item input[type="checkbox"]:checked ~ .service-name {
    font-weight: 600;
    color: var(--color-primary);
}

.service-name {
    flex: 1;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: var(--transition-base);
}

.service-price {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary-light);
    margin-left: 12px;
}

/* Summary Panel */
.custom-pack-summary {
    position: relative;
}

.summary-sticky {
    position: sticky;
    top: 100px;
    background: var(--color-bg-secondary);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .summary-sticky {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.summary-sticky h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.selected-services {
    min-height: 120px;
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
}

.selected-services::-webkit-scrollbar {
    width: 6px;
}

.selected-services::-webkit-scrollbar-track {
    background: var(--color-bg);
    border-radius: 3px;
}

.selected-services::-webkit-scrollbar-thumb {
    background: var(--color-primary-light);
    border-radius: 3px;
}

.empty-state {
    color: var(--color-text-secondary);
    font-style: italic;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
}

.selected-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-primary-light);
    border-radius: var(--radius-full);
    margin: 4px;
    font-size: 0.85rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selected-service-tag i {
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

.selected-service-tag i:hover {
    color: var(--color-accent);
}

.price-breakdown {
    margin-bottom: 24px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
}

.discount-row {
    color: var(--color-success);
    font-weight: 600;
}

.total-row {
    border-bottom: none;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    padding-top: 16px;
}

.total-row span:last-child {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-note {
    margin-top: 16px;
    padding: 12px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-note i {
    color: var(--color-primary-light);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .custom-pack-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Masquer le panier par défaut jusqu'à sélection */
    .custom-pack-summary {
        display: none;
    }

    /* Afficher et positionner le panier quand il y a des sélections */
    .custom-pack-summary.has-selections {
        display: block;
    }

    .custom-pack-summary.has-selections .summary-sticky {
        position: fixed !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0;
        right: 0;
        z-index: 1000;
        margin: 0;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
        max-height: 85vh;
        overflow: hidden;
        animation: slideUpMobile 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        background: var(--color-bg-secondary);
        transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* État collapsé - hauteur réduite à juste le handle */
    .custom-pack-summary.has-selections.collapsed .summary-sticky {
        max-height: 60px !important;
        overflow: hidden !important;
    }

    [data-theme="dark"] .custom-pack-summary.has-selections .summary-sticky {
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
        background: linear-gradient(to bottom, rgba(17, 24, 39, 0.98) 0%, rgba(31, 41, 55, 0.98) 100%);
    }

    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

    .custom-pack-header h3 {
        font-size: 1.8rem;
    }

    .custom-pack-header p {
        font-size: 1rem;
    }

    .service-category {
        padding: 20px;
    }

    .service-category h4 {
        font-size: 1.1rem;
    }

    .service-item {
        padding: 12px 14px;
        flex-wrap: wrap;
    }

    .service-name {
        flex: 1 1 100%;
        margin-bottom: 4px;
        font-size: 0.9rem;
    }

    .service-price {
        margin-left: 0;
        margin-top: 4px;
    }

    .selected-services {
        max-height: 200px;
    }

    .price-row {
        font-size: 0.9rem;
    }

    .total-row {
        font-size: 1.2rem;
    }

    .summary-note {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .custom-pack-header {
        margin-bottom: 32px;
    }

    .custom-pack-services {
        gap: 20px;
        padding-bottom: 450px; /* Espace pour le récapitulatif sticky */
    }

    /* Retire le padding quand pas de sélections */
    .custom-pack-summary:not(.has-selections) ~ .custom-pack-services {
        padding-bottom: 0;
    }

    .service-category {
        padding: 20px;
        background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
        border: 2px solid var(--color-border);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .service-category h4 {
        font-size: 1.1rem;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--color-border);
    }

    .service-category h4 i {
        font-size: 1.4rem;
    }

    .service-items {
        gap: 14px;
    }

    /* Transformation en cartes visuelles */
    .service-item {
        padding: 0;
        min-height: auto;
        background: var(--color-bg-secondary);
        border: 2px solid var(--color-border);
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: block;
    }

    .service-item:active {
        transform: scale(0.98);
    }

    /* Cache la checkbox native */
    .service-item input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    /* Conteneur du contenu de la carte */
    .service-item {
        position: relative;
        cursor: pointer;
    }

    /* Style de la carte */
    .service-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
    }

    /* Quand la carte est sélectionnée */
    .service-item:has(input:checked) {
        border-color: var(--color-primary);
        background: var(--color-primary);
        box-shadow: 0 6px 20px rgba(58, 105, 133, 0.3);
        transform: translateY(-2px);
    }

    .service-item:has(input:checked)::before {
        opacity: 1;
    }

    /* Wrapper pour le contenu */
    .service-item .service-name,
    .service-item .service-price {
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
    }

    /* Restructuration du contenu */
    .service-name {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--color-text);
        margin: 0;
        padding: 16px 16px 8px 16px;
        display: block;
        line-height: 1.4;
    }

    .service-item:has(input:checked) .service-name {
        color: white;
    }

    .service-price {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--color-primary);
        margin: 0;
        padding: 0 16px 16px 16px;
        display: block;
    }

    .service-item:has(input:checked) .service-price {
        color: white;
    }

    /* Icône de checkmark */
    .service-item::after {
        content: '✓';
        position: absolute;
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        background: white;
        color: var(--color-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: bold;
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 2;
    }

    .service-item:has(input:checked)::after {
        opacity: 1;
        transform: scale(1);
    }

    /* Animation pulse sur sélection */
    @keyframes cardPulse {
        0% {
            box-shadow: 0 6px 20px rgba(58, 105, 133, 0.3);
        }
        50% {
            box-shadow: 0 8px 30px rgba(58, 105, 133, 0.5);
        }
        100% {
            box-shadow: 0 6px 20px rgba(58, 105, 133, 0.3);
        }
    }

    .service-item:has(input:checked) {
        animation: cardPulse 2s ease-in-out infinite;
    }

    /* Badge "Nouveau" ou "Populaire" optionnel */
    .service-item[data-popular]::after {
        content: '★';
        font-size: 12px;
    }

    /* Effet de glissement lumineux au tap */
    .service-item:active::before {
        background: linear-gradient(135deg,
            var(--color-primary) 0%,
            var(--color-primary-light) 50%,
            var(--color-primary) 100%);
        animation: shimmer 0.6s ease;
    }

    @keyframes shimmer {
        0% {
            transform: translateX(-100%);
        }
        100% {
            transform: translateX(100%);
        }
    }

    /* Amélioration du récapitulatif sticky */
    .summary-sticky {
        padding: 24px 20px 28px;
        background: linear-gradient(to bottom, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
    }

    [data-theme="dark"] .summary-sticky {
        background: linear-gradient(to bottom, rgba(17, 24, 39, 0.98) 0%, rgba(31, 41, 55, 0.98) 100%);
    }

    .summary-sticky h4 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .selected-services {
        padding: 12px;
        max-height: 180px;
    }

    .selected-service-tag {
        padding: 10px 14px;
        font-size: 0.85rem;
        margin: 6px;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
        color: white;
        border: none;
        box-shadow: 0 2px 8px rgba(58, 105, 133, 0.3);
        font-weight: 600;
    }

    .selected-service-tag i {
        color: white;
        background: rgba(255, 255, 255, 0.2);
        width: 20px;
        height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-left: 8px;
    }

    .selected-service-tag i:hover {
        background: rgba(255, 255, 255, 0.3);
        color: white;
    }

    .price-row {
        font-size: 0.85rem;
        padding: 10px 0;
    }

    .total-row {
        font-size: 1.1rem;
        padding-top: 12px;
    }

    .btn-full {
        padding: 18px 24px;
        font-size: 1rem;
        font-weight: 700;
        box-shadow: 0 6px 20px rgba(58, 105, 133, 0.4);
        position: relative;
        overflow: hidden;
    }

    .btn-full::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .btn-full:hover::before {
        left: 100%;
    }

    .btn-full:active {
        transform: scale(0.96);
    }

    .summary-note {
        padding: 10px;
        font-size: 0.75rem;
    }

    .summary-note i {
        font-size: 1rem;
    }

    /* ====================================
       RETRACTABLE CART (MOBILE)
       ==================================== */

    /* Toggle handle visible sur mobile */
    .summary-toggle-handle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 20px;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
        color: white;
        border: none;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 -4px 20px rgba(58, 105, 133, 0.3);
        transition: all 0.3s ease;
        margin: 0;
        position: relative;
        z-index: 1001;
    }

    .summary-toggle-handle:active {
        transform: scale(0.98);
    }

    .summary-toggle-handle i {
        font-size: 1.5rem;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        color: white;
    }

    .summary-toggle-label {
        flex: 1;
        text-align: center;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .summary-toggle-price {
        font-size: 1.15rem;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    /* État collapsé - panier fermé (ne montre que le handle) */
    .custom-pack-summary.collapsed .summary-toggle-handle i {
        transform: rotate(180deg);
    }

    .custom-pack-summary.collapsed .summary-content {
        max-height: 0 !important;
        opacity: 0 !important;
        pointer-events: none;
        overflow: hidden !important;
        padding: 0 !important;
    }

    /* État étendu - panier ouvert (montre tout le contenu) */
    .summary-content {
        max-height: 70vh;
        opacity: 1;
        overflow-y: auto;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        padding: 20px;
        padding-bottom: 24px;
    }

    /* Ajustement du sticky avec le nouveau layout */
    .custom-pack-summary.has-selections .summary-sticky {
        padding: 0 !important;
        transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
}

/* Desktop - comportement normal */
@media (min-width: 969px) {
    .custom-pack-summary {
        display: block !important;
    }

    .summary-toggle-handle {
        display: none !important;
    }

    .summary-content {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible !important;
        padding: 0 !important;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pricing-card {
    position: relative;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .pricing-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary-light);
    z-index: 2;
}

[data-theme="dark"] .pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(58, 105, 133, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--color-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.pricing-visual {
    width: 100%;
    height: 250px;
    background: var(--color-bg-tertiary);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-visual::before {
    content: '';
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    opacity: 0.5;
    font-style: italic;
}

.pricing-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover .pricing-visual {
    border-color: var(--color-primary);
    background: var(--color-bg);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(58, 105, 133, 0.3);
}

.pricing-card:hover .pricing-visual img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.pricing-header p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.pricing-price {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-old {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-decoration: line-through;
    opacity: 0.5;
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    display: inline-block;
}

[data-theme="dark"] .price {
    background: linear-gradient(135deg, #fff 0%, #cbd5e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    font-style: italic;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--color-primary);
}

.pricing-features li.disabled {
    color: var(--color-text-secondary);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--color-text-secondary);
}

/* --- 18. FAQ --- */
.faq-section, .faq-quick {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid.compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 16px;
    max-width: none;
}

.faq-item {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .faq-item {
    background: var(--color-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-smooth);
    cursor: pointer;
    user-select: none;
    background: transparent;
    border: none;
    color: var(--color-text);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question i {
    transition: var(--transition-smooth);
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* --- 19. STORY SECTION --- */
.story-section {
    padding: 120px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text);
}

.story-content p {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.story-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.mini-stat {
    text-align: center;
}

.mini-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.mini-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.story-image {
    position: relative;
}

.image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.placeholder-image {
    aspect-ratio: 4/3;
    background: var(--color-bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image i {
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.3;
}

.floating-card {
    position: absolute;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
    color: var(--color-primary);
}

.card-1 {
    top: 20px;
    right: -20px;
}

.card-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: -3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Enhanced floating animations for Innovation & Passion cards */
@keyframes floatCard1 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) translateX(5px) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) translateX(-3px) rotate(-1deg);
    }
    75% {
        transform: translateY(-20px) translateX(8px) rotate(3deg);
    }
}

@keyframes floatCard2 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-12px) translateX(-6px) rotate(-2deg);
    }
    50% {
        transform: translateY(-18px) translateX(4px) rotate(1deg);
    }
    75% {
        transform: translateY(-6px) translateX(-8px) rotate(-3deg);
    }
}

.animate-float-1 {
    animation: floatCard1 5s ease-in-out infinite !important;
}

.animate-float-2 {
    animation: floatCard2 6s ease-in-out infinite !important;
    animation-delay: -2s !important;
}

/* --- 20. VALUES --- */
.values-section {
    padding: 120px 0;
    background: var(--color-bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--color-bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* --- 21. TEAM --- */
.team-section {
    padding: 120px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.team-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
    perspective: 1000px;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 40px rgba(58, 105, 133, 0.2);
    border-color: var(--color-primary);
}

.team-avatar {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(58, 105, 133, 0.2);
}

.team-card:hover .avatar-image {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(58, 105, 133, 0.3);
    border-color: var(--color-accent);
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-info p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.team-socials {
    display: flex;
    gap: 12px;
}

.team-socials a {
    width: 36px;
    height: 36px;
    background: var(--color-bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.team-socials a:hover {
    background: var(--color-primary);
    color: white;
}

/* --- 22. TOOLS --- */
.tools-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.tool-category {
    text-align: center;
}

.tool-category h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--color-primary);
    text-align: center !important;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tool-item {
    padding: 8px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- 23. CLIENTS --- */
.clients-section {
    padding: 80px 0;
    overflow: hidden;
}

.clients-marquee {
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
}

.client-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    white-space: nowrap;
    opacity: 0.5;
}

/* --- 24. CONTACT --- */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--color-text);
}

.contact-info > p {
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 16px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .method-icon {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.method-content h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.method-content a,
.method-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.method-content a:hover {
    color: var(--color-primary);
}

.contact-socials h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--color-bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .contact-form-wrapper {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(58, 105, 133, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 8px;
}

/* --- 25. MAP --- */
.map-section {
    padding: 0 0 80px;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder {
    height: 300px;
    background: var(--color-bg-tertiary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.3;
}

.map-placeholder p {
    color: var(--color-text-secondary);
}

/* --- 26. RESPONSIVE --- */
@media (max-width: 1024px) {
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Video Showcase Mobile */
    .video-showcase {
        padding: 40px 0 60px;
    }

    .video-card-3d {
        max-width: 100%;
        margin: 0 16px;
        border-radius: 16px;
    }

    .showcase-video {
        max-height: 300px;
        border-radius: 16px;
    }

    .video-card-glow {
        border-radius: 18px;
    }

    /* Custom Pack Visual Mobile */
    .custom-pack-visual {
        max-width: 100%;
        margin: 0 16px 32px;
    }

    .custom-pack-visual img {
        max-height: 280px;
    }

    /* Custom Pack Tab Mobile */
    .pricing-tab-custom {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .pricing-tab-custom i {
        font-size: 1.2rem;
    }

    /* Mobile Menu Improvements */
    .mobile-menu {
        padding-top: var(--nav-height);
    }

    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 0 24px;
    }

    .mobile-menu-content a {
        font-size: 1.5rem;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        border-radius: var(--radius-md);
        transition: var(--transition-smooth);
    }

    .mobile-menu-content a:hover {
        background: var(--color-bg-tertiary);
    }

    .theme-toggle-mobile {
        margin-top: 24px;
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
        border: 1px solid var(--color-border);
        transition: var(--transition-smooth);
    }

    .theme-toggle-mobile:hover {
        background: var(--color-primary);
        color: white;
        border-color: var(--color-primary);
    }

    .theme-toggle-mobile i {
        font-size: 1.2rem;
    }

    /* Mobile Theme Toggle Icon States */
    .theme-toggle-mobile .ph-sun {
        display: inline-block;
    }

    .theme-toggle-mobile .ph-moon {
        display: none;
    }

    [data-theme="dark"] .theme-toggle-mobile .ph-sun {
        display: none;
    }

    [data-theme="dark"] .theme-toggle-mobile .ph-moon {
        display: inline-block;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .scroll-indicator {
        display: none;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .process {
        padding: 80px 0;
    }

    .process-step {
        gap: 20px;
        padding: 24px 0;
    }

    .step-marker {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .timeline-track {
        left: 19px;
    }

    .testimonials {
        padding: 80px 0;
    }

    .testimonials-slider {
        max-width: 100%;
    }

    .testimonial-card {
        padding: 32px 20px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .slider-controls {
        gap: 16px;
        margin-top: 24px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .pricing-tabs {
        gap: 6px;
        margin-bottom: 32px;
    }

    .pricing-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-visual {
        height: 220px;
        margin-bottom: 20px;
        background: transparent;
    }

    .pricing-visual img {
        object-fit: cover;
        object-position: center top;
        padding: 0;
    }

    .pricing-visual::before {
        font-size: 0.75rem;
    }

    .price {
        font-size: 2rem;
    }

    .faq-grid.compact {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 0.9rem;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header-small {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .story-section {
        padding: 80px 0;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .story-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .mini-stat-number {
        font-size: 1.5rem;
    }

    .floating-card {
        display: none;
    }

    .values-section {
        padding: 80px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-section {
        padding: 80px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-grid-2 {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .tools-section {
        padding: 60px 0;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-info h2 {
        font-size: 1.6rem;
    }

    .contact-methods {
        gap: 16px;
    }

    .method-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 16px 50px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary, .btn-outline {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-large {
        width: 100%;
        padding: 14px 24px;
    }

    .btn-nav {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 16px;
        flex-direction: column;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .mobile-menu-content a {
        font-size: 1.3rem;
    }

    .pricing-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-tab {
        text-align: center;
    }

    .marquee-section {
        padding: 40px 0;
    }

    .marquee-content span {
        font-size: 1.2rem;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-top {
        margin-bottom: 40px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover,
    .btn-outline:hover {
        transform: none;
    }

    .service-card:hover,
    .pricing-card:hover,
    .testimonial-card:hover,
    .team-card:hover,
    .value-card:hover {
        transform: none;
    }

    .btn-primary:active,
    .btn-outline:active {
        transform: scale(0.98);
    }

    .faq-question {
        min-height: 56px;
    }

    .pricing-tab {
        min-height: 44px;
    }
}

/* ============================================
   SMOOTH EFFECTS & ANIMATIONS
   ============================================ */

/* Smooth hover effects for links */
a, button {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced card hover with smooth shadow */
.service-card,
.testimonial-card,
.value-card,
.team-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover,
.testimonial-card:hover,
.value-card:hover,
.team-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Smooth icon animations */
.service-icon i,
.value-icon i {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card:hover .service-icon i,
.value-card:hover .value-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Smooth text reveal effect */
.section-title,
.hero-title {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Button pulse effect on hover */
.btn-primary:hover,
.btn-outline:hover {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(58, 105, 133, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(58, 105, 133, 0.5);
    }
}

/* Smooth image scale on hover */
.story-img,
.avatar-image {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-image:hover .story-img,
.team-avatar:hover .avatar-image {
    transform: scale(1.05);
}

/* Badge shimmer effect */
.hero-badge,
.section-tag {
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Smooth stat counter glow */
.stat-number {
    transition: text-shadow 0.3s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 20px rgba(58, 105, 133, 0.5);
}

/* Footer social icons bounce */
.footer-socials a {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-socials a:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Smooth scroll indicator */
.scroll-indicator {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Process step marker glow on hover */
.step-marker {
    transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.process-step:hover .step-marker {
    box-shadow: 0 0 30px rgba(58, 105, 133, 0.4);
    transform: scale(1.1);
}

/* Testimonial stars twinkle */
.testimonial-card .stars i {
    animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-card .stars i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card .stars i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-card .stars i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-card .stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.9);
    }
}

/* Logo hover effect */
.logo {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo:hover {
    transform: scale(1.05);
}

/* CTA box breathing effect */
.cta-orb {
    animation: ctaBreathing 4s ease-in-out infinite;
}

@keyframes ctaBreathing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* === MASCOTTE COUCOU ANIMATION === */
.mascot-wave-container {
    position: fixed;
    bottom: 0;
    left: -200px;
    width: 150px;
    height: 150px;
    z-index: 9997;
    pointer-events: none;
    transition: left 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mascot-wave-container.show {
    left: 20px;
}

.mascot-wave-container.hide {
    left: -200px;
}

.mascot-wave-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    animation: wave-bounce 0.6s ease-in-out infinite;
}

@keyframes wave-bounce {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Responsive mobile */
@media (max-width: 768px) {
    .mascot-wave-container {
        width: 120px;
        height: 120px;
    }
}

/* ============================================
   COOKIE CONSENT BANNER - RGPD COMPLIANT
   ============================================ */

/* Overlay backdrop */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.cookie-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: var(--color-bg-secondary);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    transform: translateY(150%) scale(0.8);
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px);
    pointer-events: none;
}

[data-theme="dark"] .cookie-consent {
    background: rgba(17, 24, 39, 0.98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    border-color: rgba(137, 194, 217, 0.2);
}

.cookie-consent.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cookie-icon {
    font-size: 2.5rem;
    animation: cookieFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes cookieFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-8deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(8deg); }
}

.cookie-consent-title {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookie-consent-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    font-weight: 400;
}

.cookie-consent-text a {
    color: var(--color-primary-light);
    text-decoration: underline;
    transition: var(--transition-base);
}

.cookie-consent-text a:hover {
    color: var(--color-primary);
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.cookie-btn:active {
    transform: scale(0.95);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(58, 105, 133, 0.4);
    position: relative;
    overflow: hidden;
}

.cookie-btn-accept::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cookie-btn-accept:hover::before {
    left: 100%;
}

.cookie-btn-accept:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 35px rgba(58, 105, 133, 0.6);
}

.cookie-btn-decline {
    background: var(--color-bg-tertiary);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
}

.cookie-btn-decline:hover {
    background: var(--color-bg);
    color: var(--color-text);
    border-color: var(--color-primary);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cookie-settings {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.cookie-settings-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 8px 0;
    color: var(--color-primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.cookie-settings-toggle:hover {
    color: var(--color-primary);
}

.cookie-settings-toggle i {
    transition: transform var(--transition-base);
}

.cookie-settings-toggle.open i {
    transform: rotate(180deg);
}

.cookie-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-options.open {
    max-height: 300px;
    margin-top: 12px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.cookie-option-info p {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* Custom Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 48px;
    height: 24px;
    background: var(--color-bg-tertiary);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    border: 1px solid var(--color-border);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.cookie-toggle.active .cookie-toggle-slider {
    transform: translateX(24px);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        padding: 20px;
    }

    .cookie-consent-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        min-width: 0;
    }
}
