/* ============================================
   HERITAGE ART - CSS Premium Studio Creatif
   Homepage spectaculaire - Awwwards inspired
   ============================================ */

/* HERO SLIDER - Style Mandarine */
.hero-slider-premium {
    position: relative !important;
    width: calc(100% - 60px) !important;
    margin: 0 30px !important;
    margin-top: 90px !important;
    height: 70vh !important;
    min-height: 550px !important;
    max-height: 650px !important;
    background: #0A1628 !important;
    overflow: hidden !important;
    border-radius: 0 !important;
}

.hero-slider-premium .slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider-premium .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slider-premium .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slider-premium .slide-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider-premium .slide-media img,
.hero-slider-premium .slide-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider-premium .slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B3A6B 0%, #0A1628 100%);
}

.hero-slider-premium .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 22, 40, 0.85) 0%,
        rgba(10, 22, 40, 0.6) 50%,
        rgba(10, 22, 40, 0.3) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-slider-premium .slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-55%);
    z-index: 2;
    padding: 2rem 3rem;
    padding-bottom: 6rem;
    max-width: 600px;
    pointer-events: auto;
}

.hero-slider-premium .slide-surtitre {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.hero-slider-premium .slide-titre {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-slider-premium .slide-accroche {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 450px;
}

.hero-slider-premium .slide-cta {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: nowrap;
    width: auto;
    margin-bottom: 3rem;
}

/* Pagination bullets en bas centre - HORIZONTAL */
.hero-slider-premium .slider-pagination {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    z-index: 10;
}

.hero-slider-premium .pagination-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-premium .pagination-item:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: #FF6B35;
}

.hero-slider-premium .pagination-item.active {
    background: #FF6B35;
    border-color: #FF6B35;
    transform: scale(1.1);
}

/* Scroll indicator */
.hero-slider-premium .scroll-indicator {
    display: none;
}

/* Navigation arrows */
.hero-slider-premium .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.hero-slider-premium .slider-nav:hover {
    background: rgba(255, 107, 53, 0.8);
}

.hero-slider-premium .slider-prev {
    left: 1.5rem;
}

.hero-slider-premium .slider-next {
    right: 1.5rem;
}

@media (max-width: 768px) {
    .hero-slider-premium {
        width: calc(100% - 20px);
        margin: 10px auto;
        margin-top: 80px;
        height: 60vh;
        min-height: 350px;
        max-height: 450px;
        border-radius: 8px;
    }
    
    .hero-slider-premium .slide-content {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .hero-slider-premium .slide-titre {
        font-size: 1.5rem;
    }
    
    .hero-slider-premium .slide-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-slider-premium .slider-nav {
        display: none;
    }
}

:root {
    /* Palette Premium */
    --ha-blue-deep: #0A1628;
    --ha-blue-primary: #1B3A6B;
    --ha-blue-medium: #2A4F8A;
    --ha-blue-light: #3D6BB3;
    --ha-orange: #FF6B35;
    --ha-orange-dark: #E85A2B;
    --ha-orange-light: #FF8F66;
    --ha-white: #FFFFFF;
    --ha-white-off: #FAFBFC;
    --ha-gray-50: #F9FAFB;
    --ha-gray-100: #F3F4F6;
    --ha-gray-200: #E5E7EB;
    --ha-gray-300: #D1D5DB;
    --ha-gray-400: #9CA3AF;
    --ha-gray-500: #6B7280;
    --ha-gray-600: #4B5563;
    --ha-gray-700: #374151;
    --ha-gray-800: #1F2937;
    --ha-gray-900: #111827;
    
    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    --space-5xl: 6rem;
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.6s;
    --duration-slower: 0.8s;
    --duration-slowest: 1.2s;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* ============================================
   BASE RESET & TYPOGRAPHY
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ha-gray-800);
    background: var(--ha-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container-premium {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography Premium - Impact maximal */
.title-xxl {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.title-xl {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.title-lg {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-md {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.surtitre {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ha-orange);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.surtitre::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--ha-orange);
}

.text-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--ha-gray-500);
    font-weight: 400;
}

/* ============================================
   BOUTONS SIGNATURE - Design non-standard
   ============================================ */

.btn-signature {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 2rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.btn-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-101%);
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.btn-signature:hover::before {
    transform: translateX(0);
}

.btn-signature span {
    position: relative;
    z-index: 1;
}

.btn-signature svg {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    transition: transform var(--duration-normal) var(--ease-spring);
}

.btn-signature:hover svg {
    transform: translateX(6px);
}

.btn-signature::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: inherit;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    opacity: 0.5;
}

/* Primary Button - Orange signature */
.btn-primary {
    background: var(--ha-orange);
    color: var(--ha-white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary::before {
    background: linear-gradient(135deg, var(--ha-orange-dark), var(--ha-orange));
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

/* Secondary Button - Ghost */
.btn-secondary {
    background: transparent;
    color: var(--ha-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    clip-path: none;
    border-radius: 0;
}

.btn-secondary::before {
    background: var(--ha-white);
}

.btn-secondary:hover {
    color: var(--ha-blue-deep);
    border-color: var(--ha-white);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--ha-blue-primary);
    border: 2px solid var(--ha-blue-primary);
    clip-path: none;
}

.btn-outline::before {
    background: var(--ha-blue-primary);
}

.btn-outline:hover {
    color: var(--ha-white);
}

/* Text Link Button */
.btn-text {
    background: none;
    padding: 0;
    color: var(--ha-orange);
    clip-path: none;
    gap: 0.5rem;
}

.btn-text::before {
    display: none;
}

.btn-text span {
    position: relative;
}

.btn-text span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.btn-text:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ============================================
   HERO SLIDER - Fullscreen Cinematique
   ============================================ */

.hero-slider-premium {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 700px;
    overflow: hidden;
    background: var(--ha-blue-deep);
}

.hero-slider-premium .slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider-premium .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-slowest) var(--ease-out-expo),
                visibility var(--duration-slowest) var(--ease-out-expo);
}

.hero-slider-premium .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slider-premium .slide-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.05);
    transition: transform 8s linear;
}

.hero-slider-premium .slide.active .slide-media {
    transform: scale(1);
}

.hero-slider-premium .slide-media img,
.hero-slider-premium .slide-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider-premium .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.4) 0%,
        rgba(10, 22, 40, 0.6) 50%,
        rgba(10, 22, 40, 0.9) 100%
    );
    z-index: 1;
}

.hero-slider-premium .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 var(--space-2xl) var(--space-5xl);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-slider-premium .slide-surtitre {
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: var(--space-md);
}

.hero-slider-premium .slide.active .slide-surtitre {
    animation: heroReveal 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-slider-premium .slide-titre {
    color: var(--ha-white);
    margin-bottom: var(--space-lg);
    max-width: 900px;
    opacity: 0;
    transform: translateY(50px);
}

.hero-slider-premium .slide.active .slide-titre {
    animation: heroReveal 1s var(--ease-out-expo) 0.5s forwards;
}

.hero-slider-premium .slide-accroche {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
    max-width: 550px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slider-premium .slide.active .slide-accroche {
    animation: heroReveal 1s var(--ease-out-expo) 0.7s forwards;
}

.hero-slider-premium .slide-cta {
    display: flex;
    gap: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
}

.hero-slider-premium .slide.active .slide-cta {
    animation: heroReveal 1s var(--ease-out-expo) 0.9s forwards;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation - Minimal elegant */
.hero-slider-premium .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--ha-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.hero-slider-premium .slider-nav:hover {
    background: var(--ha-orange);
    border-color: var(--ha-orange);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-premium .slider-prev {
    left: var(--space-2xl);
}

.hero-slider-premium .slider-next {
    right: var(--space-2xl);
}

/* Pagination supprimee - utiliser le style horizontal en haut du fichier */

.hero-slider-premium .pagination-item:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Scroll Indicator - Bottom center */
.hero-slider-premium .scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-slider-premium .scroll-indicator::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--ha-orange), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { 
        opacity: 1;
        transform: scaleY(1);
    }
    50% { 
        opacity: 0.5;
        transform: scaleY(0.7);
    }
}

/* ============================================
   SECTION ADN PREMIUM
   ============================================ */

.section-adn-premium {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* Le fond pattern est maintenant gere globalement via le CMS */

/* Les cercles decoratifs sont maintenant dans le mini slider */

.section-adn-premium.fond-blanc {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.section-adn-premium.fond-gris {
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.section-adn-premium.fond-bleu {
    background: linear-gradient(135deg, #0A1628 0%, #1B3A6B 100%);
}

.section-adn-premium.fond-bleu::before {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-135deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
    background-size: 60px 60px;
}

.section-adn-premium.fond-bleu .section-titre,
.section-adn-premium.fond-bleu .section-intro {
    color: var(--ha-white);
}

/* ADN Header Row - Texte a gauche, Slider a droite */
.adn-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.adn-header-text {
    flex: 1;
    max-width: 550px;
}

.adn-header-text .surtitre {
    margin-bottom: var(--space-sm);
}

.adn-header-text .section-titre {
    color: var(--ha-blue-deep);
    margin-bottom: var(--space-md);
    font-size: 2.5rem;
    line-height: 1.1;
}

.adn-header-text .section-intro {
    color: var(--ha-gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

/* Animation slide pour le texte */
.adn-animate-slide {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.adn-animate-slide:nth-child(1) { animation-delay: 0.1s; }
.adn-animate-slide:nth-child(2) { animation-delay: 0.3s; }
.adn-animate-slide:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mini Slider 3D Carousel */
.adn-mini-slider {
    flex: 1;
    min-width: 55%;
    height: 380px;
    position: relative;
    perspective: 1000px;
    overflow: visible;
}

/* Cercles decoratifs */
.adn-mini-slider::before {
    content: '';
    position: absolute;
    top: -30px;
    right: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    animation: floatCircle1 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.adn-mini-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: floatCircle2 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatCircle1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, 10px) scale(1.1); }
}

@keyframes floatCircle2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -8px) scale(1.08); }
}

.adn-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.adn-slider-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.4;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Position active - centre */
.adn-slider-item.active {
    transform: translate(-50%, -50%) scale(1.2) translateZ(100px);
    opacity: 1;
    z-index: 10;
}

/* Position precedente - gauche */
.adn-slider-item.prev {
    transform: translate(-150%, -50%) scale(0.8) rotateY(25deg);
    opacity: 0.7;
    z-index: 5;
}

/* Position suivante - droite */
.adn-slider-item.next {
    transform: translate(50%, -50%) scale(0.8) rotateY(-25deg);
    opacity: 0.7;
    z-index: 5;
}

/* Positions lointaines */
.adn-slider-item.far-prev {
    transform: translate(-220%, -50%) scale(0.5) rotateY(35deg);
    opacity: 0.3;
    z-index: 2;
}

.adn-slider-item.far-next {
    transform: translate(120%, -50%) scale(0.5) rotateY(-35deg);
    opacity: 0.3;
    z-index: 2;
}

/* Cercle derriere l'image active */
.adn-slider-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(10, 22, 40, 0.05) 100%);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
}

.adn-slider-item.active::before {
    transform: scale(1.1);
    opacity: 1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1.1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

.adn-slider-item img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12));
    transition: all 0.6s ease;
}

.adn-slider-item.active img {
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
}

.adn-slider-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.adn-slider-link img {
    transition: transform 0.3s ease;
}

.adn-slider-item.active .adn-slider-link:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .adn-header-row {
        flex-direction: column;
        text-align: center;
    }
    
    .adn-header-text {
        max-width: 100%;
    }
    
    .adn-mini-slider {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }
    
    .adn-slider-item {
        width: 140px;
        height: 140px;
    }
}

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

.adn-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--ha-gray-200);
}

@media (max-width: 1200px) {
    .adn-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .adn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.adn-card {
    background: var(--ha-white);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.adn-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--ha-orange);
    transition: width var(--duration-normal) var(--ease-out-expo);
}

.adn-card:hover {
    background: var(--ha-gray-50);
}

.adn-card:hover::after {
    width: 100%;
}

.adn-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-md);
    color: var(--ha-orange);
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.adn-card:hover .adn-card-icon {
    transform: scale(1.1);
}

.adn-card-icon svg {
    width: 100%;
    height: 100%;
}

.adn-card-titre {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-blue-deep);
    margin-bottom: var(--space-xs);
}

.adn-card-description {
    font-size: 0.8125rem;
    color: var(--ha-gray-500);
    line-height: 1.6;
}

/* ADN Card avec image hover */
.adn-card-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.adn-card-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.4s ease;
}

.adn-card-image-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adn-card:hover .adn-card-image-hover {
    opacity: 1;
}

.adn-card-content {
    position: relative;
    z-index: 2;
}

.adn-card:hover .adn-card-content {
    opacity: 0;
    visibility: hidden;
}

.adn-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ha-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.adn-card:hover .adn-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.adn-card-cta svg {
    transition: transform 0.3s ease;
}

.adn-card:hover .adn-card-cta svg {
    transform: translateX(4px);
}

/* ============================================
   DOMAINES EXPERTISE PREMIUM
   ============================================ */

.section-domaines-premium {
    padding: var(--space-3xl) 0;
    background: var(--ha-blue-deep);
    position: relative;
    overflow: hidden;
}

/* Domaines Header Row - Slider a gauche, Texte a droite */
.domaines-header-row {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.domaines-header-text {
    flex: 1;
    max-width: 500px;
    text-align: right;
}

.domaines-header-text .surtitre {
    color: var(--ha-orange);
    margin-bottom: var(--space-sm);
}

.domaines-header-text .surtitre::before {
    background: var(--ha-orange);
}

.domaines-header-text .section-titre {
    color: var(--ha-white);
    margin-bottom: var(--space-md);
    font-size: 2.5rem;
    line-height: 1.1;
}

.domaines-header-text .section-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

/* Animation slide pour le texte Domaines - vient de la droite */
.domaines-animate-slide {
    opacity: 0;
    transform: translateX(40px);
    animation: slideInRightDomaines 0.8s ease-out forwards;
}

.domaines-animate-slide:nth-child(1) { animation-delay: 0.1s; }
.domaines-animate-slide:nth-child(2) { animation-delay: 0.3s; }
.domaines-animate-slide:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideInRightDomaines {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mini Slider Vertical Domaines - Defilement haut vers bas */
.domaines-mini-slider {
    flex: 1;
    min-width: 45%;
    height: 400px;
    position: relative;
    perspective: 1000px;
    overflow: visible;
}

/* Cercles decoratifs */
.domaines-mini-slider::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: floatCircleDom1 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.domaines-mini-slider::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 20%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    animation: floatCircleDom2 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatCircleDom1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, 10px) scale(1.1); }
}

@keyframes floatCircleDom2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -8px) scale(1.08); }
}

.domaines-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Defilement vertical - positions basees sur Y */
.domaines-slider-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.3;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Position active - centre */
.domaines-slider-item.active {
    transform: translate(-50%, -50%) scale(1.15) translateZ(80px);
    opacity: 1;
    z-index: 10;
}

/* Position precedente - en haut */
.domaines-slider-item.prev {
    transform: translate(-50%, -180%) scale(0.75) rotateX(-20deg);
    opacity: 0.6;
    z-index: 5;
}

/* Position suivante - en bas */
.domaines-slider-item.next {
    transform: translate(-50%, 80%) scale(0.75) rotateX(20deg);
    opacity: 0.6;
    z-index: 5;
}

/* Positions lointaines */
.domaines-slider-item.far-prev {
    transform: translate(-50%, -280%) scale(0.5) rotateX(-30deg);
    opacity: 0.2;
    z-index: 2;
}

.domaines-slider-item.far-next {
    transform: translate(-50%, 180%) scale(0.5) rotateX(30deg);
    opacity: 0.2;
    z-index: 2;
}

.domaines-slider-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
}

.domaines-slider-item.active::before {
    transform: scale(1.1);
    opacity: 1;
    animation: pulseGlowDom 2s ease-in-out infinite;
}

@keyframes pulseGlowDom {
    0%, 100% { transform: scale(1.1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

.domaines-slider-item img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.6s ease;
}

.domaines-slider-item.active img {
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
}

.domaines-slider-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.domaines-slider-link img {
    transition: transform 0.3s ease;
}

.domaines-slider-item.active .domaines-slider-link:hover img {
    transform: scale(1.05);
}

.domaines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.domaine-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    padding: var(--space-xl);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.domaine-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out-expo);
}

.domaine-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.domaine-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(10, 22, 40, 0.6) 50%,
        rgba(10, 22, 40, 0.3) 100%
    );
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out-expo);
}

.domaine-card:hover .domaine-card-bg,
.domaine-card:hover .domaine-card-overlay {
    opacity: 1;
}

.domaine-card-content {
    position: relative;
    z-index: 2;
}

.domaine-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-md);
    color: var(--ha-orange);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.domaine-card:hover .domaine-card-icon {
    transform: translateY(-5px);
}

.domaine-card-numero {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-xs);
}

.domaine-card-titre {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ha-white);
    margin-bottom: var(--space-sm);
    transition: color var(--duration-normal) var(--ease-out-expo);
}

.domaine-card:hover .domaine-card-titre {
    color: var(--ha-orange);
}

.domaine-card-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.domaine-card:hover .domaine-card-description {
    max-height: 80px;
    opacity: 1;
    margin-bottom: var(--space-md);
}

.domaine-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ha-orange);
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.domaine-card:hover .domaine-card-link {
    opacity: 1;
    transform: translateY(0);
}

.domaine-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

.domaine-card-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .domaines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   PROJETS PREMIUM - Carousel
   ============================================ */

.section-projets-premium {
    padding: var(--space-3xl) 0;
    background: var(--ha-white);
    overflow: hidden;
}

.section-projets-premium .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-2xl);
}

.section-projets-premium .section-header-left {
    max-width: 500px;
}

.section-projets-premium .section-titre {
    color: var(--ha-blue-deep);
}

.projets-filters {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.projets-filter {
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ha-gray-500);
    background: transparent;
    border: 1px solid var(--ha-gray-200);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

.projets-filter:hover,
.projets-filter.active {
    color: var(--ha-blue-primary);
    border-color: var(--ha-blue-primary);
}

.projets-carousel {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--space-lg);
}

.projets-carousel::-webkit-scrollbar {
    display: none;
}

.projet-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.projet-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.projet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

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

.projet-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
    transform: translateY(100%);
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.projet-card:hover .projet-card-overlay {
    transform: translateY(0);
}

.projet-card-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
}

.projet-card-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ha-orange);
    background: rgba(255, 107, 53, 0.2);
    padding: 0.25rem 0.5rem;
}

.projet-card-content {
    padding: var(--space-md) 0;
}

.projet-card-secteur {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ha-orange);
    margin-bottom: var(--space-xs);
}

.projet-card-titre {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-xs);
}

.projet-card-client {
    font-size: 0.875rem;
    color: var(--ha-gray-500);
}

/* ============================================
   TIMELINE PREMIUM
   ============================================ */

.section-timeline-premium {
    padding: var(--space-4xl) 0;
    background: var(--ha-gray-50);
    position: relative;
    overflow: hidden;
}

.section-timeline-premium .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ha-gray-200);
    transform: translateX(-50%);
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--ha-orange);
    transition: height 0.1s linear;
}

.timeline-etape {
    position: relative;
    display: flex;
    align-items: stretch;
    margin-bottom: var(--space-3xl);
    gap: var(--space-xl);
}

/* Etape impaire: images a gauche, contenu a droite */
.timeline-etape-left {
    flex-direction: row;
}

/* Etape paire: contenu a gauche, images a droite */
.timeline-etape-right {
    flex-direction: row-reverse;
}

/* Zone des images - Meme taille que la zone de texte */
.timeline-etape-images {
    width: calc(50% - 60px);
    min-height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0;
    overflow: hidden;
    align-self: stretch;
}

.timeline-etape-left .timeline-etape-images {
    margin-right: auto;
}

.timeline-etape-right .timeline-etape-images {
    margin-left: auto;
}

/* Slider d'images - occupe toute la zone */
.timeline-images-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.timeline-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.timeline-slide.active {
    opacity: 1;
}

.timeline-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

.timeline-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.timeline-slide a:hover img {
    transform: scale(1.08);
}

.timeline-etape-content {
    width: calc(50% - 60px);
    padding: var(--space-xl);
    background: var(--ha-white);
    border: 1px solid var(--ha-gray-200);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.timeline-etape.visible .timeline-etape-content {
    opacity: 1;
    transform: translateY(0);
}

.timeline-etape-left .timeline-etape-content {
    margin-left: 0;
}

.timeline-etape-right .timeline-etape-content {
    margin-right: 0;
}

.timeline-etape-numero {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: var(--ha-white);
    border: 2px solid var(--ha-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ha-gray-400);
    z-index: 2;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.timeline-etape.visible .timeline-etape-numero {
    background: var(--ha-orange);
    border-color: var(--ha-orange);
    color: var(--ha-white);
}

.timeline-etape-titre {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-sm);
}

.timeline-etape-description {
    font-size: 0.9375rem;
    color: var(--ha-gray-600);
    line-height: 1.7;
}

.timeline-etape-duree {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--ha-orange);
    font-weight: 500;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 28px;
    }
    
    .timeline-etape,
    .timeline-etape:nth-child(odd),
    .timeline-etape:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-etape-content {
        width: calc(100% - 80px);
        margin-left: auto !important;
        margin-right: 0 !important;
    }
    
    .timeline-etape-numero {
        left: 28px;
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

/* ============================================
   LOGO CLOUD PREMIUM
   ============================================ */

.section-logos-premium {
    padding: var(--space-3xl) 0;
    background: var(--ha-white);
    overflow: hidden;
}

.section-logos-premium .section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.logos-marquee {
    display: flex;
    overflow: hidden;
    position: relative;
}

.logos-marquee::before,
.logos-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.logos-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--ha-white), transparent);
}

.logos-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--ha-white), transparent);
}

.logos-track {
    display: flex;
    gap: var(--space-3xl);
    animation: marquee 30s linear infinite;
}

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

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

.logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================
   CTA FINAL PREMIUM
   ============================================ */

.section-cta-premium {
    position: relative;
    padding: var(--space-4xl) 0;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.section-cta-premium .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-cta-premium .cta-bg img,
.section-cta-premium .cta-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-cta-premium .cta-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--ha-blue-deep) 0%,
        var(--ha-blue-primary) 50%,
        var(--ha-blue-deep) 100%
    );
}

.section-cta-premium .cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B35' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.section-cta-premium .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.7);
}

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

.section-cta-premium .cta-titre {
    color: var(--ha-white);
    margin-bottom: var(--space-md);
}

.section-cta-premium .cta-sous-titre {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta-premium .cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CHIFFRES CLES PREMIUM
   ============================================ */

.section-chiffres-premium {
    padding: var(--space-3xl) 0;
}

.section-chiffres-premium.fond-bleu {
    background: var(--ha-blue-deep);
}

.section-chiffres-premium.fond-bleu .chiffre-valeur,
.section-chiffres-premium.fond-bleu .chiffre-label {
    color: var(--ha-white);
}

.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.chiffre-item {
    text-align: center;
    padding: var(--space-lg);
}

.chiffre-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--ha-orange);
}

.chiffre-valeur {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--ha-orange);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.section-chiffres-premium.fond-bleu .chiffre-valeur {
    color: var(--ha-orange);
}

.chiffre-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .chiffres-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal="slide-left"] {
    transform: translateX(-40px);
}

[data-reveal="slide-right"] {
    transform: translateX(40px);
}

[data-reveal="scale"] {
    transform: scale(0.95);
}

/* Stagger delays */
[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }
[data-reveal-delay="500"] { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .hero-slider-premium .slide-content {
        padding: 0 var(--space-lg) 6rem;
    }
    
    .hero-slider-premium .slider-nav {
        display: none;
    }
    
    .hero-slider-premium .slider-pagination {
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-slider-premium {
        height: 100svh;
        min-height: 600px;
    }
    
    .hero-slider-premium .slide-content {
        padding: 0 var(--space-md) 5rem;
    }
    
    .hero-slider-premium .slide-cta {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-slider-premium .slide-cta .btn-signature {
        width: 100%;
        justify-content: center;
    }
    
    .hero-slider-premium .slider-pagination {
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }
    
    .hero-slider-premium .scroll-indicator {
        display: none;
    }
    
    .section-adn-premium,
    .section-domaines-premium,
    .section-projets-premium,
    .section-timeline-premium,
    .section-cta-premium {
        padding: var(--space-2xl) 0;
    }
    
    .section-projets-premium .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
    }
    
    .projet-card {
        flex: 0 0 300px;
    }
    
    .section-cta-premium {
        min-height: 400px;
    }
    
    .section-cta-premium .cta-buttons {
        flex-direction: column;
    }
    
    .section-cta-premium .cta-buttons .btn-signature {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .title-xxl {
        font-size: 2.5rem;
    }
    
    .title-xl {
        font-size: 2rem;
    }
    
    .container-premium {
        padding: 0 var(--space-md);
    }
}


/* ============================================
   HERO PAGE PREMIUM - Pages interieures
   ============================================ */

.hero-page-premium {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-page-standard { min-height: 350px; }
.hero-page-grand { min-height: 450px; }
.hero-page-compact { min-height: 250px; }

.hero-page-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-page-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ha-blue-deep) 0%, rgba(10, 22, 40, 0.8) 100%);
}

.hero-page-premium .container-premium {
    position: relative;
    z-index: 1;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-2xl);
}

.hero-page-premium .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
}

.hero-page-premium .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-page-premium .breadcrumb a:hover {
    color: var(--ha-orange);
}

.hero-page-premium .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.hero-page-premium .breadcrumb .current {
    color: var(--ha-orange);
}

.hero-page-titre {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--ha-white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-page-sous-titre {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.7;
}

.hero-page-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ha-orange) 0%, transparent 100%);
}

/* Indicateur de scroll animé */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    cursor: pointer;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-indicator__text {
    display: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator__mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator__wheel {
    width: 4px;
    height: 8px;
    background: var(--ha-orange);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

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

.scroll-indicator__arrows {
    display: none;
}

.scroll-indicator__arrows span {
    display: none;
}

.scroll-indicator__arrows span:nth-child(2) {
    display: none;
}

@keyframes scrollArrow {
    0%, 100% { opacity: 0.3; transform: rotate(45deg) translateY(0); }
    50% { opacity: 1; transform: rotate(45deg) translateY(5px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Séparateur de section avec forme ondulée */
.section-wave-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    z-index: 5;
}

.section-wave-separator svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Teaser de contenu suivant */
.section-peek {
    position: relative;
}

.section-peek::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--ha-orange) 0%, transparent 100%);
}

/* ============================================
   SECTION TEXTE PREMIUM
   ============================================ */

.section-texte-premium {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-texte-premium.fond-blanc { background: var(--ha-white); }
.section-texte-premium.fond-gris { background: var(--ha-gray-100); }
.section-texte-premium.fond-bleu { background: var(--ha-blue-deep); color: var(--ha-white); }

.texte-premium-wrapper {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.texte-premium-wrapper.with-image {
    grid-template-columns: 1fr 1fr;
}

.texte-premium-wrapper.image-gauche .texte-premium-image {
    order: -1;
}

.texte-premium-content .surtitre {
    display: block;
    margin-bottom: var(--space-sm);
}

.texte-premium-content .titre-section {
    margin-bottom: var(--space-lg);
}

.texte-premium-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ha-gray-700);
}

.fond-bleu .texte-premium-body {
    color: rgba(255, 255, 255, 0.8);
}

.texte-premium-image .image-wrapper {
    position: relative;
}

.texte-premium-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.texte-premium-image .image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--ha-orange);
    opacity: 0.2;
    border-radius: var(--radius-lg);
    z-index: -1;
}

@media (max-width: 768px) {
    .texte-premium-wrapper.with-image {
        grid-template-columns: 1fr;
    }
    
    .texte-premium-wrapper.image-gauche .texte-premium-image {
        order: 0;
    }
}


/* ============================================
   SERVICES PREMIUM
   ============================================ */

.section-services-premium {
    padding: var(--space-3xl) 0;
    background: var(--ha-gray-100);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.services-description {
    font-size: 1.0625rem;
    color: var(--ha-gray-600);
    margin-top: var(--space-md);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: var(--ha-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card-inner {
    padding: var(--space-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ha-orange) 0%, #ff8c5a 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--ha-white);
}

.service-image {
    position: relative;
    height: 200px;
    margin: calc(var(--space-xl) * -1);
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}

.service-titre {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-sm);
}

.service-description {
    font-size: 0.9375rem;
    color: var(--ha-gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
}

.service-points li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--ha-gray-700);
    margin-bottom: 0.5rem;
}

.service-points svg {
    width: 16px;
    height: 16px;
    color: var(--ha-orange);
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ha-orange);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link svg {
    width: 18px;
    height: 18px;
}


/* ============================================
   EQUIPE PREMIUM
   ============================================ */

.section-equipe-premium {
    padding: var(--space-3xl) 0;
    background: var(--ha-white);
    position: relative;
    overflow: hidden;
}

.equipe-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.section-equipe-premium .container-premium {
    position: relative;
    z-index: 1;
}

.equipe-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.equipe-description {
    font-size: 1.0625rem;
    color: var(--ha-gray-600);
    margin-top: var(--space-md);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.membre-card {
    text-align: center;
}

.membre-photo {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.membre-photo img {
    width: 100%;
    height: auto;
    transition: transform 0.6s var(--ease-out-expo);
}

.membre-card:hover .membre-photo img {
    transform: scale(1.05);
}

.membre-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.membre-social {
    display: flex;
    gap: 0.75rem;
}

.membre-social a {
    width: 40px;
    height: 40px;
    background: var(--ha-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ha-blue-primary);
    transition: all 0.3s ease;
}

.membre-social a:hover {
    background: var(--ha-orange);
    color: var(--ha-white);
}

.membre-social svg {
    width: 18px;
    height: 18px;
}

.membre-nom {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    margin-bottom: 0.25rem;
}

.membre-poste {
    font-size: 0.875rem;
    color: var(--ha-orange);
    font-weight: 500;
}

.membre-bio {
    font-size: 0.875rem;
    color: var(--ha-gray-600);
    margin-top: var(--space-sm);
    line-height: 1.6;
}


/* ============================================
   GALERIE PREMIUM
   ============================================ */

.section-galerie-premium {
    padding: var(--space-3xl) 0;
    background: var(--ha-gray-100);
}

.galerie-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.galerie-filtres {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--space-2xl);
}

.filtre-btn {
    padding: 0.625rem 1.25rem;
    background: var(--ha-white);
    border: 1px solid var(--ha-gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ha-gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filtre-btn:hover,
.filtre-btn.active {
    background: var(--ha-orange);
    border-color: var(--ha-orange);
    color: var(--ha-white);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.projet-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.projet-image {
    position: relative;
    aspect-ratio: 5/4;
}

.projet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.projet-card:hover .projet-image img {
    transform: scale(1.08);
}

.projet-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.projet-overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
}

.projet-card:hover .projet-overlay-content {
    transform: translateY(0);
}

.projet-client {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ha-orange);
    margin-bottom: 0.5rem;
    display: block;
}

.projet-titre {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ha-white);
    margin-bottom: 0.5rem;
}

.projet-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.projet-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ha-white);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.projet-link:hover {
    gap: 0.75rem;
    color: var(--ha-orange);
}

.projet-link svg {
    width: 16px;
    height: 16px;
}

.projet-categorie {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 0.375rem 0.75rem;
    background: var(--ha-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ha-blue-primary);
}


/* ============================================
   TEMOIGNAGES PREMIUM
   ============================================ */

.section-temoignages-premium {
    padding: var(--space-3xl) 0;
    background: var(--ha-blue-deep);
}

.section-temoignages-premium .surtitre {
    color: var(--ha-orange);
}

.section-temoignages-premium .titre-section {
    color: var(--ha-white);
}

.temoignages-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.temoignages-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.temoignages-track {
    position: relative;
}

.temoignage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: none;
}

.temoignage-card.active {
    display: block;
}

.temoignage-quote {
    position: relative;
    margin-bottom: var(--space-lg);
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--ha-orange);
    opacity: 0.5;
    margin-bottom: var(--space-md);
}

.temoignage-texte {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.temoignage-note {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--space-lg);
}

.temoignage-note .star {
    width: 20px;
    height: 20px;
    color: var(--ha-gray-400);
}

.temoignage-note .star.filled {
    color: #fbbf24;
}

.temoignage-auteur {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.auteur-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--ha-orange);
}

.auteur-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auteur-info {
    flex: 1;
}

.auteur-nom {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-white);
    display: block;
}

.auteur-poste {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.auteur-logo img {
    max-height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.temoignages-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.temoignages-nav .nav-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ha-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.temoignages-nav .nav-btn:hover {
    background: var(--ha-orange);
    border-color: var(--ha-orange);
}

.temoignages-nav .nav-btn svg {
    width: 20px;
    height: 20px;
}

.nav-dots {
    display: flex;
    gap: 0.5rem;
}

.nav-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dots .dot.active {
    background: var(--ha-orange);
    transform: scale(1.2);
}

/* ============================================
   TEMOIGNAGES ULTRA - NOUVELLE VERSION
   ============================================ */

.section-temoignages-ultra {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.temoignages-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.temoignages-bg__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ha-blue-primary) 0%, #0f2744 100%);
}

.temoignages-bg__pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(232, 119, 34, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.temoignages-header-ultra {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.temoignages-surtitre {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 119, 34, 0.2);
    color: var(--ha-orange);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(232, 119, 34, 0.3);
}

.temoignages-surtitre svg {
    color: #fbbf24;
}

.temoignages-titre {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-lg);
}

/* Stats de satisfaction */
.satisfaction-stats {
    display: inline-flex;
    align-items: center;
    gap: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.satisfaction-stat {
    text-align: center;
}

.satisfaction-stat .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.satisfaction-stat .stat-stars {
    display: flex;
    gap: 0.125rem;
    justify-content: center;
    margin: 0.25rem 0;
}

.satisfaction-stat .stat-stars svg {
    color: #fbbf24;
}

.satisfaction-stat .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.satisfaction-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Grille de témoignages */
.temoignages-carousel-ultra {
    position: relative;
    z-index: 1;
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.temoignage-card-ultra {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.temoignage-card-ultra:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(232, 119, 34, 0.3);
    transform: translateY(-5px);
}

.temoignage-card-ultra .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.temoignage-card-ultra .card-stars {
    display: flex;
    gap: 0.125rem;
}

.temoignage-card-ultra .card-stars svg {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.temoignage-card-ultra .card-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.temoignage-card-ultra .card-quote {
    position: relative;
    margin-bottom: var(--space-lg);
}

.temoignage-card-ultra .quote-mark {
    position: absolute;
    top: -10px;
    left: -5px;
    width: 32px;
    height: 32px;
    color: var(--ha-orange);
    opacity: 0.3;
}

.temoignage-card-ultra .card-quote p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    padding-left: var(--space-md);
}

.temoignage-card-ultra .card-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.temoignage-card-ultra .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--ha-orange);
    flex-shrink: 0;
}

.temoignage-card-ultra .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.temoignage-card-ultra .avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ha-orange) 0%, #ff9a56 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.temoignage-card-ultra .author-info {
    flex: 1;
}

.temoignage-card-ultra .author-name {
    display: block;
    font-size: 0.9375rem;
    color: white;
}

.temoignage-card-ultra .author-role {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Navigation témoignages */
.temoignages-nav-ultra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.nav-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--ha-orange);
    border-color: var(--ha-orange);
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
}

.nav-indicators {
    display: flex;
    gap: 0.5rem;
}

.nav-indicators .indicator {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-indicators .indicator.active {
    background: var(--ha-orange);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .temoignages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .temoignages-grid {
        grid-template-columns: 1fr;
    }
    
    .satisfaction-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .satisfaction-divider {
        width: 50px;
        height: 1px;
    }
}


/* ============================================
   FAQ PREMIUM
   ============================================ */

.section-faq-premium {
    padding: var(--space-3xl) 0;
    background: var(--ha-white);
}

.faq-wrapper {
    display: grid;
    gap: var(--space-2xl);
}

.faq-wrapper.with-image {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.faq-header {
    margin-bottom: var(--space-xl);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--ha-gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--ha-orange);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--ha-orange);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.9375rem;
    color: var(--ha-gray-600);
    line-height: 1.7;
}

.faq-image .image-wrapper {
    position: relative;
}

.faq-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.faq-image .image-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--ha-orange);
    opacity: 0.15;
    border-radius: var(--radius-lg);
    z-index: -1;
}

@media (max-width: 768px) {
    .faq-wrapper.with-image {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FAQ PREMIUM ULTRA - NOUVELLE VERSION
   ============================================ */

.section-faq-premium-ultra {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--ha-gray-50) 0%, var(--ha-white) 100%);
    position: relative;
    overflow: hidden;
}

.faq-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.faq-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.faq-bg-circle--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 119, 34, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.faq-bg-circle--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

.faq-header-premium {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.faq-surtitre {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ha-blue-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.faq-surtitre svg {
    opacity: 0.8;
}

.faq-titre {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-md);
}

.faq-description {
    font-size: 1.0625rem;
    color: var(--ha-gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-layout {
    position: relative;
    z-index: 1;
}

.faq-layout--with-image {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-2xl);
    align-items: start;
}

.faq-accordion-premium {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item-premium {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--ha-gray-100);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-premium:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--ha-gray-200);
}

.faq-item-premium.open {
    border-color: var(--ha-orange);
    box-shadow: 0 8px 30px rgba(232, 119, 34, 0.12);
}

.faq-question-premium {
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-number {
    width: 36px;
    height: 36px;
    background: var(--ha-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ha-gray-500);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item-premium.open .faq-question-number,
.faq-question-premium:hover .faq-question-number {
    background: var(--ha-orange);
    color: white;
}

.faq-question-text {
    flex: 1;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    line-height: 1.4;
}

.faq-question-icon {
    width: 28px;
    height: 28px;
    background: var(--ha-gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-question-icon svg {
    width: 16px;
    height: 16px;
    color: var(--ha-gray-500);
    transition: all 0.3s ease;
}

.faq-item-premium.open .faq-question-icon {
    background: var(--ha-orange);
    transform: rotate(45deg);
}

.faq-item-premium.open .faq-question-icon svg {
    color: white;
}

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

.faq-item-premium.open .faq-answer-premium {
    max-height: 500px;
}

.faq-answer-content-premium {
    padding: 0 var(--space-lg) var(--space-lg);
    padding-left: calc(var(--space-lg) + 36px + var(--space-md));
}

.faq-answer-content-premium p {
    font-size: 0.9375rem;
    color: var(--ha-gray-600);
    line-height: 1.8;
    margin: 0;
}

/* Image FAQ */
.faq-image-premium {
    position: sticky;
    top: 100px;
}

.faq-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.faq-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(30, 58, 95, 0.4) 100%);
}

.faq-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--ha-orange);
    color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(232, 119, 34, 0.3);
}

.faq-image-badge .badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.faq-image-badge .badge-text {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* CTA FAQ */
.faq-cta {
    margin-top: var(--space-2xl);
    text-align: center;
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--ha-gray-100);
}

.faq-cta p {
    color: var(--ha-gray-600);
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    background: var(--ha-blue-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.faq-cta-btn:hover {
    background: var(--ha-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 119, 34, 0.3);
}

@media (max-width: 1024px) {
    .faq-layout--with-image {
        grid-template-columns: 1fr;
    }
    
    .faq-image-premium {
        display: none;
    }
}

@media (max-width: 768px) {
    .faq-question-premium {
        padding: var(--space-md);
    }
    
    .faq-question-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .faq-answer-content-premium {
        padding-left: calc(var(--space-md) + 32px + var(--space-sm));
    }
}


/* ============================================
   CONTACT PREMIUM (ancien - conservé pour compatibilité)
   ============================================ */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-info .surtitre {
    color: var(--ha-orange);
}

.contact-info .titre-section {
    color: var(--ha-blue-primary);
}

.section-contact-premium .contact-bg + .container-premium .contact-info .titre-section {
    color: var(--ha-white);
}

.contact-description {
    font-size: 1rem;
    color: var(--ha-gray-600);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.section-contact-premium .contact-bg + .container-premium .contact-description {
    color: rgba(255, 255, 255, 0.8);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--ha-orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--ha-white);
}

.contact-icon.whatsapp {
    background: #25d366;
}

.contact-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    margin-bottom: 0.25rem;
}

.section-contact-premium .contact-bg + .container-premium .contact-text strong {
    color: var(--ha-white);
}

.contact-text span,
.contact-text a {
    font-size: 0.9375rem;
    color: var(--ha-gray-600);
    text-decoration: none;
    line-height: 1.5;
}

.section-contact-premium .contact-bg + .container-premium .contact-text span,
.section-contact-premium .contact-bg + .container-premium .contact-text a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-text a:hover {
    color: var(--ha-orange);
}

.contact-map {
    height: 100%;
    min-height: 400px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* Contact Header */
.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.contact-header__description {
    font-size: 1.1rem;
    color: var(--ha-gray-600);
    line-height: 1.7;
    margin-top: var(--space-md);
}

/* Contact Info Title */
.contact-info__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-xl);
}

/* Contact Hours */
.contact-hours {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--ha-gray-200);
}

.contact-hours h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-md);
}

.contact-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--ha-gray-100);
    font-size: 0.9rem;
    color: var(--ha-gray-600);
}

.contact-hours li:last-child {
    border-bottom: none;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--ha-white);
    padding: var(--space-lg) var(--space-lg) var(--space-sm) !important;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.contact-form__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-xl);
}

/* Contact Form */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group--full {
    grid-column: 1 / -1;
    margin-bottom: var(--space-lg);
}

.contact-form label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-xs);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: var(--space-md);
    border: 2px solid var(--ha-gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--ha-dark);
    background: var(--ha-white);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--ha-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--ha-gray-400);
}

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

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

/* Checkbox */
.contact-form .form-group--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.contact-form .form-group--checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--ha-orange);
}

.contact-form .form-group--checkbox label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--ha-gray-600);
    line-height: 1.5;
    cursor: pointer;
}

.contact-form .form-group--checkbox label a {
    color: var(--ha-orange);
    text-decoration: underline;
}

/* Submit Button */
.contact-form .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    background: linear-gradient(135deg, var(--ha-orange) 0%, #e85a1e 100%);
    color: var(--ha-white);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-display);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.contact-form .btn-submit svg {
    width: 20px;
    height: 20px;
}

/* Contact Map - Full Width */
.section-contact-premium .contact-map {
    margin-top: var(--space-3xl);
    height: 400px;
}

.section-contact-premium .map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
}

/* WhatsApp Item Highlight */
.contact-item--whatsapp {
    background: rgba(37, 211, 102, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-sm);
}

/* Réseaux sociaux */
.contact-social {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--ha-gray-200);
}

.contact-social h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-md);
}

.contact-social__links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ha-gray-100);
    color: var(--ha-gray-600);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-link--whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-link--facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link--instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link--linkedin:hover {
    background: #0a66c2;
    color: white;
}

.social-link--twitter:hover {
    background: #000000;
    color: white;
}

.social-link--youtube:hover {
    background: #ff0000;
    color: white;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: var(--space-xl);
    }
    
    .contact-social__links {
        justify-content: center;
    }
}

/* ============================================
   CONTACT PREMIUM - NOUVELLE VERSION
   ============================================ */

/* Background avec pattern */
.section-contact-premium {
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
    background: var(--ha-gray-50);
    overflow: hidden;
}

.contact-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.contact-premium-bg__pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(232, 119, 34, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 95, 0.05) 0%, transparent 50%);
}

.contact-premium-bg__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--ha-white) 0%, var(--ha-gray-50) 100%);
}

.section-contact-premium .container-premium {
    position: relative;
    z-index: 1;
}

/* Header premium */
.contact-header-premium {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.surtitre-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--ha-orange) 0%, #ff9a56 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.surtitre-badge svg {
    opacity: 0.9;
}

.titre-section-premium {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.contact-header__description {
    font-size: 1.125rem;
    color: var(--ha-gray-600);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

/* Badge réponse rapide */
.response-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--ha-gray-100);
}

.response-badge__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.response-badge__icon svg {
    width: 24px;
    height: 24px;
}

.response-badge__text {
    text-align: left;
}

.response-badge__text strong {
    display: block;
    color: var(--ha-blue-primary);
    font-size: 1rem;
    font-weight: 600;
}

.response-badge__text span {
    color: var(--ha-gray-500);
    font-size: 0.875rem;
}

/* Chiffres de confiance */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.trust-stat {
    text-align: center;
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--ha-gray-100);
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--ha-orange);
}

.trust-stat__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ha-orange) 0%, var(--ha-blue-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.trust-stat__label {
    color: var(--ha-gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Wrapper principal */
.contact-wrapper-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.section-contact-premium .contact-wrapper-premium--no-map {
    grid-template-columns: 1fr;
}

.section-contact-premium .contact-wrapper-premium--no-map .contact-right-premium {
    grid-column: 1 / -1;
    justify-self: start;
}

/* Carte et infos à gauche */
.contact-map-premium {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.map-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-wrapper-premium {
    height: 300px;
}

.map-wrapper-premium iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Bouton Itinéraire flottant professionnel */
.map-itinerary-floating {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 10;
}

.itinerary-btn-floating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ha-blue-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: subtle-float 4s ease-in-out infinite;
    letter-spacing: 0.2px;
}

.itinerary-btn-floating svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    stroke: white;
}

.itinerary-btn-floating:hover {
    background: var(--ha-orange);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(232, 126, 4, 0.4);
    animation: none;
}

.itinerary-btn-floating:hover svg {
    transform: translateX(3px);
}

.itinerary-btn-floating:active {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.3);
}

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

/* Cards de contact */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--ha-gray-200);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-card:hover {
    border-color: var(--ha-orange);
    box-shadow: 0 4px 20px rgba(232, 119, 34, 0.15);
    transform: translateX(5px);
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card__icon svg {
    width: 22px;
    height: 22px;
}

.contact-card--phone .contact-card__icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.contact-card--email .contact-card__icon {
    background: rgba(232, 119, 34, 0.1);
    color: var(--ha-orange);
}

.contact-card--whatsapp .contact-card__icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-card--whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(37, 211, 102, 0.1) 100%);
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-card__content {
    flex: 1;
}

.contact-card__label {
    display: block;
    font-size: 0.75rem;
    color: var(--ha-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-card__value {
    display: block;
    color: var(--ha-blue-primary);
    font-size: 0.9375rem;
    font-weight: 600;
}

.contact-card__badge {
    background: #25d366;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Horaires premium */
.contact-hours-premium {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--ha-gray-200);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--ha-gray-100);
}

.hours-header svg {
    color: var(--ha-orange);
}

.hours-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    margin: 0;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px dashed var(--ha-gray-100);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    color: var(--ha-gray-700);
    font-size: 0.875rem;
}

.hours-time {
    color: var(--ha-gray-600);
    font-size: 0.875rem;
}

.hours-status {
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
}

.hours-status--open {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.hours-status--closed {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* Réseaux sociaux premium */
.contact-social-premium {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--ha-gray-200);
}

.contact-social-premium h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-md);
}

.social-links-premium {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Formulaire Premium */
.contact-form-premium {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-xl) var(--space-sm) !important;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--ha-gray-100);
}

.contact-right-premium {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    width: 100%;
}

@media (min-width: 1025px) {
    .contact-form-premium {
        position: sticky;
        top: 110px;
    }
}

.form-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg) !important;
    padding-bottom: var(--space-md) !important;
    border-bottom: 1px solid var(--ha-gray-100);
}

.form-header__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--ha-orange) 0%, #ff9a56 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.form-header__icon svg {
    width: 28px;
    height: 28px;
}

.form-header__text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ha-blue-primary);
    margin-bottom: 0.25rem;
}

.form-header__text p {
    color: var(--ha-gray-600);
    font-size: 0.9375rem;
    margin: 0;
}

/* Étapes du formulaire */
.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-lg) !important;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--ha-gray-200);
    z-index: 0;
}

.form-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ha-gray-200);
    color: var(--ha-gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-step.active .step-number {
    background: var(--ha-orange);
    color: white;
}

.step-label {
    font-size: 0.75rem;
    color: var(--ha-gray-500);
    font-weight: 500;
}

.form-step.active .step-label {
    color: var(--ha-orange);
}

/* Étape complétée */
.form-step.completed .step-number {
    background: var(--ha-blue-primary);
    color: white;
}

.form-step.completed .step-label {
    color: var(--ha-blue-primary);
}

.form-step.completed .step-number::after {
    content: '✓';
    position: absolute;
    font-size: 0.875rem;
}

/* Sections du formulaire */
.form-section {
    animation: fadeInUp 0.4s ease;
}

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

/* Navigation entre étapes */
.form-navigation {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-end;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--ha-gray-200);
}

.btn-next-step,
.btn-prev-step {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next-step {
    background: var(--ha-orange);
    color: white;
    box-shadow: 0 4px 12px rgba(232, 119, 34, 0.3);
}

.btn-next-step:hover {
    background: var(--ha-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 119, 34, 0.4);
}

.btn-next-step svg {
    transition: transform 0.3s ease;
}

.btn-next-step:hover svg {
    transform: translateX(3px);
}

.btn-prev-step {
    background: var(--ha-gray-100);
    color: var(--ha-gray-700);
    border: 1px solid var(--ha-gray-300);
}

.btn-prev-step:hover {
    background: var(--ha-gray-200);
    border-color: var(--ha-gray-400);
}

.btn-prev-step svg {
    transition: transform 0.3s ease;
}

.btn-prev-step:hover svg {
    transform: translateX(-3px);
}

/* Champs du formulaire */
.form-row-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form-group-premium {
    position: relative;
}

.form-group-premium--full {
    grid-column: 1 / -1;
    margin-bottom: var(--space-lg);
}

.form-group-premium label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    margin-bottom: 0.5rem;
}

.form-group-premium label svg {
    color: var(--ha-orange);
}

.form-group-premium input,
.form-group-premium select,
.form-group-premium textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--ha-gray-200);
    border-radius: 50px;
    font-size: 1rem;
    color: var(--ha-gray-800);
    background: var(--ha-gray-50);
    transition: all 0.3s ease;
}

.form-group-premium textarea {
    border-radius: 20px;
}

.form-group-premium input:focus,
.form-group-premium select:focus,
.form-group-premium textarea:focus {
    outline: none;
    border-color: var(--ha-orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.1);
}

.form-group-premium input::placeholder,
.form-group-premium textarea::placeholder {
    color: var(--ha-gray-400);
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ha-orange);
    transition: width 0.3s ease;
}

.form-group-premium input:focus ~ .input-focus-border,
.form-group-premium select:focus ~ .input-focus-border,
.form-group-premium textarea:focus ~ .input-focus-border {
    width: 100%;
}

/* Select avec icônes professionnelles */
.select-with-icons {
    font-weight: 500;
}

.select-with-icons option {
    padding: 0.75rem 0.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.select-with-icons option[value="signaletique"] {
    background: linear-gradient(90deg, rgba(26, 54, 93, 0.05) 0%, transparent 100%);
}

.select-with-icons option[value="mobilier"] {
    background: linear-gradient(90deg, rgba(26, 54, 93, 0.05) 0%, transparent 100%);
}

.select-with-icons option[value="enseigne"] {
    background: linear-gradient(90deg, rgba(232, 126, 4, 0.05) 0%, transparent 100%);
}

.select-with-icons option[value="decoration"] {
    background: linear-gradient(90deg, rgba(232, 126, 4, 0.05) 0%, transparent 100%);
}

.select-with-icons option[value="evenementiel"] {
    background: linear-gradient(90deg, rgba(26, 54, 93, 0.05) 0%, transparent 100%);
}

.select-with-icons option[value="autre"] {
    background: linear-gradient(90deg, rgba(107, 114, 128, 0.05) 0%, transparent 100%);
}

.textarea-counter {
    text-align: right;
    font-size: 0.75rem;
    color: var(--ha-gray-500);
    margin-top: 0.5rem;
}

/* Options de budget */
.budget-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.budget-option {
    cursor: pointer;
}

.budget-option input {
    display: none;
}

.budget-option__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    border: 2px solid var(--ha-gray-200);
    border-radius: 50px;
    background: var(--ha-gray-50);
    transition: all 0.3s ease;
}

.budget-option input:checked + .budget-option__box {
    border-color: var(--ha-orange);
    background: rgba(232, 119, 34, 0.05);
}

.budget-option__amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ha-blue-primary);
}

.budget-option__label {
    font-size: 0.6875rem;
    color: var(--ha-gray-500);
    margin-top: 0.25rem;
}

.budget-option input:checked + .budget-option__box .budget-option__amount {
    color: var(--ha-orange);
}

/* Option de budget sélectionnée via JS */
.budget-option.selected .budget-option__box {
    border-color: var(--ha-orange);
    background: rgba(232, 119, 34, 0.05);
    transform: scale(1.02);
}

.budget-option.selected .budget-option__amount {
    color: var(--ha-orange);
}

/* Checkbox premium */
.form-group-premium--checkbox {
    margin-top: var(--space-md);
}

.checkbox-premium {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
}

.checkbox-premium input {
    display: none;
}

.checkbox-box {
    width: 22px;
    height: 22px;
    border: 2px solid var(--ha-gray-300);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-box svg {
    width: 14px;
    height: 14px;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.checkbox-premium input:checked + .checkbox-box {
    background: var(--ha-orange);
    border-color: var(--ha-orange);
}

.checkbox-premium input:checked + .checkbox-box svg {
    opacity: 1;
    transform: scale(1);
}

.checkbox-text {
    font-size: 0.875rem;
    color: var(--ha-gray-600);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--ha-orange);
    text-decoration: underline;
}

/* Bouton submit premium */
.form-actions {
    margin-top: var(--space-md) !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    text-align: center;
}

.btn-submit-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--ha-orange) 0%, #ff9a56 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ha-blue-primary) 0%, #2a4a6e 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-submit-premium:hover::before {
    opacity: 1;
}

.btn-submit-premium .btn-text,
.btn-submit-premium .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-submit-premium .btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-submit-premium:hover .btn-icon svg {
    transform: translateX(5px) translateY(-5px);
}

.btn-submit-premium .btn-loading {
    display: none;
}

.btn-submit-premium.loading .btn-text,
.btn-submit-premium.loading .btn-icon {
    display: none;
}

.btn-submit-premium.loading .btn-loading {
    display: block;
}

.spinner {
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    font-size: 0.8125rem;
    color: var(--ha-gray-500);
}

.form-guarantee svg {
    color: #10b981;
}

/* Bouton WhatsApp flottant */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: #25d366;
    color: white;
    padding: 0.875rem 1.5rem 0.875rem 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-floating:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-floating__pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    background: #25d366;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

.whatsapp-floating__icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-floating__icon svg {
    width: 24px;
    height: 24px;
}

.whatsapp-floating__text {
    font-weight: 600;
    font-size: 0.9375rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper-premium {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }
    
    .budget-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
    
    .trust-stat {
        padding: var(--space-md);
    }
    
    .trust-stat__number {
        font-size: 1.75rem;
    }
    
    .form-row-premium {
        grid-template-columns: 1fr;
    }
    
    .contact-form-premium {
        padding: var(--space-lg) var(--space-lg) var(--space-sm) !important;
    }

    .contact-right-premium {
        gap: var(--space-md);
    }
    
    .form-steps {
        display: none;
    }
    
    .response-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-floating__text {
        display: none;
    }
    
    .whatsapp-floating {
        padding: 1rem;
        border-radius: 50%;
    }
}


/* ============================================
   VALEURS PREMIUM
   ============================================ */

.section-valeurs-premium {
    padding: var(--space-3xl) 0;
    position: relative;
    background: var(--ha-white);
}

.section-valeurs-premium .valeurs-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-valeurs-premium .valeurs-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-valeurs-premium .valeurs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.85) 100%);
}

.section-valeurs-premium .container-premium {
    position: relative;
    z-index: 1;
}

.valeurs-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-valeurs-premium .valeurs-bg + .container-premium .surtitre {
    color: var(--ha-orange);
}

.section-valeurs-premium .valeurs-bg + .container-premium .titre-section {
    color: var(--ha-white);
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.valeur-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--ha-gray-100);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out-expo);
}

.section-valeurs-premium .valeurs-bg + .container-premium .valeur-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.valeur-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--ha-orange) 0%, #ff8c5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valeur-icon svg {
    width: 32px;
    height: 32px;
    color: var(--ha-white);
}

.valeur-titre {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-sm);
}

.section-valeurs-premium .valeurs-bg + .container-premium .valeur-titre {
    color: var(--ha-white);
}

.valeur-description {
    font-size: 0.9375rem;
    color: var(--ha-gray-600);
    line-height: 1.7;
}

.section-valeurs-premium .valeurs-bg + .container-premium .valeur-description {
    color: rgba(255, 255, 255, 0.7);
}


/* ============================================
   PAGE À PROPOS - STYLES SPÉCIFIQUES
   ============================================ */

/* HERO IMMERSIF SPLIT SCREEN */
.about-hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ha-blue-deep);
}

.hero-bg-split {
    position: absolute;
    inset: 0;
    display: flex;
}

.hero-bg-left {
    flex: 1;
    background: var(--ha-blue-deep);
}

.hero-bg-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-bg-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--ha-blue-deep) 0%, transparent 30%);
    z-index: 2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ha-blue-primary) 0%, var(--ha-blue-deep) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 8rem 0;
}

.about-hero-immersive .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-text-side {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.badge-line {
    width: 40px;
    height: 2px;
    background: var(--ha-orange);
}

.badge-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--ha-orange);
    text-transform: uppercase;
}

.hero-title-split {
    margin-bottom: var(--space-xl);
}

.hero-title-split .title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ha-white);
    letter-spacing: -0.03em;
}

.hero-title-split .title-line.accent {
    color: var(--ha-orange);
}

.hero-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
}

.hero-stats-inline {
    display: flex;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-inline {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ha-white);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-xs);
}

.hero-visual-side {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--ha-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--ha-orange);
}

.floating-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: -2s;
}

.floating-card.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: -4s;
}

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

.scroll-indicator-about {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 10px;
    background: var(--ha-orange);
    border-radius: 2px;
    position: absolute;
    left: -1px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* STORY SECTION */
.about-story-section {
    padding: var(--space-4xl) 0;
    background: var(--ha-white);
}

.story-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-3xl);
}

.story-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
}

.section-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(10, 22, 40, 0.05);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-md);
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ha-blue-deep);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
}

.sidebar-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--ha-orange), transparent);
    margin-top: var(--space-lg);
}

.story-content {
    max-width: 800px;
}

.story-intro {
    margin-bottom: var(--space-3xl);
}

.lead-text {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--ha-gray-700);
    font-weight: 400;
}

.story-blocks {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.story-block {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--ha-gray-100);
}

.story-block:last-child {
    border-bottom: none;
}

.block-year {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ha-orange);
}

.block-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ha-blue-deep);
    margin-bottom: var(--space-sm);
}

.block-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ha-gray-600);
}

.block-image {
    margin-top: var(--space-lg);
    border-radius: 8px;
    overflow: hidden;
}

.block-image img {
    width: 100%;
    height: auto;
}

/* VISION & MISSION */
.about-vision-mission {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--ha-gray-50);
    overflow: hidden;
}

.vm-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vm-pattern {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.vm-card {
    background: var(--ha-white);
    border-radius: 20px;
    padding: var(--space-2xl);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--duration-normal) var(--ease-out-expo),
                box-shadow var(--duration-normal) var(--ease-out-expo);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.vm-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.vm-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--ha-orange) 0%, #ff8c5a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon svg {
    width: 28px;
    height: 28px;
    color: var(--ha-white);
}

.vm-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ha-orange);
}

.vm-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ha-blue-deep);
    margin-bottom: var(--space-md);
}

.vm-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ha-gray-600);
}

.vm-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vm-quote blockquote {
    position: relative;
    padding: var(--space-2xl);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 8rem;
    color: rgba(255, 107, 53, 0.1);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.vm-quote p {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    font-style: italic;
    color: var(--ha-blue-deep);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.vm-quote cite {
    display: block;
    margin-top: var(--space-lg);
    font-size: 1rem;
    font-style: normal;
    color: var(--ha-gray-500);
}

/* TEAM CAROUSEL - DÉFILEMENT AUTOMATIQUE */
.about-team-mosaic {
    padding: var(--space-4xl) 0;
    background: var(--ha-white);
    overflow: hidden;
    position: relative;
}

.team-mosaic-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    z-index: 0;
}

.about-team-mosaic .container-premium,
.about-team-mosaic .team-carousel-wrapper {
    position: relative;
    z-index: 1;
}

.team-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.team-header .section-number {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.team-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--ha-blue-deep);
    margin-bottom: var(--space-md);
}

.team-subtitle {
    font-size: 1.125rem;
    color: var(--ha-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.team-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: var(--space-lg) 0;
}

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

.team-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--ha-white), transparent);
}

.team-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--ha-white), transparent);
}

.team-carousel-track {
    display: flex;
    gap: var(--space-2xl);
    animation: teamScroll 25s linear infinite;
    width: max-content;
}

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

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

.team-member-card {
    position: relative;
    background: transparent;
    text-align: center;
    flex-shrink: 0;
    width: 150px;
}

.member-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--ha-gray-100);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.team-member-card:hover .member-image {
    border-color: var(--ha-orange);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.25);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.team-member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ha-gray-200) 0%, var(--ha-gray-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-placeholder svg {
    width: 40px;
    height: 40px;
    color: var(--ha-gray-400);
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 107, 53, 0.9);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.team-member-card:hover .member-overlay {
    opacity: 1;
}

.member-social a {
    width: 36px;
    height: 36px;
    background: var(--ha-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ha-blue-deep);
    transition: all var(--duration-fast) ease;
}

.member-social a:hover {
    background: var(--ha-blue-deep);
    color: var(--ha-white);
}

.member-social svg {
    width: 16px;
    height: 16px;
}

.member-info {
    padding: var(--space-sm) 0;
    text-align: center;
}

.member-name {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ha-blue-deep);
    margin-bottom: 2px;
    white-space: nowrap;
}

.member-role {
    font-size: 0.75rem;
    color: var(--ha-gray-500);
    white-space: nowrap;
}

/* CAPACITES */
.about-capacites {
    padding: var(--space-4xl) 0;
}

.about-capacites.fond-bleu {
    background: var(--ha-blue-deep);
}

.about-capacites.fond-gris {
    background: var(--ha-gray-50);
}

.about-capacites.fond-blanc {
    background: var(--ha-white);
}

.capacites-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.about-capacites.fond-bleu .section-titre,
.about-capacites.fond-bleu .surtitre {
    color: var(--ha-white);
}

.about-capacites.fond-bleu .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.capacites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.capacite-card {
    text-align: center;
    padding: var(--space-xl);
}

.capacite-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: rgba(255, 107, 53, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-capacites.fond-bleu .capacite-icon {
    background: rgba(255, 107, 53, 0.2);
}

.capacite-icon svg {
    width: 32px;
    height: 32px;
    color: var(--ha-orange);
}

.capacite-valeur {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--ha-blue-deep);
    line-height: 1;
    margin-bottom: var(--space-sm);
    transition: transform 0.15s ease, text-shadow 0.3s ease;
    letter-spacing: -0.02em;
}

.about-capacites.fond-bleu .capacite-valeur {
    color: var(--ha-white);
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
}

.capacite-valeur.counted {
    animation: counterPop 0.5s ease forwards;
}

@keyframes counterPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); text-shadow: 0 0 60px rgba(255, 107, 53, 0.8); }
    100% { transform: scale(1); }
}

.capacite-card {
    position: relative;
    overflow: hidden;
}

.capacite-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.capacite-card:hover::before {
    width: 300px;
    height: 300px;
}

.capacite-card > * {
    position: relative;
    z-index: 1;
}

.capacite-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-gray-700);
    margin-bottom: var(--space-sm);
}

.about-capacites.fond-bleu .capacite-label {
    color: rgba(255, 255, 255, 0.9);
}

.capacite-desc {
    font-size: 0.875rem;
    color: var(--ha-gray-500);
    line-height: 1.6;
}

.about-capacites.fond-bleu .capacite-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* PARTENAIRES */
.about-partenaires {
    padding: var(--space-3xl) 0;
    background: var(--ha-gray-50);
}

.partenaires-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.logos-marquee {
    overflow: hidden;
    position: relative;
}

.logos-marquee::before,
.logos-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.logos-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--ha-gray-50), transparent);
}

.logos-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--ha-gray-50), transparent);
}

.marquee-track {
    display: flex;
    gap: var(--space-3xl);
    animation: marquee 30s linear infinite;
}

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

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-xl);
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--duration-normal) ease;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item img {
    max-height: 60px;
    width: auto;
}

/* ABOUT CTA */
.about-cta-section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.about-cta-section.style-gradient {
    background: linear-gradient(135deg, var(--ha-blue-deep) 0%, var(--ha-blue-primary) 100%);
}

.about-cta-section.style-dark {
    background: var(--ha-blue-deep);
}

.about-cta-section.style-image {
    background: var(--ha-blue-deep);
}

.cta-bg-image {
    position: absolute;
    inset: 0;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-bg-image .cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.85);
}

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

.about-cta-section .cta-titre {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--ha-white);
    margin-bottom: var(--space-lg);
}

.about-cta-section .cta-sous-titre {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-hero-immersive .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual-side {
        display: none;
    }
    
    .hero-stats-inline {
        justify-content: center;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
    }
    
    .story-sidebar {
        display: none;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .capacites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-carousel-track {
        animation-duration: 20s;
    }
}

@media (max-width: 768px) {
    .member-image {
        width: 100px;
        height: 100px;
    }
    
    .team-member-card {
        width: 130px;
    }
    
    .team-carousel-track {
        gap: var(--space-xl);
    }
}

@media (max-width: 576px) {
    .hero-stats-inline {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .story-block {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .member-image {
        width: 70px;
        height: 70px;
    }
    
    .team-member-card {
        width: 100px;
    }
    
    .member-name {
        font-size: 0.75rem;
    }
    
    .member-role {
        font-size: 0.625rem;
    }
    
    .team-carousel-track {
        gap: var(--space-lg);
        animation-duration: 15s;
    }
    
    .capacites-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   PAGE SERVICES - Design Premium Unique
   ============================================ */

/* SERVICES HERO */
.services-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: visible;
    background: var(--ha-blue-deep);
    margin-top: 80px;
    padding-top: 40px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.services-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.services-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.7) 0%, rgba(10, 25, 47, 0.5) 100%);
    z-index: 1;
}

.services-hero .container-premium {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.services-hero__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-4xl);
    align-items: center;
    margin-top: 30px;
}

.services-hero__surtitre {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ha-orange);
    margin-bottom: var(--space-lg);
}

.services-hero__surtitre .line {
    width: 60px;
    height: 2px;
    background: var(--ha-orange);
}

.services-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--ha-white);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.services-hero__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: var(--space-2xl);
}

.services-hero__cta .btn-premium {
    padding: var(--space-md) var(--space-2xl);
}

.services-hero__stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-hero__stat {
    text-align: center;
}

.services-hero__stat .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--ha-orange);
    line-height: 1;
}

.services-hero__stat .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.services-hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
    animation: bounce 2s infinite;
}

.services-hero__scroll-indicator svg {
    width: 24px;
    height: 24px;
}

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

/* SERVICES SHOWCASE */
.services-showcase {
    position: relative;
    padding: var(--space-5xl) 0;
}

.services-showcase__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.1;
    z-index: 0;
}

.services-showcase .container-premium {
    position: relative;
    z-index: 1;
}

.services-showcase--blanc {
    background: var(--ha-white);
}

.services-showcase--gris {
    background: var(--ha-gray-50);
}

.services-showcase--bleu {
    background: var(--ha-blue-deep);
}

.services-showcase--bleu .surtitre {
    color: var(--ha-orange);
}

.services-showcase--bleu .section-titre,
.services-showcase--bleu .section-description {
    color: var(--ha-white);
}

.services-showcase--bleu .services-showcase__bg {
    opacity: 0.08;
}

.services-showcase__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.services-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    position: relative;
    background: var(--ha-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.services-showcase--bleu .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card__inner {
    padding: var(--space-2xl);
}

.service-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ha-orange) 0%, #ff8c5a 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    transition: transform var(--duration-normal) ease;
}

.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--ha-white);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ha-blue-deep);
    margin-bottom: var(--space-md);
}

.services-showcase--bleu .service-card__title {
    color: var(--ha-white);
}

.service-card__description {
    font-size: 1rem;
    color: var(--ha-gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.services-showcase--bleu .service-card__description {
    color: rgba(255, 255, 255, 0.7);
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--ha-gray-700);
    border-bottom: 1px solid var(--ha-gray-100);
}

.services-showcase--bleu .service-card__features li {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card__features li:last-child {
    border-bottom: none;
}

.service-card__features svg {
    width: 18px;
    height: 18px;
    color: var(--ha-orange);
    flex-shrink: 0;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--ha-orange);
    text-decoration: none;
    transition: gap var(--duration-fast) ease;
}

.service-card__link:hover {
    gap: var(--space-md);
}

.service-card__link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--duration-fast) ease;
}

.service-card__link:hover svg {
    transform: translateX(5px);
}

.service-card__number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--ha-gray-100);
    line-height: 1;
    opacity: 0.5;
}

.services-showcase--bleu .service-card__number {
    color: rgba(255, 255, 255, 0.1);
}

/* Service card accent colors */
.service-card--orange .service-card__icon {
    background: linear-gradient(135deg, var(--ha-orange) 0%, #ff8c5a 100%);
}

.service-card--bleu .service-card__icon {
    background: linear-gradient(135deg, var(--ha-blue-deep) 0%, #1a3a5c 100%);
}

.service-card--vert .service-card__icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.service-card--violet .service-card__icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

/* SERVICES PROCESS */
.services-process {
    padding: var(--space-5xl) 0;
    background: var(--ha-gray-50);
}

.services-process__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.services-process__timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.services-process--horizontal .services-process__timeline {
    flex-direction: row;
}

.services-process--vertical .services-process__timeline {
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.services-process--vertical .process-step {
    flex-direction: row;
    text-align: left;
    padding: var(--space-xl) 0;
}

.process-step__connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.services-process--vertical .process-step__connector {
    flex-direction: row;
    margin-bottom: 0;
    margin-right: var(--space-xl);
}

.process-step__line {
    width: 100%;
    height: 3px;
    background: var(--ha-gray-200);
    position: absolute;
    top: 35px;
    left: 50%;
    z-index: 0;
}

.process-step__line-progress {
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--ha-orange) 0%, #ff8c42 100%);
    position: absolute;
    top: 34px;
    left: 50%;
    z-index: 0;
    border-radius: 3px;
}

.process-step--last .process-step__line,
.process-step--last .process-step__line-progress {
    display: none;
}

.services-process--vertical .process-step__line {
    width: 3px;
    height: 100%;
    top: 70px;
    left: 35px;
}

.process-step__dot {
    width: 70px;
    height: 70px;
    background: var(--ha-white);
    border: 3px solid var(--ha-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ha-orange);
    position: relative;
    z-index: 1;
    transition: all var(--duration-normal) ease;
}

.process-step__number {
    transition: opacity 0.3s ease;
}

.process-step__check {
    position: absolute;
    width: 30px;
    height: 30px;
    stroke: white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.process-step.completed .process-step__dot {
    background: var(--ha-orange);
    border-color: var(--ha-orange);
}

.process-step.completed .process-step__number {
    opacity: 0;
}

.process-step.completed .process-step__check {
    opacity: 1;
    transform: scale(1);
}

.process-step.active .process-step__dot {
    background: var(--ha-orange);
    color: var(--ha-white);
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.2);
}

.process-step:hover .process-step__dot {
    background: var(--ha-orange);
    color: var(--ha-white);
    transform: scale(1.1);
}

/* Boule animée */
.process-ball {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--ha-orange);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.6), 0 0 20px rgba(255, 107, 0, 0.4);
    opacity: 0;
    pointer-events: none;
}

.process-ball.animating {
    opacity: 1;
}

@keyframes orbitCircle {
    0% { transform: rotate(0deg) translateX(35px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(35px) rotate(-360deg); }
}

@keyframes moveLine {
    0% { left: 0; }
    100% { left: 100%; }
}

.process-step__content {
    max-width: 250px;
}

.services-process--vertical .process-step__content {
    max-width: none;
    flex: 1;
}

.process-step__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-md);
}

.process-step__icon svg {
    width: 100%;
    height: 100%;
    color: var(--ha-orange);
}

.process-step__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ha-blue-deep);
    margin-bottom: var(--space-sm);
}

.process-step__description {
    font-size: 0.9375rem;
    color: var(--ha-gray-600);
    line-height: 1.6;
}

.process-step__duration {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--ha-orange-light);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ha-orange);
}

.process-step__duration svg {
    width: 14px;
    height: 14px;
}

/* SERVICES FEATURED */
.services-featured {
    padding: var(--space-5xl) 0;
    background: var(--ha-white);
}

.services-featured__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.services-featured--gauche .services-featured__visual {
    order: -1;
}

.services-featured__badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--ha-orange);
    color: var(--ha-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.services-featured__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ha-blue-deep);
    margin-bottom: var(--space-xl);
}

.services-featured__description {
    font-size: 1.0625rem;
    color: var(--ha-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.services-featured__advantages {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.advantage-item {
    display: flex;
    gap: var(--space-md);
}

.advantage-item__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ha-orange-light);
    border-radius: var(--radius-lg);
}

.advantage-item__icon svg {
    width: 24px;
    height: 24px;
    color: var(--ha-orange);
}

.advantage-item__text h4 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ha-blue-deep);
    margin-bottom: var(--space-xs);
}

.advantage-item__text p {
    font-size: 0.9375rem;
    color: var(--ha-gray-600);
    line-height: 1.6;
}

.services-featured__visual {
    position: relative;
}

.services-featured__image-wrapper {
    position: relative;
}

.services-featured__image-main {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.services-featured__image-secondary {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 50%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--ha-white);
}

.services-featured__decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--ha-orange);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.2;
}

/* SERVICES PRICING */
.services-pricing {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--ha-gray-50) 0%, var(--ha-white) 100%);
    position: relative;
    overflow: hidden;
}

.services-pricing__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.services-pricing .container-premium {
    position: relative;
    z-index: 1;
}

.services-pricing__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.services-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    align-items: stretch;
}

/* Design Pricing - Cercles + Colonnes */

/* Rangée des cercles en haut */
.pricing-circles-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.pricing-circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-circle-card__orb {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-circle-card__ring {
    position: absolute;
    inset: -10px;
    border: 2px dashed var(--ha-gray-300);
    border-radius: 50%;
    animation: rotateRing 25s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pricing-circle-card__inner {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ha-blue-deep) 0%, #1a4a6e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-md);
    box-shadow: 0 15px 40px rgba(26, 58, 92, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-circle-card:hover .pricing-circle-card__inner {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(26, 58, 92, 0.45);
}

.pricing-circle-card__inner h3 {
    color: white;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}

.pricing-circle-card__inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
    line-height: 1.4;
    margin: 0;
}

.pricing-circle-card--featured .pricing-circle-card__orb {
    width: 200px;
    height: 200px;
}

.pricing-circle-card--featured .pricing-circle-card__inner {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--ha-orange) 0%, #ff8c42 100%);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.pricing-circle-card--featured .pricing-circle-card__ring {
    border-color: var(--ha-orange);
    border-style: solid;
}

.pricing-circle-card__star {
    position: absolute;
    top: -5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: var(--ha-blue-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

/* Grille des caractéristiques en colonnes */
.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.pricing-features-column {
    background: white;
    border-radius: 16px;
    padding: var(--space-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--ha-gray-100);
    transition: all 0.3s ease;
}

.pricing-features-column:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing-features-column__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--ha-gray-100);
}

.pricing-features-column__number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--ha-orange);
    line-height: 1;
}

.pricing-features-column__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ha-blue-deep);
}

.pricing-features-column__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
}

.pricing-features-column__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--ha-gray-700);
    border-bottom: 1px solid var(--ha-gray-50);
}

.pricing-features-column__list li:last-child {
    border-bottom: none;
}

.pricing-features-column__list svg {
    width: 18px;
    height: 18px;
    stroke: var(--ha-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features-column__list span {
    flex: 1;
    line-height: 1.5;
}

.pricing-features-column__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--ha-blue-deep);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-features-column__btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.pricing-features-column__btn:hover {
    background: var(--ha-orange);
}

.pricing-features-column__btn:hover svg {
    transform: translateX(4px);
}

/* Colonne featured */
.pricing-features-column:nth-child(2) {
    border-color: var(--ha-orange);
    border-width: 2px;
}

.pricing-features-column:nth-child(2) .pricing-features-column__btn {
    background: var(--ha-orange);
}

.pricing-features-column:nth-child(2) .pricing-features-column__btn:hover {
    background: #e55d00;
}

@media (max-width: 992px) {
    .pricing-circles-row {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }
    
    .pricing-features-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    position: relative;
    background: var(--ha-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: all var(--duration-normal) ease;
    border: 2px solid transparent;
}

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

.pricing-card--featured {
    border-color: var(--ha-orange);
    transform: scale(1.05);
    z-index: 1;
}

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

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-xs) var(--space-lg);
    background: var(--ha-orange);
    color: var(--ha-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-card__header {
    text-align: center;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--ha-gray-100);
    margin-bottom: var(--space-xl);
}

.pricing-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ha-blue-deep);
    margin-bottom: var(--space-md);
}

.pricing-card__price {
    margin-bottom: var(--space-md);
}

.pricing-card__price .price-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ha-orange);
}

.pricing-card__price .price-period {
    font-size: 1rem;
    color: var(--ha-gray-500);
}

.pricing-card__description {
    font-size: 0.9375rem;
    color: var(--ha-gray-600);
}

.pricing-card__body {
    flex: 1;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--ha-gray-700);
}

.pricing-card__features svg {
    width: 20px;
    height: 20px;
    color: var(--ha-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card__footer {
    margin-top: var(--space-xl);
    text-align: center;
}

.pricing-card__footer .btn-premium {
    width: 100%;
    justify-content: center;
}

.services-pricing__note {
    text-align: center;
    margin-top: var(--space-2xl);
    font-size: 0.875rem;
    color: var(--ha-gray-500);
}

/* SERVICES COMPARISON */
.services-comparison {
    padding: var(--space-5xl) 0;
    background: var(--ha-white);
}

.services-comparison__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.services-comparison__table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.services-comparison__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--ha-white);
}

.services-comparison__table th,
.services-comparison__table td {
    padding: var(--space-lg) var(--space-xl);
    text-align: center;
    border-bottom: 1px solid var(--ha-gray-100);
}

.comparison-header {
    background: var(--ha-blue-deep);
    color: var(--ha-white);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}

.comparison-header--criteria {
    text-align: left;
    background: var(--ha-gray-800);
}

.comparison-criteria {
    text-align: left;
    font-weight: 600;
    color: var(--ha-gray-700);
}

.comparison-value {
    font-size: 0.9375rem;
    color: var(--ha-gray-600);
}

.comparison-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--ha-orange-light);
    border-radius: 50%;
}

.comparison-check svg {
    width: 16px;
    height: 16px;
    color: var(--ha-orange);
}

.comparison-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--ha-gray-100);
    border-radius: 50%;
}

.comparison-cross svg {
    width: 14px;
    height: 14px;
    color: var(--ha-gray-400);
}

/* SERVICES CTA */
.services-cta {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.services-cta--gradient {
    background: linear-gradient(135deg, var(--ha-blue-deep) 0%, #1a3a5c 50%, var(--ha-orange) 100%);
}

.services-cta--image .services-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.services-cta--image .services-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.85);
}

.services-cta .container-premium {
    position: relative;
    z-index: 1;
}

.services-cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--ha-white);
    margin-bottom: var(--space-lg);
}

.services-cta__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.services-cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.services-cta__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--ha-orange);
    flex-shrink: 0;
}

.trust-item__text {
    white-space: nowrap;
}

/* Animation des éléments de confiance */
.trust-item--animated {
    opacity: 0;
    transform: scale(2) translateY(20px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-item--animated.trust-item--visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.trust-item--animated[data-trust-index="1"] {
    transition-delay: 0s;
}

.trust-item--animated[data-trust-index="2"] {
    transition-delay: 0.4s;
}

.trust-item--animated[data-trust-index="3"] {
    transition-delay: 0.8s;
}

/* SERVICES RESPONSIVE */
@media (max-width: 1200px) {
    .services-showcase__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card--featured {
        transform: none;
    }
    
    .pricing-card--featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 992px) {
    .services-hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-hero__stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .services-hero__description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-featured__grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .services-featured--gauche .services-featured__visual {
        order: 0;
    }
    
    .services-process--horizontal .services-process__timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .services-process--horizontal .process-step {
        flex-direction: row;
        text-align: left;
        width: 100%;
        max-width: 500px;
    }
    
    .services-process--horizontal .process-step__connector {
        flex-direction: column;
        margin-bottom: 0;
        margin-right: var(--space-xl);
    }
    
    .services-process--horizontal .process-step__line {
        width: 3px;
        height: 100%;
        top: 70px;
        left: 35px;
    }
    
    .services-process--horizontal .process-step__content {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .services-showcase__grid {
        grid-template-columns: 1fr;
    }
    
    .services-pricing__grid {
        grid-template-columns: 1fr;
    }
    
    .services-hero__stats {
        flex-direction: column;
    }
    
    .services-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-featured__image-secondary {
        display: none;
    }
}

@media (max-width: 576px) {
    .services-hero {
        min-height: 70vh;
    }
    
    .process-step__dot {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .services-comparison__table th,
    .services-comparison__table td {
        padding: var(--space-md);
        font-size: 0.875rem;
    }
}

/* ============================================
   SERVICES SHOWCASE - Layout Horizontal
   ============================================ */

.services-showcase__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4xl);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl);
    background: var(--ha-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-row--reverse {
    direction: rtl;
}

.service-row--reverse > * {
    direction: ltr;
}

.service-row__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.service-row__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-row__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--ha-blue-deep);
    border-radius: 12px;
    box-shadow: none;
}

.service-row__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-row__icon--svg svg {
    width: 40px;
    height: 40px;
    stroke: var(--ha-blue-deep);
}

.service-row__number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 107, 0, 0.25);
    line-height: 1;
}

.service-row__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ha-blue-deep);
    margin: 0;
}

.service-row__description {
    font-size: 1.1rem;
    color: var(--ha-gray);
    line-height: 1.7;
    margin: 0;
}

.service-row__features {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.service-row__features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.95rem;
    color: var(--ha-gray-dark);
}

.service-row__features .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: 2px solid var(--ha-blue-deep);
    border-radius: 8px;
    background: transparent;
}

.service-row__features .feature-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.service-row__features .feature-text {
    font-weight: 500;
}

.service-row__features svg {
    width: 22px;
    height: 22px;
    stroke: var(--ha-orange);
    flex-shrink: 0;
}


.service-row--vert .service-row__features svg {
    stroke: #10b981;
}

.service-row__cta {
    margin-top: var(--space-md);
}

.service-row__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.service-row:hover .service-row__image img {
    transform: scale(1.05);
}

.service-row__image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
}

.service-row__image-placeholder img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    opacity: 0.6;
}

.service-row__image-placeholder svg {
    width: 100px;
    height: 100px;
    stroke: var(--ha-gray-light);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 992px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .service-row--reverse {
        direction: ltr;
    }
    
    .service-row__image {
        order: -1;
    }
    
    .service-row__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-row {
        padding: var(--space-xl);
    }
    
    .service-row__title {
        font-size: 1.5rem;
    }
    
    .service-row__icon {
        width: 60px;
        height: 60px;
    }
    
    .service-row__number {
        font-size: 2.5rem;
    }
}

/* Service Carousel */
.service-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.service-carousel__slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.service-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.service-carousel__slide--active {
    opacity: 1;
}

.service-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-carousel__dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.service-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.service-carousel__dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.service-carousel__dot--active {
    background: var(--ha-orange);
    transform: scale(1.2);
}

/* ============================================
   BOUTIQUE PREMIUM - Vitrine Extraordinaire
   ============================================ */

/* Hero Boutique */
.boutique-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--ha-dark);
}

.boutique-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.boutique-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boutique-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.9) 0%,
        rgba(10, 22, 40, 0.7) 50%,
        rgba(10, 22, 40, 0.8) 100%
    );
    z-index: 1;
}

.boutique-hero .container-premium {
    position: relative;
    z-index: 2;
}

.boutique-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-lg);
}

.boutique-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--ha-white);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.boutique-hero__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
}

.boutique-hero__stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.boutique-hero__stat {
    text-align: center;
}

.boutique-hero__stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--ha-orange);
    line-height: 1;
}

.boutique-hero__stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
}

/* Catégories Boutique - Style Mandarine */
.boutique-categories {
    padding: var(--space-sm) 0;
    background: var(--ha-white);
    border-bottom: 1px solid #eee;
}

.boutique-categories__header {
    display: none;
}

.boutique-categories__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    padding: 0;
}

.boutique-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: var(--space-sm);
}

.boutique-category-card:hover {
    transform: translateY(-3px);
}

.boutique-category-card__image {
    display: none;
}

.boutique-category-card__image img {
    display: none;
}

.boutique-category-card:hover .boutique-category-card__image img {
    display: none;
}

.boutique-category-card__overlay {
    display: none;
}

.boutique-category-card:hover .boutique-category-card__overlay {
    display: none;
}

.boutique-category-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    text-align: center;
}

.boutique-category-card:hover .boutique-category-card__content {
    transform: none;
}

.boutique-category-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: -1;
    background: none;
    border-radius: 0;
}

.boutique-category-card:hover .boutique-category-card__icon {
    transform: scale(1.1);
}

.boutique-category-card__icon img {
    width: 70px !important;
    height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    filter: none;
    object-fit: contain;
}

.boutique-category-card__title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ha-orange);
    margin-bottom: 0;
    white-space: nowrap;
    line-height: 1.2;
}

.boutique-category-card__title span {
    display: block;
    color: var(--ha-blue-primary);
}

.boutique-category-card__description {
    display: none;
}

.boutique-category-card:hover .boutique-category-card__description {
    display: none;
}

.boutique-category-card__cta {
    display: none;
}

.boutique-category-card:hover .boutique-category-card__cta {
    display: none;
}

.boutique-category-card__cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.boutique-category-card:hover .boutique-category-card__cta svg {
    transform: translateX(5px);
}

/* ============================================
   BOUTIQUE - Nouveau Design Style Catalogue
   ============================================ */

/* Vitrine Produits */
.boutique-vitrine {
    padding: var(--space-2xl) 0;
    background: #fff;
}

/* Navigation Catégories en haut */
.boutique-categories-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-2xl);
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.boutique-cat-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.boutique-cat-link:hover {
    background: rgba(255, 107, 53, 0.1);
}

.boutique-cat-link.active {
    color: var(--ha-orange);
}

.boutique-cat-link.active .boutique-cat-link__name {
    color: var(--ha-orange);
    font-weight: 700;
}

.boutique-cat-link__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boutique-cat-link__icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--ha-orange);
}

.boutique-cat-link__icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.boutique-cat-link__name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ha-dark);
    text-align: center;
    transition: color 0.3s ease;
}

.boutique-cat-link:hover .boutique-cat-link__name {
    color: var(--ha-orange);
}

/* Grille de produits simple */
.boutique-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-lg);
}

/* Item Produit Simple - Style Mandarine */
.product-item {
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.product-item:hover {
    z-index: 10;
}

.product-item__link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-item:hover .product-item__link {
    border-color: var(--ha-orange);
    box-shadow: 0 8px 30px rgba(232, 119, 34, 0.2);
    transform: scale(1.05);
}

.product-item__image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 0;
}

.product-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-item__no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.product-item__no-image svg {
    width: 60px;
    height: 60px;
    stroke: #ccc;
}

.product-item__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: var(--ha-orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

/* Info au survol - Style Mandarine */
.product-item__hover-info {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    padding: 0 5px;
}

.product-item:hover .product-item__hover-info {
    max-height: 200px;
    padding: 15px 5px 5px;
}

.product-item__hover-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.product-item__ref {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

.product-item__dims,
.product-item__spec {
    font-size: 0.75rem;
    color: #666;
}

/* Nom du produit */
.product-item__info {
    text-align: center;
    padding: var(--space-sm) 0 var(--space-xs);
}

.product-item__name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ha-orange);
    margin: 0;
    line-height: 1.3;
}

/* ============================================
   MODAL DETAIL PRODUIT - Style Page Complète
   ============================================ */

.product-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

.product-detail-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.product-detail-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
}

.product-detail-modal__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    background: white;
    padding: var(--space-2xl);
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.product-detail-modal.active .product-detail-modal__container {
    transform: translateY(0);
}

.product-detail-modal__close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.product-detail-modal__close:hover {
    border-color: var(--ha-orange);
    background: var(--ha-orange);
}

.product-detail-modal__close svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    transition: stroke 0.3s ease;
}

.product-detail-modal__close:hover svg {
    stroke: white;
}

/* Breadcrumb */
.product-detail__breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: #666;
    margin-bottom: var(--space-xl);
}

.product-detail__breadcrumb a {
    color: #666;
    text-decoration: none;
}

.product-detail__breadcrumb a:hover {
    color: var(--ha-orange);
}

.product-detail__breadcrumb-cat {
    color: var(--ha-orange);
    font-weight: 500;
}

/* Contenu principal */
.product-detail-modal__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

/* Galerie */
.product-detail__gallery {
    position: sticky;
    top: 20px;
}

.product-detail__main-image-container {
    position: relative;
    aspect-ratio: 1;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.product-detail__main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

.product-detail__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #1a3a5c;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.product-detail__nav--prev {
    left: 0;
}

.product-detail__nav--next {
    right: 0;
}

.product-detail__nav:hover {
    background: #0d2840;
}

.product-detail__nav svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.product-detail__thumbnails {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding-bottom: var(--space-sm);
}

.product-detail__thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.product-detail__thumbnails img:hover,
.product-detail__thumbnails img.active {
    opacity: 1;
    border-color: var(--ha-orange);
}

/* Infos produit */
.product-detail__info {
    padding-top: var(--space-md);
}

.product-detail__title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ha-orange);
    margin: 0 0 var(--space-md);
    line-height: 1.3;
}

.product-detail__gamme-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 10px 20px;
    background: #1a3a5c;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: var(--space-lg);
    transition: background 0.3s ease;
}

.product-detail__gamme-btn:hover {
    background: #0d2840;
}

.product-detail__ref-line {
    margin-bottom: var(--space-md);
}

.product-detail__ref {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.product-detail__dimensions {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: var(--space-lg);
}

.product-detail__description {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    text-align: justify;
}

/* Atouts */
.product-detail__atouts {
    background: rgba(26, 58, 92, 0.08);
    padding: var(--space-lg);
    border-radius: 8px;
    margin-bottom: var(--space-xl);
}

.product-detail__atouts h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 var(--space-md);
}

.product-detail__atouts ul {
    list-style: disc;
    padding-left: var(--space-lg);
    margin: 0;
}

.product-detail__atouts li {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: var(--space-xs);
}

/* Caractéristiques */
.product-detail__specs {
    margin-bottom: var(--space-xl);
}

.product-detail__specs h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 var(--space-md);
}

.product-detail__specs ul {
    list-style: disc;
    padding-left: var(--space-lg);
    margin: 0;
}

.product-detail__specs li {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: var(--space-xs);
}

/* Délai */
.product-detail__delai {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    margin-bottom: var(--space-xl);
}

/* Actions */
.product-detail__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid #eee;
}

.product-detail__share {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.product-detail__share span {
    font-size: 0.9rem;
    color: #666;
}

.share-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
}

.share-icon:hover {
    border-color: var(--ha-orange);
    color: var(--ha-orange);
}

.share-icon svg {
    width: 18px;
    height: 18px;
}

.product-detail__devis-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 12px 24px;
    background: var(--ha-orange);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.product-detail__devis-btn:hover {
    background: #e55a2b;
}

/* Image plein écran */
.product-detail__fullimage {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.product-detail__fullimage.active {
    display: flex;
}

.product-detail__fullimage img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

/* Produits similaires */
.product-detail__similar {
    padding-top: var(--space-3xl);
    border-top: 1px solid #eee;
}

.product-detail__similar h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.product-detail__similar h2::before,
.product-detail__similar h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: #ddd;
}

.product-detail__similar h2::before {
    right: calc(50% + 200px);
}

.product-detail__similar h2::after {
    left: calc(50% + 200px);
}

.product-detail__similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.similar-product {
    text-decoration: none;
}

.similar-product__image {
    aspect-ratio: 1;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.similar-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.similar-product:hover .similar-product__image img {
    transform: scale(1.05);
}

.similar-product__name {
    font-size: 0.9rem;
    color: var(--ha-orange);
    text-align: center;
}

/* ============================================
   GALERIE D'UTILISATION - Style Mandarine
   ============================================ */

.product-detail__usage-gallery {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl) 0;
    background: #f8f8f8;
    border-radius: 12px;
}

.product-detail__usage-gallery-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    max-width: 100%;
    overflow: hidden;
}

.product-detail__usage-slider {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-md);
    flex: 1;
}

.product-detail__usage-slider::-webkit-scrollbar {
    display: none;
}

.product-detail__usage-slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.product-detail__usage-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-detail__usage-slide:hover img {
    transform: scale(1.02);
}

.product-detail__usage-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-detail__usage-nav:hover {
    border-color: var(--ha-orange);
    background: var(--ha-orange);
}

.product-detail__usage-nav svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    transition: stroke 0.3s ease;
}

.product-detail__usage-nav:hover svg {
    stroke: white;
}

.product-detail__usage-nav--prev {
    left: 10px;
}

.product-detail__usage-nav--next {
    right: 10px;
}

/* ============================================
   PAGE DETAIL PRODUIT (vraie page avec header/footer)
   ============================================ */

.produit-detail-page {
    padding: var(--space-2xl) 0;
    min-height: 60vh;
}

.produit-detail-page .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Breadcrumb */
.produit-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.produit-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.produit-breadcrumb a:hover {
    color: var(--ha-orange);
}

.produit-breadcrumb span {
    color: #999;
}

.produit-breadcrumb__current {
    color: var(--ha-blue-primary);
    font-weight: 500;
}

/* Contenu principal */
.produit-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

/* Galerie */
.produit-detail-gallery {
    position: sticky;
    top: 100px;
    align-self: start;
}

.produit-detail-gallery__main {
    position: relative;
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    margin-bottom: var(--space-md);
}

.produit-detail-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

.produit-detail-gallery__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 1.1rem;
}

.produit-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #1a3a5c;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.produit-gallery-nav:hover {
    background: #0d2840;
}

.produit-gallery-nav svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.produit-gallery-nav--prev {
    left: 15px;
}

.produit-gallery-nav--next {
    right: 15px;
}

.produit-detail-gallery__thumbs {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding: var(--space-xs) 0;
}

.produit-detail-gallery__thumbs .thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.produit-detail-gallery__thumbs .thumb:hover {
    border-color: #ddd;
}

.produit-detail-gallery__thumbs .thumb.active {
    border-color: var(--ha-orange);
}

/* Infos produit */
.produit-detail-info__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ha-orange);
    margin: 0 0 var(--space-md);
    line-height: 1.2;
}

.produit-detail-info__gamme-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 12px 24px;
    background: #1a3a5c;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: var(--space-lg);
    transition: background 0.3s ease;
}

.produit-detail-info__gamme-btn:hover {
    background: #0d2840;
    color: white;
}

.produit-detail-info__ref {
    font-size: 1rem;
    color: #555;
    margin-bottom: var(--space-md);
}

.produit-detail-info__dimensions {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: var(--space-lg);
}

.produit-detail-info__description {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    text-align: justify;
}

.produit-detail-info__description p {
    margin-bottom: var(--space-md);
}

/* Atouts */
.produit-detail-info__atouts {
    background: rgba(26, 58, 92, 0.08);
    padding: var(--space-lg);
    border-radius: 8px;
    margin-bottom: var(--space-xl);
}

.produit-detail-info__atouts h3,
.produit-detail-info__specs h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 var(--space-md);
}

.produit-detail-info__atouts ul,
.produit-detail-info__specs ul {
    list-style: disc;
    padding-left: var(--space-lg);
    margin: 0;
}

.produit-detail-info__atouts li,
.produit-detail-info__specs li {
    padding: var(--space-xs) 0;
    color: #444;
}

/* Caractéristiques */
.produit-detail-info__specs {
    margin-bottom: var(--space-xl);
}

/* Délai */
.produit-detail-info__delai {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: #f5f5f5;
    border-radius: 6px;
}

/* Prix */
.produit-detail-info__prix {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ha-orange);
    margin-bottom: var(--space-xl);
}

.produit-detail-info__prix .mention {
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
    margin-left: var(--space-sm);
}

/* Actions */
.produit-detail-info__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid #eee;
}

.produit-detail-info__share {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: #666;
    font-size: 0.9rem;
}

.produit-detail-info__share .share-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    color: #555;
    transition: all 0.3s ease;
}

.produit-detail-info__share .share-icon:hover {
    background: var(--ha-orange);
    color: white;
}

.produit-detail-info__share .share-icon svg {
    width: 18px;
    height: 18px;
}

.produit-detail-info__devis-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 14px 28px;
    background: var(--ha-orange);
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.produit-detail-info__devis-btn:hover {
    background: #d35400;
    color: white;
}

/* Galerie d'utilisation */
.produit-usage-gallery {
    margin: var(--space-3xl) 0;
    padding: var(--space-2xl);
    background: #f8f8f8;
    border-radius: 12px;
}

.produit-usage-gallery__inner {
    position: relative;
    display: flex;
    align-items: center;
}

.produit-usage-gallery__slider {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: var(--space-md);
    flex: 1;
}

.produit-usage-gallery__slider::-webkit-scrollbar {
    display: none;
}

.produit-usage-gallery__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.produit-usage-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produit-usage-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.produit-usage-nav:hover {
    border-color: var(--ha-orange);
    background: var(--ha-orange);
}

.produit-usage-nav svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    transition: stroke 0.3s ease;
}

.produit-usage-nav:hover svg {
    stroke: white;
}

.produit-usage-nav--prev {
    left: -25px;
}

.produit-usage-nav--next {
    right: -25px;
}

/* Produits similaires avec défilement continu */
.produit-similar {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid #eee;
    overflow: hidden;
}

.produit-similar h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: var(--space-2xl);
}

.produit-similar__carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.produit-similar__carousel {
    display: flex;
    gap: var(--space-lg);
    animation: scrollCarousel 30s linear infinite;
    width: max-content;
}

.produit-similar__carousel:hover {
    animation-play-state: paused;
}

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

.produit-similar__item {
    flex: 0 0 auto;
    width: 220px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.produit-similar__image {
    aspect-ratio: 1;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.produit-similar__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.produit-similar__item:hover .produit-similar__image img {
    transform: scale(1.05);
}

.produit-similar__name {
    font-size: 0.9rem;
    color: var(--ha-orange);
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hero Boutique */
.boutique-hero {
    text-align: center;
    padding: var(--space-3xl) 0;
    margin-bottom: var(--space-2xl);
}

.boutique-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ha-blue-primary);
    margin-bottom: var(--space-md);
}

.boutique-hero p {
    font-size: 1.1rem;
    color: #666;
}

.boutique-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-3xl);
    color: #666;
}

/* Responsive page détail */
@media (max-width: 1024px) {
    .produit-detail-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .produit-detail-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .produit-detail-info__title {
        font-size: 1.6rem;
    }
    
    .produit-detail-info__actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .produit-detail-info__devis-btn {
        justify-content: center;
    }
    
    .produit-usage-nav--prev {
        left: 10px;
    }
    
    .produit-usage-nav--next {
        right: 10px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .product-detail-modal__content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .product-detail__gallery {
        position: static;
    }
    
    .product-detail__similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .boutique-categories-nav {
        gap: var(--space-md);
    }
    
    .boutique-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .product-detail-modal__container {
        padding: var(--space-lg);
    }
    
    .product-detail__actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-detail__similar h2::before,
    .product-detail__similar h2::after {
        display: none;
    }
}

.produit-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.produit-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ha-dark);
}

.produit-card__price-mention {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ha-orange);
}

.produit-card__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ha-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.produit-card__cta:hover {
    color: var(--ha-orange);
}

.produit-card__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.produit-card__cta:hover svg {
    transform: translateX(4px);
}

/* Modal Quickview */
.produit-quickview-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.produit-quickview-modal.active {
    opacity: 1;
    visibility: visible;
}

.produit-quickview-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
}

.produit-quickview-modal__content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    background: var(--ha-white);
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.produit-quickview-modal.active .produit-quickview-modal__content {
    transform: scale(1) translateY(0);
}

.produit-quickview-modal__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 48px;
    height: 48px;
    background: var(--ha-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.produit-quickview-modal__close:hover {
    background: var(--ha-orange);
}

.produit-quickview-modal__close svg {
    width: 24px;
    height: 24px;
    stroke: var(--ha-dark);
    transition: stroke 0.3s ease;
}

.produit-quickview-modal__close:hover svg {
    stroke: var(--ha-white);
}

.produit-quickview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow: hidden;
}

.produit-quickview__gallery {
    background: #f5f5f5;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.produit-quickview__main-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
}

.produit-quickview__main-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.produit-quickview__thumbnails {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding-bottom: var(--space-sm);
}

.produit-quickview__thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.produit-quickview__thumbnails img:hover,
.produit-quickview__thumbnails img.active {
    opacity: 1;
    border-color: var(--ha-orange);
}

.produit-quickview__info {
    padding: var(--space-2xl);
    overflow-y: auto;
    max-height: 90vh;
}

.produit-quickview__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ha-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.produit-quickview__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ha-dark);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.produit-quickview__description {
    font-size: 1rem;
    color: var(--ha-gray);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.produit-quickview__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: #f8f9fa;
    border-radius: 16px;
}

.produit-quickview__spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.produit-quickview__spec-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ha-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.produit-quickview__spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-dark);
}

.produit-quickview__materials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.produit-quickview__material {
    padding: var(--space-xs) var(--space-md);
    background: rgba(27, 58, 107, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ha-blue);
}

.produit-quickview__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ha-dark);
    margin-bottom: var(--space-xl);
}

.produit-quickview__actions {
    display: flex;
    gap: var(--space-md);
}

/* Détail Produit */
.boutique-produit-detail {
    padding: var(--space-4xl) 0;
    background: var(--ha-white);
}

.produit-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.produit-detail__gallery {
    position: sticky;
    top: 120px;
}

.produit-detail__main-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: var(--space-md);
}

.produit-detail__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produit-detail__zoom {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 48px;
    height: 48px;
    background: var(--ha-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.produit-detail__zoom:hover {
    background: var(--ha-orange);
}

.produit-detail__zoom svg {
    width: 24px;
    height: 24px;
    stroke: var(--ha-dark);
    transition: stroke 0.3s ease;
}

.produit-detail__zoom:hover svg {
    stroke: var(--ha-white);
}

.produit-detail__thumbnails {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding-bottom: var(--space-sm);
}

.produit-detail__thumb {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
}

.produit-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produit-detail__thumb:hover,
.produit-detail__thumb.active {
    border-color: var(--ha-orange);
}

.produit-detail__info {
    padding-top: var(--space-lg);
}

.produit-detail__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.produit-detail__category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ha-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.produit-detail__badge {
    padding: var(--space-xs) var(--space-sm);
    background: var(--ha-orange);
    color: var(--ha-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}

.produit-detail__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ha-dark);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.produit-detail__ref {
    font-size: 0.875rem;
    color: var(--ha-gray);
    margin-bottom: var(--space-lg);
    display: block;
}

.produit-detail__accroche {
    font-size: 1.25rem;
    color: var(--ha-dark);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.produit-detail__description {
    font-size: 1rem;
    color: var(--ha-gray);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.produit-detail__section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ha-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.produit-detail__specs {
    margin-bottom: var(--space-2xl);
}

.produit-detail__specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.produit-detail__spec {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: #f8f9fa;
    border-radius: 12px;
}

.produit-detail__spec-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.produit-detail__spec-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.produit-detail__spec-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ha-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.produit-detail__spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-dark);
}

.produit-detail__materials {
    margin-bottom: var(--space-2xl);
}

.produit-detail__materials-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.produit-detail__material {
    padding: var(--space-sm) var(--space-md);
    background: rgba(27, 58, 107, 0.08);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ha-blue);
}

.produit-detail__finitions {
    margin-bottom: var(--space-2xl);
}

.produit-detail__finitions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.produit-detail__finition {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.produit-detail__finition:hover {
    border-color: var(--ha-orange);
    background: var(--ha-white);
}

.produit-detail__finition-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.produit-detail__finition-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.produit-detail__finition-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ha-dark);
}

.produit-detail__finition-desc {
    font-size: 0.8rem;
    color: var(--ha-gray);
}

.produit-detail__finition-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ha-orange);
}

.produit-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    padding: var(--space-lg);
    background: #f8f9fa;
    border-radius: 16px;
}

.produit-detail__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--ha-dark);
}

.produit-detail__meta-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--ha-orange);
}

.produit-detail__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 2px solid #f0f0f0;
}

.produit-detail__price-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.produit-detail__price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ha-dark);
}

.produit-detail__price-mention {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ha-orange);
}

.produit-detail__actions {
    display: flex;
    gap: var(--space-md);
}

/* Produits similaires */
.produit-detail__similar {
    margin-top: var(--space-4xl);
    padding-top: var(--space-4xl);
    border-top: 1px solid #f0f0f0;
}

.produit-detail__similar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ha-dark);
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.produit-detail__similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.produit-similar-card {
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f9fa;
    transition: all 0.4s ease;
}

.produit-similar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.produit-similar-card__image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.produit-similar-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.produit-similar-card:hover .produit-similar-card__image img {
    transform: scale(1.05);
}

.produit-similar-card__content {
    padding: var(--space-md);
}

.produit-similar-card__category {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ha-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.produit-similar-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ha-dark);
    margin-top: var(--space-xs);
}

/* Processus Boutique */
.boutique-process {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--ha-dark) 0%, #1B3A6B 100%);
}

.boutique-process__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
}

.boutique-process__header .section-titre {
    color: var(--ha-white);
}

.boutique-process__header .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.boutique-process__timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
}

.boutique-process__step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 0 var(--space-lg);
}

.boutique-process__step-number {
    width: 70px;
    height: 70px;
    background: var(--ha-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.boutique-process__step-number span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ha-white);
}

.boutique-process__step-content {
    position: relative;
    z-index: 2;
}

.boutique-process__step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.boutique-process__step-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.boutique-process__step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ha-white);
    margin-bottom: var(--space-sm);
}

.boutique-process__step-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.boutique-process__step-duration {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ha-orange);
}

.boutique-process__step-duration svg {
    width: 16px;
    height: 16px;
}

.boutique-process__connector {
    position: absolute;
    top: 35px;
    right: -30px;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.boutique-process__connector svg {
    width: 24px;
    height: 24px;
}

/* CTA Boutique */
.boutique-cta {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.boutique-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.boutique-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(27, 58, 107, 0.9) 100%
    );
}

.boutique-cta .container-premium {
    position: relative;
    z-index: 2;
}

.boutique-cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.boutique-cta__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--ha-white);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.boutique-cta__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
}

.boutique-cta__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.boutique-cta__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.boutique-cta__trust-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--ha-orange);
}

.boutique-cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Responsive Boutique */
@media (max-width: 1024px) {
    .produit-detail {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .produit-detail__gallery {
        position: static;
    }
    
    .produit-detail__similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .produit-quickview {
        grid-template-columns: 1fr;
    }
    
    .produit-quickview__gallery {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .boutique-hero {
        min-height: 60vh;
    }
    
    .boutique-hero__stats {
        gap: var(--space-xl);
    }
    
    .boutique-hero__stat-value {
        font-size: 2rem;
    }
    
    .boutique-categories__grid {
        grid-template-columns: 1fr;
    }
    
    .boutique-category-card {
        height: 300px;
    }
    
    .boutique-vitrine__grid {
        grid-template-columns: 1fr;
    }
    
    .produit-detail__specs-grid,
    .produit-detail__finitions-grid {
        grid-template-columns: 1fr;
    }
    
    .produit-detail__footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .produit-detail__similar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .boutique-process__timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .boutique-process__step {
        max-width: 100%;
    }
    
    .boutique-process__connector {
        display: none;
    }
}


/* ============================================
   PAGE RÉALISATIONS - SHOWCASE ULTRA PREMIUM
   ============================================ */

.realisations-showcase {
    position: relative;
    background: var(--ha-gray-50, #f8fafc);
    overflow: hidden;
}

/* Background animé */
.realisations-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.realisations-bg__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(180deg, var(--ha-blue-deep, #0a1628) 0%, transparent 100%);
}

.realisations-bg__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(27, 58, 107, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 58, 107, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Header Section */
.realisations-header {
    position: relative;
    z-index: 1;
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--ha-blue-deep, #0a1628) 0%, var(--ha-blue-primary, #1B3A6B) 100%);
}

.realisations-header__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.realisations-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--ha-orange, #ff6b35);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.realisations-badge svg {
    opacity: 0.8;
}

.realisations-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.realisations-title .title-line {
    display: block;
}

.realisations-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Statistiques */
.realisations-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 0 1.5rem;
}

.stat-value {
    display: block;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ha-orange, #ff6b35);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Filtres */
.realisations-filters-wrapper {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.realisations-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 2px solid var(--ha-gray-200, #e5e7eb);
    border-radius: 50px;
    color: var(--ha-gray-600, #4b5563);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn svg {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--ha-blue-primary, #1B3A6B);
    color: var(--ha-blue-primary, #1B3A6B);
}

.filter-btn:hover svg {
    opacity: 1;
}

.filter-btn.active {
    background: var(--ha-blue-primary, #1B3A6B);
    border-color: var(--ha-blue-primary, #1B3A6B);
    color: #fff;
}

.filter-btn.active svg {
    opacity: 1;
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Grille des réalisations */
.realisations-grid-wrapper {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Carte Réalisation */
.realisation-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.realisation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27, 58, 107, 0.15);
}

/* Lien overlay cliquable sur toute la carte */
.realisation-card__link-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
}

.realisation-card__link-overlay:focus {
    outline: 2px solid var(--ha-orange);
    outline-offset: 2px;
}

.realisation-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

/* Image de la carte */
.realisation-card__image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.realisation-card--featured .realisation-card__image {
    aspect-ratio: 16/9;
}

.realisation-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.realisation-card__image .img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.realisation-card:hover .realisation-card__image .img-main {
    transform: scale(1.05);
}

.realisation-card:hover .realisation-card__image .img-hover {
    opacity: 1;
}

/* Overlay de la carte */
.realisation-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.9) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.realisation-card:hover .realisation-card__overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.realisation-card:hover .overlay-content {
    transform: translateY(0);
}

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

.service-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
}

.btn-view-project {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
    padding: 0.875rem 1.5rem;
    background: var(--ha-orange, #ff6b35);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-project:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

/* Badge vedette */
.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--ha-orange, #ff6b35);
    border-radius: 50px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

/* Contenu de la carte */
.realisation-card__content {
    padding: 1.5rem;
}

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

.sector-badge {
    padding: 0.25rem 0.75rem;
    background: var(--ha-blue-light, #e8f4fc);
    color: var(--ha-blue-primary, #1B3A6B);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sector-badge--banque { background: #fef3c7; color: #92400e; }
.sector-badge--etat { background: #dbeafe; color: #1e40af; }
.sector-badge--energie { background: #d1fae5; color: #065f46; }
.sector-badge--telecom { background: #ede9fe; color: #5b21b6; }
.sector-badge--sante { background: #fce7f3; color: #9d174d; }
.sector-badge--education { background: #ffedd5; color: #9a3412; }

.year-badge {
    padding: 0.25rem 0.5rem;
    background: var(--ha-gray-100, #f3f4f6);
    color: var(--ha-gray-600, #4b5563);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.realisation-card__title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ha-blue-deep, #0a1628);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.realisation-card--featured .realisation-card__title {
    font-size: 1.75rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.client-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
    background: var(--ha-gray-100, #f3f4f6);
    padding: 4px;
}

.client-name {
    font-size: 0.875rem;
    color: var(--ha-gray-600, #4b5563);
    font-weight: 500;
}

.realisation-card__desc {
    font-size: 0.9375rem;
    color: var(--ha-gray-600, #4b5563);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Résultats preview */
.results-preview {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ha-gray-200, #e5e7eb);
}

.result-item {
    flex: 1;
}

.result-value {
    display: block;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ha-orange, #ff6b35);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.75rem;
    color: var(--ha-gray-500, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Section */
.realisations-cta {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--ha-blue-primary, #1B3A6B) 0%, var(--ha-blue-deep, #0a1628) 100%);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-text h3 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.btn-cta-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--ha-orange, #ff6b35);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta-premium:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Modal Projet */
.project-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.project-modal.active {
    display: flex;
}

.project-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
}

.project-modal__container {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    width: 90%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    animation: modalSlideIn 0.4s ease;
}

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

.project-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.project-modal__close:hover {
    background: var(--ha-orange, #ff6b35);
}

.project-modal__content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Responsive */
@media (max-width: 1200px) {
    .realisations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .realisation-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .realisations-header {
        padding: 80px 0 40px;
    }
    
    .realisations-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .stat-divider {
        display: none;
    }
    
    .realisations-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .filter-btn span:not(.filter-count) {
        display: none;
    }
    
    .realisations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .realisation-card--featured {
        grid-column: span 1;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}
