

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales - Thème spatial gris lune espace */
    --primary-color: #c0c8d8;
    --secondary-color: #a0a8b8;
    --accent-color: #d8e0f0;
    --success-color: #10b981;
    
    /* Couleurs de fond */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.05);
    
    /* Couleurs de texte */
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #666666;
    
    /* Gradients inspirés thème spatial gris lune */
    --gradient-primary: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    --gradient-secondary: linear-gradient(135deg, #d8e0f0 0%, #c0c8d8 100%);
    --gradient-accent: linear-gradient(135deg, #a0a8b8 0%, #d8e0f0 100%);
    
    /* Ombres et effets */
    --shadow-glow: 0 0 20px rgba(192, 200, 216, 0.3);
    --shadow-glow-strong: 0 0 40px rgba(192, 200, 216, 0.6);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --border-radius: 12px;
    
    /* Typographie */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="8" cy="8" r="6" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.9"/><circle cx="8" cy="8" r="1.5" fill="%23ffffff"/></svg>'), auto;
    scroll-behavior: smooth;
}

/* Curseur spatial pour les éléments interactifs */
a, button, .btn, .nav-link, .cta-nav, .social-link-bluestar, .legal-link, .footer-link-bluestar {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="8" cy="8" r="6" fill="%23ffffff" opacity="0.4"/><circle cx="8" cy="8" r="3" fill="%23ffffff" opacity="0.7"/><circle cx="8" cy="8" r="1" fill="%23ffffff"/></svg>'), pointer;
}

/* ========================================
   THÈME SPATIAL MODERNE - FOND NOIR
   ======================================== */

/* Fond spatial pour les sections spécifiques */
.spatial-section {
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    overflow: hidden;
}

.spatial-section .container {
    position: relative;
    z-index: 2;
}

/* Couches spatiales pour les sections */
.spatial-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

/* Lune - Harmonisée avec le thème bleu */
.spatial-moon {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #e8f4fd 0%, #b8d4f0 50%, #6c7b95 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(232, 244, 253, 0.2),
        inset -10px -10px 20px rgba(26, 26, 46, 0.2);
    animation: moonFloat 8s ease-in-out infinite;
}




/* Vaisseau spatial - Plus discret */
.spatial-spaceship {
    position: absolute;
    top: 15%;
    left: 50%;
    width: 80px;
    height: 40px;
    background: linear-gradient(45deg, #636e72 0%, #2d3436 100%);
    border-radius: 20px 5px 20px 5px;
    box-shadow: 0 0 10px rgba(99, 110, 114, 0.3);
    animation: spaceshipFloat 15s ease-in-out infinite;
    opacity: 0.7;
}


/* Astronaute - Plus discret */
.spatial-astronaut {
    position: absolute;
    bottom: 20%;
    right: 30%;
    width: 50px;
    height: 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px 25px 15px 15px;
    animation: astronautFloat 6s ease-in-out infinite;
    opacity: 0.6;
}


/* Animations spatiales */

@keyframes planetOrbit {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(60px, 0) rotate(180deg);
    }
    75% {
        transform: translate(30px, 20px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes planetFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

@keyframes planetSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes spaceshipFloat {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(20px) translateY(-10px);
    }
    50% {
        transform: translateX(0) translateY(-20px);
    }
    75% {
        transform: translateX(-20px) translateY(-10px);
    }
}

@keyframes astronautFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* ========================================
   FAQ SECTION MODERNE PROFESSIONNELLE
   ======================================== */

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

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: -1px;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.1) 0%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.faq-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 136, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(100, 116, 139, 0.1);
    border: 1px solid rgba(100, 116, 139, 0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
    backdrop-filter: blur(20px);
    color: #64748b;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.2), transparent);
    transition: left 0.6s ease;
}

.faq-badge:hover::before {
    left: 100%;
}

.faq-badge i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.faq-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #64748b 50%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #64748b, #475569);
    border-radius: 2px;
}

.faq-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-top: 1rem;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 24px;
    margin-bottom: 2rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 136, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    border-color: rgba(100, 116, 139, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(100, 116, 139, 0.1);
    transform: translateY(-8px);
}

.faq-item.active {
    border-color: rgba(100, 116, 139, 0.6);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(100, 116, 139, 0.2);
    transform: translateY(-8px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.question-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.question-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover .question-icon::before,
.faq-item.active .question-icon::before {
    opacity: 1;
}

.faq-item:hover .question-icon,
.faq-item.active .question-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(100, 116, 139, 0.3);
}

.question-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}


.question-content {
    flex: 1;
}

.question-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: all 0.4s ease;
}

.faq-item:hover .question-content h3,
.faq-item.active .question-content h3 {
    color: #64748b;
    transform: translateX(5px);
}

.faq-item:hover .question-preview,
.faq-item.active .question-preview {
    color: rgba(255, 255, 255, 0.9);
}

.question-preview {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
    transition: all 0.4s ease;
}

.question-arrow {
    width: 50px;
    height: 50px;
    background: rgba(108, 123, 149, 0.2);
    border: 1px solid rgba(108, 123, 149, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c8d8;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.question-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover .question-arrow::before,
.faq-item.active .question-arrow::before {
    opacity: 1;
}

.faq-item:hover .question-arrow,
.faq-item.active .question-arrow {
    transform: scale(1.1);
    border-color: rgba(100, 116, 139, 0.4);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.2);
}

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

.question-arrow i {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.faq-item:hover .question-arrow i,
.faq-item.active .question-arrow i {
    color: #000;
    transform: rotate(180deg);
}

.question-arrow i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    opacity: 1;
}

.answer-content {
    padding: 0 2.5rem 2.5rem 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}

.answer-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.answer-content strong {
    color: #c0c8d8;
}

/* Timeline */
.answer-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.timeline-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.timeline-phase {
    display: block;
    color: #c0c8d8;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-duration {
    display: block;
    color: #a0a8b8;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Guarantee badges */
.guarantee-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(192, 200, 216, 0.2);
    border-radius: 12px;
    padding: 1rem;
}

.guarantee-badge i {
    color: #c0c8d8;
    font-size: 1.2rem;
}

.guarantee-badge span {
    color: white;
    font-weight: 500;
}

/* Advantages grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.advantage-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-item i {
    font-size: 2rem;
    color: #c0c8d8;
    margin-bottom: 1rem;
}

.advantage-item h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Autonomy features */
.autonomy-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 136, 255, 0.1);
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 25px;
    padding: 0.7rem 1rem;
    color: white;
    font-weight: 500;
}

.feature-item i {
    color: #a0a8b8;
}

/* Pricing breakdown */
.pricing-breakdown {
    margin-top: 1.5rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.price-label {
    color: white;
    font-weight: 500;
}

.price-value {
    color: #c0c8d8;
    font-weight: 600;
}


/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.2rem;
    }
    
    .faq-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .question-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .question-content h3 {
        font-size: 1.2rem;
    }
    
    .question-preview {
        font-size: 0.9rem;
    }
    
    .question-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .answer-timeline {
        grid-template-columns: 1fr;
    }
    
    .guarantee-badges {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .autonomy-features {
        flex-direction: column;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .spatial-moon {
        width: 80px;
        height: 80px;
        top: 5%;
        right: 10%;
    }
    
    .spatial-spaceship {
        width: 60px;
        height: 30px;
        top: 10%;
        left: 45%;
    }
    
    .spatial-astronaut {
        width: 40px;
        height: 50px;
        bottom: 15%;
        right: 25%;
    }
}

/* Responsive - Très petit écran */
@media (max-width: 480px) {
    .spatial-moon {
        width: 60px;
        height: 60px;
        top: 3%;
        right: 5%;
    }
    
    .spatial-spaceship {
        width: 50px;
        height: 25px;
    }
    
    .spatial-astronaut {
        width: 30px;
        height: 40px;
    }
}

/* Animation de la lune */

/* Animation de l'astronaute */
@keyframes astronautFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-3px) rotate(-2deg);
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Navigation améliorée avec effet de flou */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: var(--font-size-xl);
    font-weight: 800;
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(192, 200, 216, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-nav {
    background: var(--gradient-primary);
    color: var(--bg-primary) !important;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-nav::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: left 0.5s ease;
}

.cta-nav:hover::before {
    left: 100%;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section avec effets avancés inspirés Blue Star */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #050505 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 136, 255, 0.1) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(192, 200, 216, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(192, 200, 216, 0.6)); }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--font-size-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    box-shadow: 0 10px 30px rgba(192, 200, 216, 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: left 0.5s ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 200, 216, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 200, 216, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: var(--font-size-lg);
}

/* Hero Visual avec animations spatiales */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.3;
    overflow: hidden;
    border-radius: 20px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px) brightness(0.7);
    transition: all 0.3s ease;
}

.planet-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.planet {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 60px rgba(192, 200, 216, 0.5),
        inset -30px -30px 60px rgba(0, 0, 0, 0.3);
    animation: planet-rotate 20s linear infinite;
}

@keyframes planet-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit {
    position: absolute;
    border: 1px solid rgba(192, 200, 216, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-rotate 15s linear infinite;
}

.orbit-1 {
    width: 250px;
    height: 250px;
    animation-duration: 15s;
}

.orbit-2 {
    width: 320px;
    height: 320px;
    animation-duration: 20s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 400px;
    height: 400px;
    animation-duration: 25s;
}

@keyframes orbit-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    position: relative;
    animation: scroll-bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.8; }
    25% { opacity: 0.4; }
    50% { opacity: 1; }
    75% { opacity: 0.6; }
}

/* Sections communes avec effets de parallaxe */
.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
}


.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Problèmes Section */
.problems-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: -1px;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.05) 0%, rgba(15, 23, 42, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.problem-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xl);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 136, 0.1), rgba(0, 255, 136, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: var(--font-size-xl);
    color: var(--bg-primary);
}

.problem-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-color);
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.problem-image {
    margin-top: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 150px;
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Solution Section */
.solution-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #475569 0%, #64748b 50%, #94a3b8 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: -1px;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(71, 85, 105, 0.05) 0%, rgba(51, 65, 85, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xl);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-card.guarantee {
    border: 2px solid var(--success-color);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-lg);
    color: var(--bg-primary);
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-image {
    margin-top: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 120px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Stats Section */
.stats-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-lg);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    display: block;
    animation: countUp 2s ease-out;
}

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

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: var(--font-size-sm);
}

/* Portfolio Preview */
.portfolio-preview {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.portfolio-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 136, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.portfolio-image {
    height: 200px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-placeholder {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    color: var(--bg-primary);
}

.portfolio-content {
    padding: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.portfolio-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.portfolio-result {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 136, 255, 0.2);
    color: var(--secondary-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.portfolio-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: gap 0.3s ease;
}

.portfolio-link:hover {
    gap: var(--spacing-sm);
}

.portfolio-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Témoignages */
.testimonials-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xl);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-sm);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-size: var(--font-size-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-info strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
}

.author-info span {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* CTA Final */
.final-cta {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.cta-content p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* Animations d'apparition inspirées Blue Star */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Classes d'animation pour les éléments au scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.animate-on-scroll-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.animate-on-scroll-scale.animated {
    opacity: 1;
    transform: scale(1);
}



/* Effets de lueur pour les éléments interactifs */
.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: inherit;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.glow-effect:hover::after {
    opacity: 0.3;
}

/* Animations de chargement supprimées */

/* Effets de texte animé */
.animated-text {
    display: inline-block;
    animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

/* Effets de survol avancés */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Effets de parallaxe */
.parallax-element {
    will-change: transform;
    transform: translateZ(0);
}

/* Effets de flou et de focus */
.blur-on-hover {
    transition: filter 0.3s ease;
}

.blur-on-hover:hover {
    filter: blur(2px);
}

.focus-on-hover {
    transition: all 0.3s ease;
}

.focus-on-hover:hover {
    filter: brightness(1.2) contrast(1.1);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: var(--spacing-lg) 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: var(--font-size-sm);
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: var(--font-size-base);
    }
}

/* ========================================
   NOUVEAUX STYLES POUR L'IMMERSION COMPLÈTE
   ======================================== */

/* Styles pour les images de services */
.service-image {
    margin-top: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Styles pour les images de portfolio */
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Styles pour les images d'équipe */
.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* Animations pour les filtres de portfolio */
.filter-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before {
    left: 0;
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--bg-primary);
}

/* Styles pour les éléments de contact */
.contact-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Styles pour les cartes de rendez-vous */
.appointment-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.appointment-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Styles pour les options de rendez-vous */
.appointment-option {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.appointment-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Styles pour les cartes d'informations de contact */
.contact-info-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Styles pour les boutons de type de formulaire */
.form-type-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-type-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-type-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.form-type-btn.active {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border-color: var(--primary-color);
}

/* Styles pour les cartes de contact BlueStar-style */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
}

.contact-card-header i {
    font-size: var(--font-size-lg);
    color: var(--primary-color);
}

.contact-card-header span {
    font-weight: 600;
    color: var(--text-primary);
}

.contact-badge {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    margin-left: auto;
}

.contact-detail {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
}

/* Styles pour les liens sociaux dans les cartes */
.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Styles pour les éléments FAQ */
.faq-item {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.faq-question {
    transition: all 0.3s ease;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Styles pour les étapes de processus */
.process-step {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: left 0.3s ease;
    z-index: 0;
}

.process-step:hover::before {
    left: 0;
}

.process-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.step-number {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-strong);
}

/* Styles pour les valeurs */
.value-item {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.1;
    transition: left 0.3s ease;
    z-index: 0;
}

.value-item:hover::before {
    left: 0;
}

.value-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow-strong);
}

/* Styles pour les points de différence */
.difference-point {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.difference-point:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--success-color);
    transform: translateX(10px);
}

.difference-point i {
    color: var(--success-color);
    font-size: var(--font-size-lg);
    margin-top: 0.25rem;
    transition: all 0.3s ease;
}

.difference-point:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--success-color);
}

/* Styles pour les éléments technologiques */
.tech-item {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0.1;
    transition: left 0.3s ease;
    z-index: 0;
}

.tech-item:hover::before {
    left: 0;
}

.tech-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.tech-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-glow-strong);
}

/* Styles pour les études de cas */
.case-study-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: left 0.3s ease;
    z-index: 0;
}

.case-study-card:hover::before {
    left: 0;
}

.case-study-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.case-study-header {
    position: relative;
    z-index: 1;
}

.case-study-content {
    position: relative;
    z-index: 1;
}

/* Styles pour les résultats de cas */
.case-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.result-highlight {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.result-highlight:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.result-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* Styles pour les témoignages dans les cas d'études */
.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 1rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Amélioration des animations existantes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.animate-on-scroll-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.animate-on-scroll-scale.animate {
    opacity: 1;
    transform: scale(1);
}

/* Amélioration des effets de survol */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Amélioration des effets de lueur */
.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: left 0.3s ease;
    z-index: -1;
}

.glow-effect:hover::before {
    left: 0;
}

.glow-effect:hover {
    box-shadow: var(--shadow-glow);
}

/* Amélioration des effets de focus */
.focus-on-hover {
    transition: all 0.3s ease;
}

.focus-on-hover:hover {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.02);
}

/* Styles pour les images de hero sur toutes les pages */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    filter: blur(1px) brightness(0.7);
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Styles pour les éléments de navigation améliorés */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

/* Responsive pour les nouveaux éléments */
@media (max-width: 768px) {
    .service-image {
        height: 150px;
    }
    
    .member-photo img {
        width: 120px;
        height: 120px;
    }
    
    .case-results {
        grid-template-columns: 1fr;
    }
    
    .appointment-option {
        padding: 1rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    /* Styles responsive pour la page contact BlueStar-style */
    .form-type-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-type-btn {
        padding: 0.875rem 1rem;
        font-size: var(--font-size-sm);
    }
    
    .contact-info-container {
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-card-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .contact-badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.5rem;
    }
    
    .social-links-contact {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* ========================================
   FORMULAIRE ASTRONAUTE PROFESSIONNEL
   ======================================== */

/* En-tête du formulaire */
.form-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.form-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(192, 200, 216, 0.3);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.form-header p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 1.5rem;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Formulaire astronaute */
.astronaut-form {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.astronaut-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6c7b95 0%, #8b9dc3 50%, #b0c4de 100%);
}

/* Groupes de formulaire */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Labels avec icônes */
.form-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #b8c5d1;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group label i {
    color: #6c7b95;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.form-group:focus-within label {
    color: #8b9dc3;
}

.form-group:focus-within label i {
    color: #b0c4de;
}

/* Champs de saisie */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 8px;
    color: #e8e8f0;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a8b8;
    opacity: 0.8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6c7b95;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(108, 123, 149, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(108, 123, 149, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

/* Sélecteurs */
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236c7b95' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-group select option {
    background: #1a1a2e;
    color: #e8e8f0;
    padding: 0.5rem;
}

/* Zone de texte */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Bouton astronaute */
.btn-astronaut {
    position: relative;
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 123, 149, 0.3);
    width: 100%;
    margin-bottom: 1rem;
}

.btn-astronaut:hover {
    background: linear-gradient(135deg, #8b9dc3 0%, #b0c4de 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 123, 149, 0.4);
}

.btn-astronaut:active {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(108, 123, 149, 0.3);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-astronaut i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-astronaut:hover i {
    transform: translateX(3px);
}

.btn-glow {
    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-astronaut:hover .btn-glow {
    left: 100%;
}

/* Note du formulaire */
.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #a0a8b8;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(108, 123, 149, 0.1);
}

.form-note i {
    color: #6c7b95;
}

.rocket-emoji {
    font-size: 1.2rem;
    animation: rocketPulse 2s ease-in-out infinite;
}

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

/* Responsive pour le formulaire */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .astronaut-form {
        padding: 1.5rem;
    }
    
    .form-header {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }
    
    .form-header h2 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .form-header p {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
    }
    
    .btn-astronaut {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   PAGE ABOUT - THÈME ASTRONAUTE GRIS LUNE
   ======================================== */

/* Hero About */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1e3a8a 0%, #1e293b 50%, #000000 100%);
}


.about-hero .hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(108, 123, 149, 0.3) 100%);
    pointer-events: none;
}

.about-hero .hero-text {
    padding: 2rem 0;
}

.about-hero .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(108, 123, 149, 0.1);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #8b9dc3;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #e8e8f0;
    margin-bottom: 2rem;
}

.about-hero .text-gradient {
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .hero-description {
    margin-bottom: 2.5rem;
}

.about-hero .description-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e8e8f0;
    margin-bottom: 1rem;
}

.about-hero .description-section p {
    color: #b8c5d1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-hero .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-astronaut-primary {
    position: relative;
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 123, 149, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 300px;
}

.btn-astronaut-primary:hover {
    background: linear-gradient(135deg, #8b9dc3 0%, #b0c4de 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 123, 149, 0.4);
}

.btn-astronaut-primary .btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-astronaut-primary .btn-glow {
    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-astronaut-primary:hover .btn-glow {
    left: 100%;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.social-proof span {
    color: #a0a8b8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Sections Expertise */
.expertise-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: -1px;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.1) 0%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.follow-up-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #475569 0%, #64748b 50%, #94a3b8 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: -1px;
}

.follow-up-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(100, 116, 139, 0.1) 0%, rgba(71, 85, 105, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.expertise-content,
.follow-up-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expertise-visual,
.follow-up-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.expertise-image-container,
.follow-up-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.expertise-image,
.follow-up-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.expertise-text,
.follow-up-text {
    padding: 2rem 0;
}

.expertise-text .section-badge,
.follow-up-text .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(108, 123, 149, 0.1);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #8b9dc3;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.expertise-text .section-title,
.follow-up-text .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #e8e8f0;
    margin-bottom: 2rem;
}

.expertise-description,
.follow-up-description {
    margin-bottom: 2.5rem;
}

.expertise-description .description-section h3,
.follow-up-description .description-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e8e8f0;
    margin-bottom: 1rem;
}

.expertise-description .description-section p,
.follow-up-description .description-section p {
    color: #b8c5d1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.expertise-list,
.follow-up-list {
    margin-top: 2rem;
}

.expertise-item,
.follow-up-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(108, 123, 149, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.expertise-item:hover,
.follow-up-item:hover {
    background: rgba(108, 123, 149, 0.05);
    border-color: rgba(108, 123, 149, 0.2);
    transform: translateX(10px);
}

.expertise-item i,
.follow-up-item i {
    color: #6c7b95;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.expertise-item span,
.follow-up-item span {
    color: #e8e8f0;
    font-weight: 500;
}

.expertise-actions,
.follow-up-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Section Team */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #94a3b8 0%, #64748b 50%, #475569 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: -1px;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(51, 65, 85, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(108, 123, 149, 0.1);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #8b9dc3;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.team-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #e8e8f0;
    margin-bottom: 1.5rem;
}

.team-description {
    max-width: 600px;
    margin: 0 auto;
}

.team-description p {
    color: #b8c5d1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(108, 123, 149, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(108, 123, 149, 0.05);
    border-color: rgba(108, 123, 149, 0.2);
    transform: translateY(-10px);
}

.member-photo {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-photo-glow {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 20px;
    background: linear-gradient(180deg, rgba(108, 123, 149, 0.3) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(10px);
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e8e8f0;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #6c7b95;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-description {
    color: #b8c5d1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.skill {
    background: rgba(108, 123, 149, 0.1);
    color: #8b9dc3;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(108, 123, 149, 0.1);
    color: #8b9dc3;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: rgba(108, 123, 149, 0.2);
    color: #e8e8f0;
    transform: translateY(-2px);
}

.team-cta {
    text-align: center;
    margin-bottom: 4rem;
}

.team-story {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(108, 123, 149, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.story-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #e8e8f0;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: #b8c5d1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-highlight {
    background: rgba(108, 123, 149, 0.1);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
}

.story-highlight i {
    color: #6c7b95;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-highlight p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e8e8f0;
    font-style: italic;
}


/* Responsive About Page */
@media (max-width: 768px) {
    .about-hero .hero-content,
    .expertise-content,
    .follow-up-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image-container,
    .expertise-image-container,
    .follow-up-image-container {
        width: 300px;
        height: 300px;
    }
    
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .expertise-text .section-title,
    .follow-up-text .section-title,
    .team-header .section-title {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-astronaut-primary {
        max-width: 100%;
    }
}

/* ========================================
   PAGE CONTACT - HERO SECTION
   ======================================== */

/* Hero Contact */
.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1e3a8a 0%, #1e293b 50%, #000000 100%);
}


.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    background: #3b82f6;
    color: white;
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.contact-badge span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-hero-title .highlight-text {
    color: #ffffff; /* blanc pur */
    font-weight: 600;
}

.contact-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff; /* blanc pur */
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact-secondary {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(108, 123, 149, 0.3);
    border-radius: 12px;
    padding: 1rem 2rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.btn-contact-secondary:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.1);
}

.btn-contact-primary {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: #1e293b;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-contact-primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive Contact Hero */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .contact-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-contact-secondary,
    .btn-contact-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-badge {
        padding: 0.5rem 1rem;
        margin-bottom: 2rem;
    }
}

/* ========================================
   PAGE SERVICES - HERO SECTION
   ======================================== */

/* Hero Services */
.services-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1e3a8a 0%, #1e293b 50%, #000000 100%);
}


.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.services-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 0.9rem;
}

.services-badge.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-badge.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.badge-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.services-hero-title .highlight-text {
    color: #6c7b95;
    font-weight: 700;
}

.services-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-services-secondary {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(108, 123, 149, 0.3);
    border-radius: 12px;
    padding: 1rem 2rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.btn-services-secondary:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.1);
}

.btn-services-primary {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: #1e293b;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-services-primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.social-proof-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.logo-item {
    color: #a0a8b8;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   PROBLEM SOLUTION SECTION
   ======================================== */

.problem-solution-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: -1px;
}

.problem-solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.1) 0%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.problem-solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-container {
    position: relative;
    width: 300px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.chart-title {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    font-weight: 800;
    color: #6c7b95;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2rem 2rem;
}

.grid-line {
    height: 1px;
    background: rgba(108, 123, 149, 0.2);
    width: 100%;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    height: 4px;
    background: linear-gradient(90deg, #6c7b95 0%, #8b9dc3 100%);
    border-radius: 2px;
    transform: rotate(-15deg);
    transform-origin: left center;
    box-shadow: 0 0 20px rgba(108, 123, 149, 0.5);
}

.chart-point {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.problem-text {
    padding: 2rem 0;
}

.problem-text .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(108, 123, 149, 0.1);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #8b9dc3;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.problem-text .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #e8e8f0;
    margin-bottom: 2rem;
}

.problem-questions {
    margin-bottom: 2rem;
}

.problem-questions p {
    color: #b8c5d1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.problem-causes {
    margin-bottom: 2rem;
}

.cause-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cause-item i {
    color: #6c7b95;
    font-size: 1.1rem;
}

.cause-item span {
    color: #e8e8f0;
    font-weight: 500;
}

.solutions-list {
    margin-bottom: 2.5rem;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(108, 123, 149, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: rgba(108, 123, 149, 0.05);
    border-color: rgba(108, 123, 149, 0.2);
    transform: translateX(10px);
}

.solution-item i {
    color: #6c7b95;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.solution-item span {
    color: #e8e8f0;
    font-weight: 500;
}

.problem-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-problem-primary {
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 123, 149, 0.3);
    max-width: 300px;
}

.btn-problem-primary:hover {
    background: linear-gradient(135deg, #8b9dc3 0%, #b0c4de 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 123, 149, 0.4);
}

.problem-actions .social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ========================================
   METHOD SECTION
   ======================================== */

.method-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #475569 0%, #64748b 50%, #94a3b8 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: -1px;
}

.method-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(100, 116, 139, 0.1) 0%, rgba(71, 85, 105, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.method-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.method-text {
    padding: 2rem 0;
}

.method-text .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(108, 123, 149, 0.1);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #8b9dc3;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.method-text .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #e8e8f0;
    margin-bottom: 0.5rem;
}

.method-text .section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b9dc3;
    margin-bottom: 1.5rem;
}

.method-description {
    color: #b8c5d1;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.method-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.method-card:hover {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.method-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 1.2rem;
}

.method-timeline {
    background: rgba(108, 123, 149, 0.1);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 15px;
    padding: 0.5rem 1rem;
    color: #8b9dc3;
    font-size: 0.8rem;
    font-weight: 600;
}

.method-card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.method-card-subtitle {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.method-features {
    margin-bottom: 1.5rem;
}

.method-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.method-feature i {
    color: #6c7b95;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.method-feature span {
    color: #ffffff;
    font-weight: 500;
}

.method-summary {
    color: #c0c8d8;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.method-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-method-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 123, 149, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #b8c5d1;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.btn-method-secondary:hover {
    background: rgba(108, 123, 149, 0.1);
    border-color: rgba(108, 123, 149, 0.3);
    color: #e8e8f0;
}

.method-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.method-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(108, 123, 149, 0.5);
    position: relative;
}

.flow-icon i {
    position: absolute;
}

.flow-icon i:nth-child(1) {
    font-size: 1.2rem;
}

.flow-icon i:nth-child(2),
.flow-icon i:nth-child(3) {
    font-size: 0.8rem;
    bottom: 8px;
    right: 8px;
}

.flow-step span {
    color: #e8e8f0;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.flow-arrow {
    color: #6c7b95;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

/* Responsive Services Page */
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .services-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-services-secondary,
    .btn-services-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .services-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .problem-solution-content,
    .method-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chart-container {
        width: 250px;
        height: 200px;
    }
    
    .problem-text .section-title,
    .method-text .section-title {
        font-size: 1.8rem;
    }
    
    .social-proof-logos {
        gap: 1rem;
    }
}


/* ========================================
   SECTION PROBLÈMES EXCEPTIONNELLE
   ======================================== */

.problems-section-exceptional {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: -1px;
}

.problems-section-exceptional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(192, 200, 216, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 136, 255, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 136, 0.4), transparent),
        radial-gradient(3px 3px at 120px 50px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 150px 80px, rgba(138, 43, 226, 0.3), transparent),
        radial-gradient(1px 1px at 180px 20px, rgba(192, 200, 216, 0.5), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: float 20s linear infinite;
    opacity: 0.6;
}

.problems-title-exceptional {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.problems-title-exceptional::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #6c7b95 0%, #8b9dc3 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(108, 123, 149, 0.5);
}

.problems-grid-exceptional {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.problem-card-exceptional {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(108, 123, 149, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.problem-card-exceptional:hover {
    background: rgba(108, 123, 149, 0.05);
    border-color: rgba(108, 123, 149, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.problem-icon-exceptional {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 30px rgba(108, 123, 149, 0.4);
    transition: all 0.3s ease;
}

.problem-card-exceptional:hover .problem-icon-exceptional {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(108, 123, 149, 0.6);
}

.problem-title-exceptional {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e8e8f0;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-description-exceptional {
    color: #b8c5d1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.problem-image-exceptional {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.problem-card-exceptional:hover .problem-image-exceptional {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.problem-image-exceptional img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.problem-card-exceptional:hover .problem-image-exceptional img {
    filter: brightness(1.1);
}

.problems-conclusion-exceptional {
    text-align: center;
    position: relative;
    z-index: 2;
}

.problems-conclusion-exceptional p {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight-text-exceptional {
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .problems-title-exceptional {
        font-size: 2.5rem;
    }
    
    .problems-grid-exceptional {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problems-conclusion-exceptional p {
        font-size: 1.8rem;
    }
    
    .problem-icon-exceptional {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .problem-title-exceptional {
        font-size: 1.3rem;
    }
}

/* ========================================
   SOLUTION SECTION EXCEPTIONNEL
   ======================================== */

.solution-section-exceptional {
    padding: 6rem 0;
    background: linear-gradient(180deg, #475569 0%, #64748b 50%, #94a3b8 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: -1px;
}

.solution-section-exceptional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(192, 200, 216, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 136, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 136, 0.3), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: float 20s linear infinite;
    opacity: 0.4;
}

.solution-title-exceptional {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.solution-subtitle-exceptional {
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.solution-grid-exceptional {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.solution-card-exceptional {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.solution-card-exceptional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card-exceptional:hover::before {
    transform: scaleX(1);
}

.solution-card-exceptional:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(192, 200, 216, 0.2);
    border-color: rgba(192, 200, 216, 0.3);
}

.solution-icon-exceptional {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(192, 200, 216, 0.3);
}

.solution-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.solution-card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-image-exceptional {
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    position: relative;
    margin-top: 1rem;
}

.solution-image-exceptional img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.solution-image-exceptional:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .solution-title-exceptional {
        font-size: 2.5rem;
    }
    
    .solution-grid-exceptional {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-subtitle-exceptional {
        font-size: 1.1rem;
    }
    
    .solution-icon-exceptional {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .solution-card-title {
        font-size: 1.3rem;
    }
}

/* ========================================
   STATS SECTION EXCEPTIONNEL
   ======================================== */

.stats-section-exceptional {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-exceptional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(192, 200, 216, 0.2), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 136, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 136, 0.2), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: float 20s linear infinite;
    opacity: 0.3;
}

.stats-grid-exceptional {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item-exceptional {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item-exceptional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item-exceptional:hover::before {
    transform: scaleX(1);
}

.stat-item-exceptional:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(192, 200, 216, 0.2);
    border-color: rgba(192, 200, 216, 0.3);
}

.stat-number-exceptional {
    font-size: 4rem;
    font-weight: 900;
    color: #c0c8d8;
    text-shadow: 0 0 20px rgba(192, 200, 216, 0.5);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-exceptional {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Stats */
@media (max-width: 768px) {
    .stats-grid-exceptional {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number-exceptional {
        font-size: 3rem;
    }
    
    .stat-label-exceptional {
        font-size: 0.9rem;
    }
}

/* ========================================
   PORTFOLIO PREVIEW EXCEPTIONNEL
   ======================================== */

.portfolio-preview-exceptional {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-preview-exceptional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(192, 200, 216, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 136, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 136, 0.3), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: float 20s linear infinite;
    opacity: 0.4;
}

.portfolio-title-exceptional {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.portfolio-title-exceptional::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    border-radius: 2px;
}

.portfolio-grid-exceptional {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.portfolio-card-exceptional {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.portfolio-card-exceptional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.portfolio-card-exceptional:hover::before {
    transform: scaleX(1);
}

.portfolio-card-exceptional:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(192, 200, 216, 0.2);
    border-color: rgba(192, 200, 216, 0.3);
}

.portfolio-image-exceptional {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-image-exceptional img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay-exceptional {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card-exceptional:hover .portfolio-overlay-exceptional {
    opacity: 1;
}

.portfolio-placeholder-exceptional {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(192, 200, 216, 0.3);
}

.portfolio-content-exceptional {
    padding: 2rem;
}

.portfolio-content-exceptional h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-result-exceptional {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c0c8d8;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(192, 200, 216, 0.3);
}

.portfolio-content-exceptional p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-tags-exceptional {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag-exceptional {
    background: rgba(0, 255, 136, 0.1);
    color: #c0c8d8;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(192, 200, 216, 0.3);
}

.portfolio-link-exceptional {
    color: #c0c8d8;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.portfolio-link-exceptional:hover {
    color: #a0a8b8;
    transform: translateX(5px);
}

.portfolio-cta-exceptional {
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn-portfolio-exceptional {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    color: #0f0f23;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(192, 200, 216, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-portfolio-exceptional::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: left 0.5s ease;
}

.btn-portfolio-exceptional:hover::before {
    left: 100%;
}

.btn-portfolio-exceptional:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(192, 200, 216, 0.4);
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-title-exceptional {
        font-size: 2.5rem;
    }
    
    .portfolio-grid-exceptional {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-image-exceptional {
        height: 150px;
    }
    
    .portfolio-content-exceptional {
        padding: 1.5rem;
    }
}

/* ========================================
   TESTIMONIALS SECTION EXCEPTIONNEL
   ======================================== */

.testimonials-section-exceptional {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section-exceptional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(192, 200, 216, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 136, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 136, 0.3), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: float 20s linear infinite;
    opacity: 0.4;
}

.testimonials-title-exceptional {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.testimonials-grid-exceptional {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card-exceptional {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-card-exceptional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card-exceptional:hover::before {
    transform: scaleX(1);
}

.testimonial-card-exceptional:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(192, 200, 216, 0.2);
    border-color: rgba(192, 200, 216, 0.3);
}

.testimonial-stars-exceptional {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars-exceptional i {
    color: #c0c8d8;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(192, 200, 216, 0.5);
}

.testimonial-text-exceptional {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author-exceptional {
    border-top: 1px solid rgba(192, 200, 216, 0.2);
    padding-top: 1.5rem;
}

.author-info-exceptional {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-info-exceptional strong {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.author-info-exceptional span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-title-exceptional {
        font-size: 2.5rem;
    }
    
    .testimonials-grid-exceptional {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card-exceptional {
        padding: 1.5rem;
    }
}

/* ========================================
   FINAL CTA EXCEPTIONNEL
   ======================================== */

.final-cta-exceptional {
    padding: 6rem 0;
    background: linear-gradient(180deg, #94a3b8 0%, #64748b 50%, #475569 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: -1px;
}


.cta-content-exceptional {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-exceptional {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.cta-subtitle-exceptional {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.btn-cta-exceptional {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    color: #0f0f23;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(192, 200, 216, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-exceptional::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: left 0.5s ease;
}

.btn-cta-exceptional:hover::before {
    left: 100%;
}

.btn-cta-exceptional:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(192, 200, 216, 0.4);
}

.btn-cta-exceptional i {
    font-size: 1.1rem;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-title-exceptional {
        font-size: 2.5rem;
    }
    
    .cta-subtitle-exceptional {
        font-size: 1.1rem;
    }
    
    .btn-cta-exceptional {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* ========================================
   FOOTER BLUE STAR - THÈME SPATIAL
   ======================================== */

.footer-bluestar {
    background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 30%, #93c5fd 70%, #60a5fa 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem;
}





.footer-content-bluestar {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-bluestar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.astronaut-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a0a;
    box-shadow: 0 8px 20px rgba(192, 200, 216, 0.3);
    animation: astronautFloat 3s ease-in-out infinite;
}

@keyframes astronautFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-3px) rotate(-2deg);
    }
}

.logo-text-bluestar {
    display: flex;
    flex-direction: column;
}

.logo-main-bluestar {
    font-size: 2rem;
    font-weight: 900;
    color: #1e3a8a;
    text-shadow: 0 0 20px rgba(30, 58, 138, 0.3);
    line-height: 1;
}

.logo-sub-bluestar {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    letter-spacing: 2px;
}

.footer-description-bluestar {
    color: rgba(30, 58, 138, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

.social-links-bluestar {
    display: flex;
    gap: 1rem;
}

.social-link-bluestar {
    width: 40px;
    height: 40px;
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link-bluestar:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

/* Navigation & Services Sections */
.footer-nav-section,
.footer-services-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title-bluestar {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-nav-list,
.footer-services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link-bluestar {
    color: rgba(30, 58, 138, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.footer-link-bluestar::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    transition: width 0.3s ease;
}

.footer-link-bluestar:hover::before {
    width: 10px;
}

.footer-link-bluestar:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

/* Contact Section */
.footer-contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-bluestar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item-bluestar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(30, 58, 138, 0.9);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.contact-item-bluestar i {
    color: #1e3a8a;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    text-shadow: 0 0 5px rgba(30, 58, 138, 0.3);
}


/* Footer Bottom */
.footer-bottom-bluestar {
    border-top: 1px solid rgba(30, 58, 138, 0.2);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-bluestar {
    color: rgba(30, 58, 138, 0.8);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.legal-links-bluestar {
    display: flex;
    gap: 2rem;
}

.legal-link-bluestar {
    color: rgba(30, 58, 138, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.legal-link-bluestar:hover {
    color: #3b82f6;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content-bluestar {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-contact-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content-bluestar {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links-bluestar {
        gap: 1rem;
    }
    
    .astronaut-logo {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .logo-main-bluestar {
        font-size: 1.5rem;
    }
    
}

/* ========================================
   SECTION TARIFS - THÈME SPATIAL
   ======================================== */

.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #94a3b8 0%, #64748b 50%, #475569 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: -1px;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(51, 65, 85, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 200, 216, 0.1);
    color: #c0c8d8;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(192, 200, 216, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-badge i {
    font-size: 1rem;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(192, 200, 216, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(192, 200, 216, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-popular {
    border: 2px solid #c0c8d8;
    transform: scale(1.05);
}

.pricing-popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    color: #0f0f23;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card-header {
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #0f0f23;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #c0c8d8;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #c0c8d8;
    text-shadow: 0 0 20px rgba(192, 200, 216, 0.5);
}

.pricing-features {
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features .feature-item i {
    color: #c0c8d8;
    font-size: 1.1rem;
    width: 20px;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    color: #0f0f23;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(192, 200, 216, 0.3);
}

.pricing-btn i {
    transition: transform 0.3s ease;
}

.pricing-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-popular {
        transform: none;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

/* ========================================
   FORMULAIRE ET INFOS CONTACT REFONDU
   ======================================== */

/* Formulaire spatial */
.spatial-form {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(192, 200, 216, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.spatial-form .form-group {
    margin-bottom: 1.5rem;
}

.spatial-form label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.spatial-form input,
.spatial-form select,
.spatial-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 200, 216, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.spatial-form input:focus,
.spatial-form select:focus,
.spatial-form textarea:focus {
    outline: none;
    border-color: #c0c8d8;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(192, 200, 216, 0.1);
}

.spatial-form input::placeholder,
.spatial-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.spatial-form select option {
    background: #1a1a2e;
    color: #ffffff;
}

/* Bouton spatial */
.btn-spatial {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    color: #0f0f23;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.btn-spatial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 200, 216, 0.3);
}

.btn-spatial i {
    transition: transform 0.3s ease;
}

.btn-spatial:hover i {
    transform: translateX(3px);
}

/* Note du formulaire */
.form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Wrapper du formulaire centré */
.contact-form-wrapper {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-container {
    width: 100%;
}

/* Options de service */
.service-options {
    display: grid;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(192, 200, 216, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    background: rgba(192, 200, 216, 0.05);
    border-color: rgba(192, 200, 216, 0.3);
}

.service-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    margin: 0;
}

.service-option input[type="radio"]:checked + .option-text {
    color: var(--primary-color);
    font-weight: 600;
}

.service-option:has(input:checked) {
    background: rgba(192, 200, 216, 0.08);
    border-color: var(--primary-color);
}

.option-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}


/* Responsive */
@media (max-width: 768px) {
    .spatial-form {
        padding: 1.5rem;
    }
    
}


/* ========================================
   PAGES LÉGALES - THÈME SPATIAL BLUE STAR
   ======================================== */

/* Legal Hero Section */
.legal-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(192, 200, 216, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 136, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 136, 0.3), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: float 20s linear infinite;
    opacity: 0.4;
}

.legal-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}


.legal-hero-content {
    position: relative;
    z-index: 2;
}

.astronaut-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0a0a0a;
    box-shadow: 0 8px 20px rgba(192, 200, 216, 0.3);
    margin: 0 auto 2rem;
    animation: astronautFloat 3s ease-in-out infinite;
}

.legal-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.legal-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.legal-update {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(192, 200, 216, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: #c0c8d8;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 255, 136, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 136, 255, 0.05), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 136, 0.1), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: float 20s linear infinite;
    opacity: 0.2;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.legal-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.legal-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.legal-section-title i {
    color: #c0c8d8;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(192, 200, 216, 0.5);
}

.legal-info-grid {
    display: grid;
    gap: 1rem;
}

.legal-info-item {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.legal-info-item:last-child {
    border-bottom: none;
}

.legal-label {
    font-weight: 600;
    color: #c0c8d8;
    min-width: 150px;
}

.legal-value {
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.legal-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.legal-text p {
    margin-bottom: 1rem;
}

.legal-text p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.legal-list li i {
    color: #c0c8d8;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.legal-link {
    color: #c0c8d8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #c0c8d8 0%, #a0a8b8 100%);
    transition: width 0.3s ease;
}

.legal-link:hover::after {
    width: 100%;
}

.legal-link:hover {
    color: #a0a8b8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(192, 200, 216, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-method i {
    color: #c0c8d8;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-title {
        font-size: 2.5rem;
    }
    
    .legal-subtitle {
        font-size: 1.1rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .legal-section-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .legal-info-item {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .legal-label {
        min-width: auto;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}




/* Effets de survol immersifs */
.hover-lift:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(192, 200, 216, 0.3),
        0 0 30px rgba(192, 200, 216, 0.2);
}

/* Effets spatiaux sur les images */
.video-image,
.focus-on-hover {
    position: relative;
    overflow: hidden;
    filter: 
        brightness(0.9) 
        contrast(1.1) 
        saturate(1.2) 
        hue-rotate(180deg);
    transition: all 0.3s ease;
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.video-image:hover,
.focus-on-hover:hover {
    filter: 
        brightness(1.1) 
        contrast(1.2) 
        saturate(1.4) 
        hue-rotate(200deg);
    transform: scale(1.05);
    box-shadow: 
        0 20px 40px rgba(192, 200, 216, 0.2),
        0 0 30px rgba(0, 136, 255, 0.3);
}

/* Effet de scan spatial sur les images */
.video-image::after,
.focus-on-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(192, 200, 216, 0.3),
        transparent
    );
    transition: left 0.6s ease;
    border-radius: 15px;
}

.video-image:hover::after,
.focus-on-hover:hover::after {
    left: 100%;
}






/* ========================================
   HERO EXCEPTIONNEL - PAGE D'ACCUEIL
   ======================================== */

.hero-exceptional {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #1e3a8a 0%, #1e293b 50%, #000000 100%);
}

/* Background Layers */




/* Main Content */
.hero-exceptional-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Left Side */
.hero-left {
    padding: 2rem 0;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
}

.primary-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.secondary-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.badge-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-exceptional-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-exceptional-title .highlight-text {
    color: #6c7b95;
    font-weight: 700;
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

.hero-exceptional-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-exceptional-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.btn-hero-primary {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: #1e293b;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.hero-social-proof {
    margin-top: 2rem;
}

.social-proof-logos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.logo-item {
    color: #a0a8b8;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    transform: translateY(-2px);
}

/* Right Side */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.hero-video-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.video-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.video-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-image {
    filter: brightness(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.video-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-arrow {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    animation: arrowPulse 2s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator-exceptional {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 4;
    color: #6c7b95;
}

.scroll-arrow-exceptional {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scrollBounce 2s ease-in-out infinite;
}

.arrow-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #6c7b95, transparent);
}

.arrow-head {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #6c7b95;
    margin-top: -2px;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Floating Elements */


/* Animations */


@keyframes textShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-exceptional-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-exceptional-title {
        font-size: 2.5rem;
    }
    
    .hero-exceptional-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-exceptional-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero-secondary,
    .btn-hero-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .video-arrow {
        display: none;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .social-proof-logos {
        justify-content: center;
        gap: 1rem;
    }
}

/* ========================================
   NAVIGATION REFAITE - THÈME LUNE/ASTRONAUTE
   ======================================== */

/* Remplacement complet de la navigation */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(25, 25, 35, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    background: rgba(20, 20, 30, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.nav-container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 2rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px !important;
}

/* Logo - Style Astronaute */
.nav-logo {
    display: flex !important;
    align-items: center;
    font-size: unset !important;
    font-weight: unset !important;
    text-decoration: none !important;
    background: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.nav-logo:hover {
    transform: unset !important;
    filter: unset !important;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 50%, #b0c4de 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(108, 123, 149, 0.3);
    transition: all 0.3s ease;
}

.logo-link:hover .logo-icon {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(108, 123, 149, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: #e8e8f0;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: #a0a8b8;
    letter-spacing: 2px;
    margin-top: -2px;
}

/* Menu de navigation */
.nav-menu {
    display: flex !important;
    list-style: none;
    gap: 0.5rem !important;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: #b8c5d1 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    display: none !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px) !important;
}

.nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(108, 123, 149, 0.2) 0%, rgba(139, 157, 195, 0.2) 100%);
    border: 1px solid rgba(108, 123, 149, 0.3);
}

.nav-link i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.nav-link:hover i,
.nav-link.active i {
    opacity: 1;
}

/* Bouton Contact spécial */
.cta-nav {
    background: linear-gradient(135deg, #6c7b95 0%, #8b9dc3 100%) !important;
    color: #1a1a2e !important;
    border: 1px solid rgba(108, 123, 149, 0.4) !important;
    box-shadow: 0 4px 15px rgba(108, 123, 149, 0.2) !important;
    font-weight: 600;
    padding: 0.75rem 1.25rem !important;
    border-radius: 8px !important;
}

.cta-nav::before {
    display: none !important;
}

.cta-nav:hover {
    background: linear-gradient(135deg, #8b9dc3 0%, #b0c4de 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(108, 123, 149, 0.3) !important;
}

.cta-nav i {
    opacity: 1;
}

/* Actions de navigation */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #b8c5d1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Menu hamburger */
.hamburger {
    display: none !important;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.bar {
    width: 25px;
    height: 2px !important;
    background: #b8c5d1 !important;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive pour la nouvelle navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem !important;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(20, 20, 30, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 2rem !important;
        margin: 0.25rem 0;
        width: 90%;
        justify-content: center;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .nav-actions {
        display: none;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }
}

/* ========================================
OPTIMISATIONS PERFORMANCE
======================================== */

/* Optimisations de rendu */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimisation des animations */
.logo-hologram-icon,
.logo-hologram-text,
.nav-liquid-link,
.btn-hero-primary,
.btn-services-primary,
.carousel-slide,
.method-card,
.faq-item {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimisation des images */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Optimisation des transitions - plus rapides et fluides */
.nav-liquid-link,
.btn-hero-primary,
.btn-services-primary,
.method-card,
.faq-question,
.logo-hologram-icon,
.logo-hologram-text,
.carousel-slide,
.floating-cart-btn {
    transition: all 0.15s ease-out;
}

/* Transitions ultra-rapides pour les éléments critiques */
.nav-liquid-link:hover,
.btn-hero-primary:hover,
.btn-services-primary:hover {
    transition: all 0.1s ease-out;
}

/* Optimisation du scroll */
html {
    scroll-behavior: smooth;
}

/* Optimisation des effets de blur */
.nav-glass-container,
.method-card {
    will-change: backdrop-filter;
}

/* ========================================
LOGO MINIMALISTE
======================================== */

.logo-minimal {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.logo-minimal img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(100, 116, 139, 0.3));
    transition: all 0.3s ease;
    opacity: 0.9;
}

.logo-minimal:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(100, 116, 139, 0.5));
    opacity: 1;
}

.logo-minimal-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-minimal-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.logo-minimal-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.logo-minimal:hover .logo-minimal-main {
    color: #e2e8f0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.logo-minimal:hover .logo-minimal-sub {
    color: #cbd5e1;
}

/* Logo footer minimaliste */
.footer-logo-minimal {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo-minimal img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(100, 116, 139, 0.4));
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-logo-minimal:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(100, 116, 139, 0.6));
    opacity: 1;
}

.footer-logo-minimal-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-minimal-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.footer-logo-minimal-sub {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-logo-minimal:hover .footer-logo-minimal-main {
    color: #e2e8f0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-logo-minimal:hover .footer-logo-minimal-sub {
    color: #cbd5e1;
}

/* ========================================
   NAVIGATION FUTURISTE - LIQUID GLASS
   ======================================== */

.navbar-futuristic {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-futuristic.scrolled {
    top: 10px;
    transform: translateX(-50%) scale(0.98);
}

.nav-glass-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 2s ease;
}

.nav-glass-container:hover::before {
    left: 100%;
}

/* Logo Holographique */
.nav-logo-holographic {
    position: relative;
}

.logo-hologram {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.logo-hologram:hover {
    transform: translateY(-2px) scale(1.05);
}

.logo-hologram-icon {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, 
        rgba(192, 200, 216, 0.2) 0%, 
        rgba(160, 168, 184, 0.3) 100%);
    border: 1px solid rgba(192, 200, 216, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.hologram-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(192, 200, 216, 0.3), 
        rgba(160, 168, 184, 0.2), 
        rgba(192, 200, 216, 0.3));
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-hologram:hover .hologram-glow {
    opacity: 1;
}

.logo-hologram-text {
    display: flex;
    flex-direction: column;
}

.logo-main-holo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(192, 200, 216, 0.5);
    line-height: 1;
}

.logo-sub-holo {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(192, 200, 216, 0.8);
    letter-spacing: 2px;
    line-height: 1;
}

/* Menu Navigation Liquid Glass */
.nav-liquid-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-liquid-item {
    position: relative;
}

.nav-liquid-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-liquid-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.nav-liquid-link:hover::before {
    left: 100%;
}

.nav-liquid-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(192, 200, 216, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nav-liquid-link.active {
    background: rgba(192, 200, 216, 0.15);
    border-color: rgba(192, 200, 216, 0.4);
    color: #ffffff;
}

.liquid-icon {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-liquid-link:hover .liquid-icon {
    transform: scale(1.2);
}

.liquid-text {
    transition: all 0.3s ease;
}

.liquid-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(192, 200, 216, 0.3) 0%, 
        transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
}

.nav-liquid-link:hover .liquid-ripple {
    width: 100px;
    height: 100px;
}

.cta-liquid {
    background: linear-gradient(135deg, 
        rgba(192, 200, 216, 0.2) 0%, 
        rgba(160, 168, 184, 0.3) 100%) !important;
    border-color: rgba(192, 200, 216, 0.4) !important;
    font-weight: 600;
}

.cta-liquid:hover {
    background: linear-gradient(135deg, 
        rgba(192, 200, 216, 0.3) 0%, 
        rgba(160, 168, 184, 0.4) 100%) !important;
    box-shadow: 0 10px 30px rgba(192, 200, 216, 0.2);
}

/* Actions Futuristes */
.nav-futuristic-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hologram-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toggle-hologram {
    position: relative;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.toggle-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, 
        rgba(192, 200, 216, 0.3) 0%, 
        transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hologram-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(192, 200, 216, 0.3);
    transform: scale(1.1);
}

.hologram-toggle:hover .toggle-glow {
    opacity: 1;
}

.hologram-toggle:hover .toggle-hologram {
    color: #ffffff;
    transform: scale(1.2);
}

/* Hamburger Holographique */
.hamburger-holographic {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.holo-bar {
    width: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-holographic:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger-holographic.active .holo-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger-holographic.active .holo-bar:nth-child(2) {
    opacity: 0;
}

.hamburger-holographic.active .holo-bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Responsive Navigation Futuriste */
@media (max-width: 768px) {
    .navbar-futuristic {
        top: 10px;
        width: 98%;
    }
    
    .nav-glass-container {
        padding: 10px 15px;
    }
    
    .nav-liquid-menu {
        display: none;
    }
    
    .hamburger-holographic {
        display: flex;
    }
    
    .logo-main-holo {
        font-size: 1.2rem;
    }
    
    .logo-sub-holo {
        font-size: 0.6rem;
    }
    
    .logo-hologram-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hologram-toggle {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   HERO CAROUSEL
   ======================================== */

.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: visible;
    box-shadow: var(--shadow-card);
    margin: 20px 0;
    transform: translateX(0);
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: all;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    padding: 0;
    transform: scale(1.05);
}

.carousel-slide:hover .carousel-image {
    transform: scale(1.08);
}

/* Flèches de navigation carousel */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px var(--primary-color);
}

.carousel-arrow-prev {
    left: 20px;
}

.carousel-arrow-next {
    right: 20px;
}

/* Indicateurs de progression */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.carousel-indicator.active::before {
    width: 100%;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Carousel */
@media (max-width: 1024px) {
    .hero-carousel-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-carousel-container {
        width: 100%;
        height: 250px;
        margin: 20px 0;
    }
    
    .carousel-image {
        padding: 0;
        transform: scale(1.05);
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-arrow-prev {
        left: 10px;
    }
    
    .carousel-arrow-next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 6px;
    }
    
    .carousel-indicator {
        width: 25px;
        height: 3px;
    }
}

/* ========================================
   ABOUT CAROUSEL
   ======================================== */

.about-carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-left: auto;
    margin-right: 0;
}

.about-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.about-carousel-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all;
    z-index: 2;
}

.about-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 0.3s ease;
    display: block;
    background-color: transparent;
    padding: 10px;
}

.about-carousel-slide:hover .about-carousel-image {
    transform: scale(1.05);
}

/* Flèches about carousel */
.about-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-carousel-arrow:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px var(--primary-color);
}

.about-carousel-arrow-prev {
    left: 15px;
}

.about-carousel-arrow-next {
    right: 15px;
}

/* Indicateurs about carousel */
.about-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.about-carousel-indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-carousel-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.about-carousel-indicator.active::before {
    width: 100%;
}

.about-carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ===============================
   CART DRAWER & FLOATING BUTTON
   =============================== */
.floating-cart-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #0a0a0a;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    z-index: 9999;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.floating-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.floating-cart-btn:active {
    transform: scale(0.95);
}
.floating-cart-btn i { font-size: 20px; }
.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff4d6d;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 999px;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(400px, 90vw);
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #e5e7eb;
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    color: #1f2937;
    overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
    background: #ffffff;
}

.cart-drawer-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.cart-close {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.cart-close:hover {
    background: #f3f4f6;
    color: #374151;
}
.cart-drawer-body {
    flex: 0 0 auto;
    max-height: 40vh;
    overflow-y: auto;
    padding: 0;
    background: #f9fafb;
}

.cart-drawer-footer {
    border-top: 1px solid #e5e7eb;
    padding: 20px 24px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}
.cart-items { 
    list-style: none; 
    margin: 0;
    padding: 16px 24px;
}

.cart-item { 
    display: flex; 
    align-items: center; 
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.cart-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cart-item-content {
    flex: 1;
}

.cart-item-title { 
    font-weight: 600; 
    color: #111827;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cart-item-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.cart-item-price {
    color: #111827;
    font-weight: 600;
    font-size: 1rem;
}

.cart-item-controls { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.cart-item-qty { 
    min-width: 40px; 
    text-align: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px;
    color: #111827;
    font-weight: 500;
    font-size: 0.875rem;
}

.cart-remove { 
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.cart-remove:hover {
    background: #fee2e2;
    border-color: #fca5a5;
}

.cart-total-row { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    font-weight: 600;
    font-size: 1rem;
    color: #111827;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.cart-total-row:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}



/* Section des options de paiement moderne */
.payment-options-section {
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.payment-options-section h4 {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

/* Section PayPal */
.paypal-section {
    margin-top: 12px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.paypal-option {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.paypal-option h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
    text-align: center;
}


/* Texte vide du panier moderne */
.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-style: italic;
    background: #ffffff;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
    margin: 16px 24px;
}

.pricing-actions .pricing-btn { width: 100%; text-align: center; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }

/* Cart contact form */
.cart-contact-form { 
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-section h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-form-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 12px; 
    width: 100%;
}

.cart-contact-form input, .cart-contact-form textarea {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.cart-contact-form input:focus, .cart-contact-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.cart-contact-form input::placeholder, .cart-contact-form textarea::placeholder {
    color: #9ca3af;
}

.cart-contact-form textarea { 
    grid-column: 1 / -1; 
    resize: vertical; 
    min-height: 80px;
}

/* Amélioration du scroll */
.cart-drawer-body::-webkit-scrollbar,
.cart-drawer-footer::-webkit-scrollbar {
    width: 6px;
}

.cart-drawer-body::-webkit-scrollbar-track,
.cart-drawer-footer::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.cart-drawer-body::-webkit-scrollbar-thumb,
.cart-drawer-footer::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.cart-drawer-body::-webkit-scrollbar-thumb:hover,
.cart-drawer-footer::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Limitation du scroll pour éviter de voir la zone noire */
html {
    max-height: 100vh;
    overflow-y: auto;
}

body {
    max-height: 100vh;
    overflow-y: auto;
    position: relative;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-drawer {
        width: 100vw;
    }
    
    .cart-drawer-body {
        max-height: 35vh;
    }
    
    .cart-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }
}

/* Responsive About Carousel */
@media (max-width: 768px) {
    .about-carousel-container {
        height: 300px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-hero .hero-content {
        grid-template-columns: 1fr;
    }
    
    .about-carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .about-carousel-arrow-prev {
        left: 10px;
    }
    
    .about-carousel-arrow-next {
        right: 10px;
    }
    
    .about-carousel-indicators {
        bottom: 15px;
        gap: 6px;
    }
    
    .about-carousel-indicator {
        width: 30px;
        height: 3px;
    }
}

/* ===== NOUVEAUX STYLES POUR LE SYSTÈME DE PAIEMENT ===== */

/* Bouton de validation du formulaire */
.btn-validate-form {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-validate-form::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: left 0.5s;
}

.btn-validate-form:hover::before {
    left: 100%;
}

.btn-validate-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%);
}

.btn-validate-form:active {
    transform: translateY(0);
}

.btn-validate-form:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

/* Section des options de paiement */
.payment-options-section {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(30, 64, 175, 0.08) 100%);
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.payment-options-section h4 {
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payment-option {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 58, 138, 0.15);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.1);
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(30, 58, 138, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
}

.payment-option h5 {
    color: #1e3a8a;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.payment-note {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.5;
}

.btn-contact-devis {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-contact-devis:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
}

/* Message de succès après paiement */
.payment-success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.5s ease;
}

.success-icon {
    font-size: 60px;
    color: #00ff88;
    margin-bottom: 20px;
    animation: bounce 1s ease;
}

.success-content h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-content p {
    color: #c0c8d8;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.success-details {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.success-details ul {
    text-align: left;
    color: #c0c8d8;
    margin-top: 10px;
}

.success-details li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.success-details li i {
    position: absolute;
    left: 0;
    color: #00ff88;
    font-size: 12px;
}

/* Animations pour le message de succès */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* ===== AMÉLIORATION DES BOUTONS DU PANIER ===== */

/* Boutons de quantité */
.qty-dec, .qty-inc {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #1e3a8a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(30, 58, 138, 0.1);
}

.qty-dec:hover, .qty-inc:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    border-color: #1e3a8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(30, 58, 138, 0.2);
}

.qty-dec:active, .qty-inc:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(30, 58, 138, 0.1);
}

/* Champ de quantité */
.cart-item-qty {
    min-width: 40px;
    height: 32px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #1e3a8a;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 3px rgba(30, 58, 138, 0.1);
}

/* Bouton de suppression */
.cart-remove {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 1px solid #dc2626;
    border-radius: 8px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.cart-remove:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    border-color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.cart-remove:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

/* Amélioration des éléments du panier */
.cart-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.08);
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(30, 58, 138, 0.2);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.12);
    transform: translateY(-1px);
}

.cart-item-title {
    color: #1e3a8a;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cart-item-price {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Amélioration du total */
.cart-total-row {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(30, 64, 175, 0.08) 100%);
    border: 1px solid rgba(30, 58, 138, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total-row span:first-child {
    color: #1e3a8a;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-total {
    color: #1e3a8a;
    font-size: 20px;
    font-weight: 800;
}

/* Amélioration des sections du formulaire */
.form-section h5 {
    color: #1e3a8a;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-form-grid input,
.cart-form-grid textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px 16px;
    color: #1e3a8a;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(30, 58, 138, 0.05);
}

.cart-form-grid input:focus,
.cart-form-grid textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
    transform: translateY(-1px);
}

.cart-form-grid input::placeholder,
.cart-form-grid textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

