/**
 * Sections CSS - Modulaire WordPress
 * Styles pour sections savoir-faire et cohérence globale
 * Updated 2025-01-29: Added savoir-faire section with white design
 */

/* ===================================
   LAZY LOADING IMAGES TRANSITIONS
=================================== */

img.lazy-loading {
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

img.loaded {
    opacity: 1;
}

img.error {
    opacity: 0.5;
    filter: grayscale(100%);
}

/* Placeholder pour images en cours de chargement */
img.lazy-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ===================================
   ACCESSIBILITÉ AMÉLIORÉE
=================================== */

/* Skip link supprimé (demande utilisateur) */

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus amélioré pour navigation clavier */
.certification-card.keyboard-focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    transform: translateY(-4px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 0 0 3px rgba(161, 13, 89, 0.3);
}

/* Focus pour boutons et liens */
.btn-download-certification:focus,
.btn-read-article:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    transform: scale(1.05);
}

/* Améliorer le contraste pour les éléments interactifs */
@media (prefers-contrast: high) {
    .certification-card {
        border-color: #000;
        border-width: 2px;
    }
    
    .certification-title {
        color: #000;
        font-weight: 700;
    }
}

/* Support pour mode sombre */
@media (prefers-color-scheme: dark) {
    .certification-card {
        background: rgba(40, 40, 40, 0.95);
        border-color: rgba(255, 255, 255, 0.2);
        color: #e9ecef;
    }
    
    .certification-title {
        color: #fff;
    }
    
    .certification-description {
        color: #adb5bd;
    }
}

/* État initial pour fall-from-sky - TOUJOURS actif */
.fall-from-sky {
    animation: none;
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
    will-change: transform, opacity;
}

/* Animation réduite pour ceux qui préfèrent */
@media (prefers-reduced-motion: reduce) {
    .certification-card,
    .youtube-placeholder,
    img.lazy-loading {
        transition: none;
        animation: none;
    }
    
    .fall-from-sky.animate-in {
        animation: none !important;
        opacity: 1;
        transform: translateY(0) scale(1);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
}

/* ===================================
   PALETTE GLOBALE BLANCHE SOBRE
=================================== */
:root {
    /* Nouveaux backgrounds sobres */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #fafbfc;
    
    /* Textes sobres */
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #6c757d;
    
    /* Bordures subtiles */
    --border-light: rgba(0, 0, 0, 0.08);
    --border-medium: rgba(0, 0, 0, 0.12);
    
    /* Glows contextuels */
    --glow-imprifrance: rgba(41, 98, 255, 0.3);
    --glow-edito: rgba(161, 13, 89, 0.3);
    --glow-imprimvert: rgba(76, 175, 80, 0.3);
    --glow-download: rgba(156, 39, 176, 0.25);
}

/* ===================================
   MODIFICATIONS GLOBALES SECTIONS
=================================== */

/* Nouvelles sections blanches sobres */
.prestations-section,
.savoir-faire-section,
.auto-editeur-section,
.temoignages-section,
.google-reviews-section,
.devis-section {
    color: var(--text-primary);
}

/* Alternance backgrounds selon enchaînement défini - CORRIGÉ */
.prestations-section {
    background: var(--bg-secondary); /* Blanc cassé */
}

.auto-editeur-section {
    background: var(--bg-primary); /* Blanc pur */
}

.savoir-faire-section {
    background: var(--bg-secondary); /* Blanc cassé */
    position: relative;
}

.temoignages-section {
    background: var(--bg-primary); /* Blanc pur */
}

.devis-section {
    background: var(--bg-secondary); /* Blanc cassé */
    padding-bottom: 2rem;
}

/* Ajustements section devis - fond blanc cassé */
.devis-section .section-title {
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.devis-section .section-subtitle {
    color: #4a5568;
    font-weight: 500;
    opacity: 0.9;
}

/* Texture Copy-Média très subtile */
.savoir-faire-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 70% 20%, rgba(161, 13, 89, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(255, 107, 179, 0.015) 0%, transparent 60%);
    pointer-events: none;
}

/* ===================================
   SECTION SAVOIR-FAIRE - HEADER
=================================== */
.savoir-faire-section {
    padding: 100px 0;
    position: relative;
}

.savoir-faire__header {
    padding-bottom: 80px;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    padding-right: 20px;
}

/* Nouveau layout centré élégant */
.header-main-title {
    text-align: center;
    margin-bottom: 50px;
}

.header-subtitle-elegant {
    margin-bottom: 40px;
}

.subtitle-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.subtitle-decoration-left,
.subtitle-decoration-right {
    width: 80px;
    height: 2px;
    background: linear-gradient(
        90deg, 
        rgba(161, 13, 89, 0.2) 0%, 
        rgba(161, 13, 89, 0.8) 100%
    );
    position: relative;
}

.subtitle-decoration-right {
    background: linear-gradient(
        90deg, 
        rgba(161, 13, 89, 0.8) 0%, 
        rgba(161, 13, 89, 0.2) 100%
    );
}

.subtitle-decoration-left::after,
.subtitle-decoration-right::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.subtitle-decoration-left::after {
    right: -4px;
}

.subtitle-decoration-right::after {
    left: -4px;
}

.subtitle-frame .section-subtitle {
    margin: 0;
    text-align: center;
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 400px;
}

.header-signature {
    text-align: center;
}

.signature-box {
    display: inline-block;
    padding: 18px 35px;
    background: linear-gradient(135deg, rgba(161, 13, 89, 0.06) 0%, rgba(255, 107, 179, 0.03) 100%);
    border: 2px solid rgba(161, 13, 89, 0.12);
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.signature-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(161, 13, 89, 0.08) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.signature-box:hover {
    transform: translateY(-2px);
    border-color: rgba(161, 13, 89, 0.25);
    box-shadow: 0 8px 25px rgba(161, 13, 89, 0.15);
}

.signature-box:hover::before {
    opacity: 1;
}

.signature-text {
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary);
    font-style: italic;
}

.signature-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-right: 6px;
}

/* Titres section adaptés au blanc */
.savoir-faire-section .section-title {
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.savoir-faire-section .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 30px;
}

.header-tagline {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
}

.tagline-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Showcase image avec cadre élégant */
.company-showcase {
    position: relative;
}

.showcase-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-frame:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.12);
}

.company-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Overlay supprimé - plus simple et élégant */

/* ===================================
   COMPTEURS ANIMÉS
=================================== */
.savoir-faire__story {
    padding: 80px 0;
    background: rgba(248, 249, 250, 0.5);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.counter-item {
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(161, 13, 89, 0.2);
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: block;
    line-height: 1;
}

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

/* CSS compteur nettoyé - plus de logo ici */

/* ===================================
   HISTOIRE EN COLONNES
=================================== */
.story-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.story-column h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-column p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: justify;
}

/* ===================================
   CERTIFICATIONS AVEC GLOWS SPÉCIFIQUES
=================================== */
.savoir-faire__certifications {
    padding: 100px 0;
}

.savoir-faire__certifications .container {
    max-width: 1600px;
    padding: 0 40px;
}

.certifications-title {
    text-align: center;
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1450px;
    margin: 0 auto;
}

/* Base certification card */
.certification-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 38px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: transparent;
    transition: all 0.4s ease;
    z-index: -1;
}

/* ImpriFrance - Glow bleu */
.certification-card--imprifrance:hover {
    transform: translateY(-8px);
    border-color: var(--glow-imprifrance);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 30px var(--glow-imprifrance);
}

.certification-card--imprifrance:hover::before {
    background: radial-gradient(circle at center, rgba(41, 98, 255, 0.05) 0%, transparent 70%);
}

/* Imprim'Vert - Glow vert */
.certification-card--imprimvert:hover {
    transform: translateY(-8px);
    border-color: var(--glow-imprimvert);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 30px var(--glow-imprimvert);
}

.certification-card--imprimvert:hover::before {
    background: radial-gradient(circle at center, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
}

/* Édito - Glow rose Copy-Média */
.certification-card--edito:hover {
    transform: translateY(-8px);
    border-color: var(--glow-edito);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 30px var(--glow-edito);
}

.certification-card--edito:hover::before {
    background: radial-gradient(circle at center, rgba(161, 13, 89, 0.05) 0%, transparent 70%);
}

/* Fabrication Française - Glow rouge subtil français */
.certification-card--fabrication:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 30px rgba(220, 38, 38, 0.25);
}

.certification-card--fabrication:hover::before {
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.04) 0%, transparent 70%);
}

.certification-logo--fabrication {
    transition: all 0.3s ease;
    height: 70px !important;
    width: auto;
}

.certification-card--fabrication:hover .certification-logo--fabrication {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(220, 38, 38, 0.2));
}

/* Header certification */
.certification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.certification-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.certification-card:hover .certification-logo {
    transform: scale(1.05);
}

.edito-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 8px rgba(161, 13, 89, 0.3));
}

/* Badges certification - Version sobre */
.certification-badge {
    padding: 8px 14px;
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.certification-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.certification-card:hover .certification-badge::before {
    opacity: 0.2;
}

/* Badge "Depuis 2015" - Bleu sophistiqué */
.certification-badge--since {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.certification-badge--since::before {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
}

/* Badge "Certifié" - Vert élégant */
.certification-badge--certified {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(6, 95, 70, 0.3);
}

.certification-badge--certified::before {
    background: linear-gradient(135deg, #34d399 0%, #6ee7b7 100%);
}

/* Badge "PDF Disponible" - Violet moderne */
.certification-badge--download {
    background: linear-gradient(135deg, #581c87 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(88, 28, 135, 0.3);
}

.certification-badge--download::before {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
}

/* Badge "100% Français" - Rouge subtil français */
.certification-badge--fabrication {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.certification-badge--fabrication::before {
    background: linear-gradient(135deg, #f87171 0%, #fca5a5 100%);
}

/* Contenu certification */
.certification-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.certification-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 14px;
    text-align: justify;
    font-size: 0.9rem;
}

.certification-values {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: justify;
}

/* Boutons téléchargement style FAQ */
.btn-download-certification {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-medium);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-download-certification:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--glow-download);
    background: rgba(255, 255, 255, 1);
}

.btn-download-certification .btn-icon {
    font-size: 1rem;
}

/* ===================================
   ZONE MULTIMÉDIA
=================================== */
.savoir-faire__media {
    padding: 100px 0;
    background: rgba(248, 249, 250, 0.3);
    border-top: 1px solid var(--border-light);
}

.media-title {
    text-align: center;
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 60px;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.media-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(161, 13, 89, 0.2);
}

/* YouTube container */
.youtube-container {
    position: relative;
}

.youtube-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.youtube-loaded .youtube-iframe {
    opacity: 1;
}

.youtube-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(161, 13, 89, 0.05) 0%, 
        rgba(255, 107, 179, 0.03) 100%);
    border: 2px dashed rgba(161, 13, 89, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.youtube-loaded .youtube-placeholder {
    opacity: 0;
    pointer-events: none;
}

.youtube-placeholder:hover {
    background: linear-gradient(135deg, 
        rgba(161, 13, 89, 0.08) 0%, 
        rgba(255, 107, 179, 0.05) 100%);
    border-color: rgba(161, 13, 89, 0.3);
    transform: scale(1.02);
}

.youtube-play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 16px;
    box-shadow: 0 8px 25px rgba(161, 13, 89, 0.3);
    transition: all 0.3s ease;
}

.youtube-placeholder:hover .youtube-play-button {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(161, 13, 89, 0.4);
}

.youtube-placeholder span {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
}

.media-caption {
    padding: 20px;
    text-align: center;
}

.media-caption h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.media-caption p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Workshop preview placeholder */
.workshop-preview {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-placeholder {
    text-align: center;
    padding: 40px;
}

.preview-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(161, 13, 89, 0.3));
}

.preview-placeholder h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.preview-placeholder p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.preview-status {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   SECTION PRESSE ET ACTUALITÉS
=================================== */

.savoir-faire__presse {
    background: var(--bg-secondary);
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

.presse-title {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.presse-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.presse-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.presse-card--animated {
    animation: cardFloat 6s ease-in-out infinite;
}

.presse-card--animated:nth-child(1) {
    animation-delay: 0s;
}

.presse-card--animated:nth-child(2) {
    animation-delay: 2s;
}

.presse-card--animated:nth-child(3) {
    animation-delay: 4s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(0.5deg); }
    50% { transform: translateY(-6px) rotate(0deg); }
    75% { transform: translateY(-3px) rotate(-0.5deg); }
}

.presse-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 30px rgba(161, 13, 89, 0.2);
    border-color: rgba(161, 13, 89, 0.4);
    animation-play-state: paused;
}

.presse-card:hover .presse-visual {
    background: linear-gradient(135deg, rgba(161, 13, 89, 0.08) 0%, rgba(255, 107, 179, 0.05) 100%);
    border-bottom-color: rgba(161, 13, 89, 0.15);
}

.presse-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 25px 20px 25px;
    background: linear-gradient(135deg, rgba(161, 13, 89, 0.03) 0%, rgba(255, 107, 179, 0.02) 100%);
    border-bottom: 1px solid rgba(161, 13, 89, 0.08);
}

.presse-content {
    padding: 20px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.presse-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.presse-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.presse-photo:hover {
    transform: scale(1.05);
    border-color: rgba(161, 13, 89, 0.3);
}

.presse-date {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.presse-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 2px 8px rgba(161, 13, 89, 0.25);
}

.presse-headline {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.presse-excerpt {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.presse-quote {
    background: var(--bg-tertiary);
    padding: 16px 20px;
    border-radius: 12px;
    margin: 16px 0;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: var(--text-primary);
}

.presse-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

.spec-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.presse-highlight {
    background: linear-gradient(135deg, rgba(161, 13, 89, 0.05) 0%, rgba(255, 107, 179, 0.03) 100%);
    padding: 14px 18px;
    border-radius: 10px;
    margin: 16px 0;
    border-left: 3px solid var(--primary-color);
    font-size: 0.9rem;
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
}

.btn-read-article {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 20px 25px 25px 25px;
    box-shadow: 0 4px 12px rgba(161, 13, 89, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-read-article::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-read-article:hover {
    background: linear-gradient(135deg, #8b0a4d 0%, #db2777 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(161, 13, 89, 0.4);
    color: white;
}

.btn-read-article:hover::before {
    opacity: 1;
}

/* ===================================
   VIDÉO PRESSE PIERRE PICARD
=================================== */

.presse-video-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(161, 13, 89, 0.05);
    border: 2px solid rgba(161, 13, 89, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(161, 13, 89, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.video-container:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(161, 13, 89, 0.15);
    border-color: rgba(161, 13, 89, 0.2);
}

.video-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(161, 13, 89, 0.3);
}

.video-icon {
    font-size: 1.1rem;
}

.video-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
    font-style: italic;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(161, 13, 89, 0.1);
    transition: all 0.3s ease;
}

.video-container:hover .video-wrapper {
    border-color: rgba(161, 13, 89, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.youtube-iframe-presse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* ===================================
   ÉDITO LEADERSHIP PHOTOS
=================================== */

.edito-leadership {
    display: flex;
    gap: 12px;
    align-items: center;
}

.leadership-photo {
    width: 50px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.leadership-photo:hover {
    transform: scale(1.05);
    border-color: rgba(161, 13, 89, 0.4);
}

/* ===================================
   MEDIA SUBTITLE ET SIGNATURE BLOCK
=================================== */

.media-subtitle {
    font-size: 0.95rem;
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-bottom: 8px !important;
    letter-spacing: 0.5px;
}

.signature-block {
    margin-top: 30px;
    padding-top: 20px;
}

.signature {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.signature-gradient {
    /* Fallback couleur pour navigateurs non compatibles */
    color: #a10d59;
    
    /* Dégradé plus contrasté et visible */
    background: linear-gradient(90deg, 
        #a10d59 0%,      /* Rose Copy-Média */
        #ff6bb3 30%,     /* Rose vif */
        #28a745 60%,     /* Vert */
        #17a2b8 100%     /* Bleu */
    );
    
    /* Support multi-navigateurs */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    background-clip: text;
    
    /* Animation plus lente et visible */
    background-size: 300% 100%;
    animation: gradientShift 6s ease-in-out infinite;
    
    /* Renforcement typographique */
    font-weight: 800;
    font-size: 1.2rem;
    text-shadow: none;
    
    /* Force l'affichage */
    display: inline-block;
    position: relative;
}

/* Alternative avec pseudo-élément pour compatibilité maximale */
.signature-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        #a10d59 0%,
        #ff6bb3 30%,
        #28a745 60%,
        #17a2b8 100%
    );
    background-size: 300% 100%;
    animation: gradientShift 6s ease-in-out infinite;
    mix-blend-mode: multiply;
    pointer-events: none;
    opacity: 0.8;
}

/* Support navigateurs modernes prioritaire */
@supports (-webkit-background-clip: text) {
    .signature-gradient::before {
        display: none;
    }
}

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

.company-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

/* ===================================
   TECH LIST STYLING
=================================== */

.tech-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.tech-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.tech-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.tech-list li:last-child {
    border-bottom: none;
}

/* ===================================
   RESPONSIVE DESIGN
=================================== */
@media (max-width: 992px) {
    .header-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .header-main-title {
        margin-bottom: 35px;
    }
    
    .subtitle-frame {
        flex-direction: column;
        gap: 15px;
    }
    
    .subtitle-decoration-left,
    .subtitle-decoration-right {
        width: 120px;
        margin: 0 auto;
    }
    
    .subtitle-frame .section-subtitle {
        font-size: 1.15rem;
        max-width: 350px;
    }
    
    .counters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    

    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 950px;
    }
    
    .savoir-faire__certifications .container {
        max-width: 1150px;
        padding: 0 35px;
    }
    
    .certification-card {
        padding: 38px 35px;
    }
    
    .certification-logo--fabrication {
        height: 65px !important;
    }
    
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1200px;
    }
    
    .presse-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .savoir-faire-section {
        padding: 60px 0;
    }
    
    .savoir-faire__header,
    .savoir-faire__story,
    .savoir-faire__certifications,
    .savoir-faire__presse,
    .savoir-faire__media {
        padding: 60px 0;
    }
    
    .savoir-faire-section .section-title {
        font-size: 2.2rem;
    }
    
    .certification-card {
        padding: 30px 20px;
    }
    
    .story-column h3 {
        font-size: 1.2rem;
    }
    
    .presse-card {
        padding: 25px 20px;
    }
    
    .presse-headline {
        font-size: 1.2rem;
    }
    
    .presse-title {
        font-size: 1.8rem;
    }
    
    /* MEDIA-GRID RESPONSIVE MOBILE - 1 COLONNE */
    .media-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
        max-width: 500px;
    }
    
    .media-item {
        max-width: 100%;
    }
    
    .youtube-wrapper {
        aspect-ratio: 16/9;
        width: 100%;
    }
    
    .media-caption h4 {
        font-size: 1.1rem;
    }
    
    .edito-leadership {
        justify-content: center;
        margin-bottom: 12px;
    }
    
    .header-main-title {
        margin-bottom: 25px;
    }
    
    .header-subtitle-elegant {
        margin-bottom: 30px;
    }
    
    .subtitle-frame .section-subtitle {
        font-size: 1.1rem;
        max-width: 300px;
    }
    
    .subtitle-decoration-left,
    .subtitle-decoration-right {
        width: 60px;
    }
    
    .signature-box {
        padding: 15px 28px;
    }
    
    .signature-text {
        font-size: 1.25rem;
    }
    

    
    .presse-card--animated {
        animation: none;
    }
    
    .presse-visual {
        padding: 20px;
    }
    
    .presse-content {
        padding: 15px 20px;
    }
    
    .btn-read-article {
        margin: 15px 20px 20px 20px;
        padding: 12px 18px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 100%;
    }
    
    .certification-card {
        padding: 35px 30px;
    }
    
    .certification-title {
        font-size: 1.2rem;
    }
    
    .certification-logo--fabrication {
        height: 60px !important;
    }
    
    .savoir-faire__certifications .container {
        max-width: 100%;
        padding: 0 25px;
    }
    
    .video-container {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .video-title {
        font-size: 1.4rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .presse-video-section {
        margin-top: 40px;
        padding-top: 30px;
    }
}

/* ===================================
   SECTION GOOGLE REVIEWS - TÉMOIGNAGES
=================================== */

.google-reviews-section {
    background: var(--bg-primary); /* Blanc pur - COHÉRENT avec alternance */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Texture subtile néon Copy-Média */
.google-reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(161, 13, 89, 0.015) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(255, 107, 179, 0.01) 0%, transparent 60%);
    pointer-events: none;
}

/* Header moderne avec Google branding */
.google-reviews-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.google-reviews-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
}

/* Flow moderne compacte avec container ovale */
.reviews-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    padding: 25px 35px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(248, 250, 252, 0.9) 50%,
        rgba(255, 255, 255, 0.85) 100%);
    border-radius: 40px;
    border: 2px solid rgba(161, 13, 89, 0.06);
    box-shadow: 
        0 8px 30px rgba(161, 13, 89, 0.04),
        0 3px 12px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

/* Badge Google principal plus proéminent */
.google-badge-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 1) 100%);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(161, 13, 89, 0.08);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.google-badge-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(66, 133, 244, 0.15),
        0 0 15px rgba(66, 133, 244, 0.1);
}

.google-badge-primary svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Badge Google intégré - ANCIEN */
.google-badge-float {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(248, 249, 250, 0.8) 100%);
    border-radius: 40px;
    border: 1px solid rgba(66, 133, 244, 0.08);
    box-shadow: 
        0 2px 8px rgba(66, 133, 244, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0.75;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.google-badge-float:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 4px 16px rgba(66, 133, 244, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    opacity: 0.95;
    border-color: rgba(66, 133, 244, 0.15);
}

/* Showcase des étoiles */
.stars-showcase {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    position: relative;
}

/* Score principal en focus */
.rating-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.main-score {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(161, 13, 89, 0.1);
    transition: all 0.3s ease;
}

.main-score:hover {
    transform: scale(1.05);
    color: var(--secondary-color);
}

.review-count {
    font-size: 1rem;
    color: var(--text-primary);
    opacity: 0.7;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.rating-highlight:hover .review-count {
    opacity: 0.9;
}

.stars-container .star-individual {
    display: inline-block;
    font-size: 1.8rem;
    color: #ffa500;
    text-shadow: 
        0 3px 6px rgba(255, 165, 0, 0.3),
        0 1px 3px rgba(255, 140, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    margin: 0 3px;
    filter: drop-shadow(0 2px 4px rgba(255, 165, 0, 0.2));
}

.stars-container .star-individual:hover {
    transform: scale(1.25) rotate(12deg);
    color: #ff8c00;
    text-shadow: 
        0 6px 12px rgba(255, 140, 0, 0.5),
        0 3px 6px rgba(255, 107, 53, 0.3);
    filter: drop-shadow(0 4px 8px rgba(255, 140, 0, 0.4));
    z-index: 2;
}

/* Animation cascade douce */
.stars-container .star-individual:nth-child(1) { 
    animation: starFloat 3s ease-in-out infinite;
    animation-delay: 0s; 
}
.stars-container .star-individual:nth-child(2) { 
    animation: starFloat 3s ease-in-out infinite;
    animation-delay: 0.3s; 
}
.stars-container .star-individual:nth-child(3) { 
    animation: starFloat 3s ease-in-out infinite;
    animation-delay: 0.6s; 
}
.stars-container .star-individual:nth-child(4) { 
    animation: starFloat 3s ease-in-out infinite;
    animation-delay: 0.9s; 
}
.stars-container .star-individual:nth-child(5) { 
    animation: starFloat 3s ease-in-out infinite;
    animation-delay: 1.2s; 
}

@keyframes starFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-3px) scale(1.02);
        opacity: 1;
        filter: drop-shadow(0 4px 8px rgba(255, 165, 0, 0.3));
    }
}

/* Anciens styles supprimés - maintenant gérés par .rating-highlight */

/* Carousel container */
.reviews-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.reviews-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 100%;
    overflow: hidden;
}

/* Review cards modernes - Optimisées */
.review-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(250, 250, 250, 0.9) 100%);
    border: 2px solid rgba(161, 13, 89, 0.08);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 6px 24px rgba(161, 13, 89, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(161, 13, 89, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 179, 0.015) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(161, 13, 89, 0.15);
    box-shadow: 
        0 20px 60px rgba(161, 13, 89, 0.12),
        0 8px 30px rgba(255, 107, 179, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

/* Header des reviews */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.review-rating .stars {
    font-size: 1rem;
    color: #ffa500;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 165, 0, 0.2);
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-primary);
    opacity: 0.6;
    font-weight: 500;
    white-space: nowrap;
}

/* Contenu des reviews */
.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    position: relative;
    z-index: 2;
    text-align: justify;
    hyphens: auto;
    font-weight: 400;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Badge Google discret */
.google-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-primary);
    opacity: 0.5;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.review-card:hover .google-badge {
    opacity: 0.7;
}

.google-badge svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

/* Navigation carousel - Plus d'espace */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 1) 100%);
    border: 2px solid rgba(161, 13, 89, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(161, 13, 89, 0.1), transparent);
    transition: left 0.6s;
}

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

.nav-btn:hover {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(161, 13, 89, 0.3);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.nav-btn:disabled:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 1) 100%);
    color: var(--primary-color);
    border-color: rgba(161, 13, 89, 0.1);
    box-shadow: none;
}

/* Dots navigation */
.nav-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(161, 13, 89, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.nav-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-dot:hover::before,
.nav-dot.active::before {
    transform: scale(1);
}

.nav-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(161, 13, 89, 0.3);
}

/* Responsive Design - Optimisé pour 6 avis desktop */
@media (min-width: 1400px) {
    .reviews-track {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        max-width: 1600px;
        margin: 0 auto;
    }
    
    .review-card {
        padding: 22px;
        font-size: 0.95rem;
    }
}

@media (max-width: 1399px) and (min-width: 1201px) {
    .reviews-track {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 22px;
    }
    
    .review-card {
        padding: 24px;
    }
}

@media (max-width: 1200px) {
    .reviews-track {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .reviews-flow {
        gap: 18px;
        margin-top: 25px;
        padding: 25px 30px;
        border-radius: 45px;
        max-width: 400px;
    }
    
    .stars-container .star-individual {
        font-size: 1.6rem;
        margin: 0 2px;
    }
}

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 80px 0;
    }
    
    .google-reviews-section .section-title {
        font-size: 2.2rem;
    }
    
    .reviews-flow {
        gap: 20px;
        margin-top: 30px;
        padding: 30px 35px;
        border-radius: 50px;
        max-width: 450px;
    }
    
    .main-score {
        font-size: 1.8rem;
    }
    
    .rating-summary {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .rating-details {
        align-items: center;
    }
    
    .reviews-track {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .review-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .reviewer-info {
        text-align: center;
    }
    
    .review-date {
        text-align: center;
        white-space: normal;
    }
    
    .carousel-navigation {
        margin-top: 50px;
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .nav-dots {
        gap: 10px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .google-reviews-section .section-title {
        font-size: 1.8rem;
    }
    
    .rating-stars .stars {
        font-size: 1.3rem;
    }
    
    .rating-score {
        font-size: 1.1rem;
    }
    
    .rating-count {
        font-size: 0.9rem;
    }
    
    .review-card {
        padding: 18px;
        margin: 0 5px;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .carousel-navigation {
        gap: 12px;
        margin-top: 40px;
        margin-bottom: 25px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* Animations subtiles */
@keyframes reviewSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.review-card {
    animation: reviewSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: calc(var(--review-index, 0) * 0.1s);
}

/* ===================================
   SWIPER.JS CAROUSEL GOOGLE REVIEWS
=================================== */

/* Customisation Swiper pour témoignages */
.reviews-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-swiper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 20px 0;
}

.swiper-wrapper {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

/* Grid des avis (3 par slide) */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    align-items: stretch;
}

/* 🎨 CARTES AVIS - DESIGN SOBRE & ÉLÉGANT */
.reviews-grid .review-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reviews-grid .review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08),
        /* Léger accent Copy-Média très subtil */
        0 0 0 1px rgba(161, 13, 89, 0.05);
}

/* Header avec avatar */
/* 🔧 AMÉLIORATION LAYOUT AVIS - Plus d'espace pour nom/date */
.review-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.avatar-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.reviewer-details {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.reviewer-name-block {
    flex: 1;
    min-width: 0;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* Permet au nom de s'étendre sur plusieurs lignes si nécessaire */
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-rating .stars {
    display: flex;
    gap: 2px;
}

.review-rating .star {
    font-size: 1rem;
    transition: all 0.2s ease;
}

.review-rating .star.filled {
    color: #ffa500;
    text-shadow: 0 1px 2px rgba(255, 165, 0, 0.3);
}

.review-rating .star.empty {
    color: #e0e0e0;
}

.review-date {
    font-size: 0.9rem;
    color: #6c757d;
    opacity: 0.8;
    font-weight: 500;
    background: rgba(248, 249, 250, 0.8);
    padding: 6px 12px;
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    /* Léger accent Copy-Média très subtil sur hover */
    transition: all 0.3s ease;
}

.review-date:hover {
    border-color: rgba(161, 13, 89, 0.1);
    background: rgba(248, 249, 250, 1);
}

/* Contenu avis */
.review-content {
    flex: 1;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-likes {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

.likes-icon {
    font-size: 0.9rem;
}

/* Footer avec badge Google */
.review-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 10px;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(248, 249, 250, 0.9) 100%);
    border-radius: 20px;
    border: 1px solid rgba(66, 133, 244, 0.1);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.google-badge:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: rgba(66, 133, 244, 0.2);
}

.google-badge svg {
    width: 12px;
    height: 12px;
}

/* Navigation Swiper customisée */
.swiper-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 !important;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.9) 100%) !important;
    border: 2px solid rgba(161, 13, 89, 0.08) !important;
    border-radius: 50% !important;
    box-shadow: 
        0 4px 16px rgba(161, 13, 89, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: translateY(-2px) scale(1.05) !important;
    border-color: rgba(161, 13, 89, 0.15) !important;
    box-shadow: 
        0 8px 24px rgba(161, 13, 89, 0.12),
        0 3px 8px rgba(0, 0, 0, 0.08) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover svg,
.swiper-button-next:hover svg {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* 🎯 NAVIGATION CAROUSEL - DESIGN SOBRE & CENTRÉ */
.swiper-navigation {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 24px !important;
    margin: 40px auto 0 auto !important;
    padding: 0 !important;
    max-width: 1200px !important; /* Même largeur que le contenu */
    position: relative !important;
    width: 100% !important;
}

/* 🔧 NAVIGATION CLIQUABLE - CORRECTION ZONES CLIQUABLES */
.reviews-nav-prev,
.reviews-nav-next {
    position: relative !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 50% !important;
    color: #6c757d !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(12px) !important;
    flex-shrink: 0 !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08) !important;
    z-index: 10 !important;
    /* Forcer la zone cliquable complète */
    overflow: visible !important;
}

.reviews-nav-prev:hover,
.reviews-nav-next:hover {
    background: rgba(255, 255, 255, 1) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    color: #495057 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
}

.reviews-nav-prev:active,
.reviews-nav-next:active {
    transform: translateY(-1px) !important;
}

.reviews-nav-prev svg,
.reviews-nav-next svg {
    width: 16px !important;
    height: 16px !important;
    stroke-width: 2.5 !important;
    transition: transform 0.3s ease !important;
}

.reviews-nav-prev:hover svg,
.reviews-nav-next:hover svg {
    transform: scale(1.08) !important;
}

/* 🎯 PAGINATION CENTRÉE - FORCER LE CENTRAGE */
.swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    flex: 1 !important;
    max-width: 150px !important;
    /* Forcer l'override des styles Swiper inline */
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
}

/* 💎 BULLES PAGINATION ÉLÉGANTES - DESIGN PREMIUM */
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(248, 249, 250, 0.6) 100%) !important;
    border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    cursor: pointer !important;
    margin: 0 !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    position: relative !important;
    /* Override forcé */
    left: auto !important;
    top: auto !important;
    transform: scale(0.85) !important; /* En retrait par défaut */
}

.swiper-pagination-bullet:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(248, 249, 250, 0.8) 100%) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    transform: scale(0.95) !important;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 0 2px rgba(161, 13, 89, 0.08) !important; /* Léger néon au hover */
}

/* 🌟 BULLE ACTIVE - EFFET NÉON SUBTIL RENFORCÉ */
.swiper-pagination-bullet-active,
.swiper-pagination-bullet-active-main,
.swiper-pagination-bullet-active-prev,
.swiper-pagination-bullet-active-next,
.swiper-pagination-bullet-active-next-next,
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, 
        #495057 0%, 
        #343a40 100%) !important;
    border: 1.5px solid rgba(161, 13, 89, 0.4) !important;
    transform: scale(1.15) !important; /* Plus proéminente */
    box-shadow: 
        0 6px 20px rgba(73, 80, 87, 0.3),
        0 0 0 3px rgba(161, 13, 89, 0.15), /* Néon Copy-Média plus visible */
        0 0 20px rgba(161, 13, 89, 0.1),   /* Lueur externe plus forte */
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    /* Override forcé - tous les styles Swiper */
    position: static !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
}

/* ✨ ANIMATION NÉON PULSANTE TRÈS SUBTILE */
.swiper-pagination-bullet-active::after,
.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(161, 13, 89, 0.1) 0%, 
        transparent 70%);
    animation: pulseGlow 2s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

/* 🔧 SÉCURITÉ - OVERRIDE ABSOLU POUR LES BULLES ACTIVES */
.reviews-pagination .swiper-pagination-bullet[aria-current="true"],
.reviews-pagination .swiper-pagination-bullet[class*="active"] {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%) !important;
    border: 1.5px solid rgba(161, 13, 89, 0.4) !important;
    transform: scale(1.15) !important;
    box-shadow: 
        0 6px 20px rgba(73, 80, 87, 0.3),
        0 0 0 3px rgba(161, 13, 89, 0.15),
        0 0 20px rgba(161, 13, 89, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

@keyframes pulseGlow {
    0% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    100% { 
        opacity: 0.6; 
        transform: scale(1.2); 
    }
}

/* 🔧 GESTION ÉTATS BOUTONS & ZONES CLIQUABLES */
.reviews-nav-prev::before,
.reviews-nav-next::before {
    content: '';
    position: absolute;
    inset: -5px;
    z-index: -1;
    cursor: pointer;
}

/* 🔄 BOUTONS TOUJOURS ACTIFS (LOOP MODE) */
.swiper-button-disabled,
.reviews-nav-prev.swiper-button-disabled,
.reviews-nav-next.swiper-button-disabled {
    opacity: 1 !important; /* Toujours visibles */
    cursor: pointer !important; /* Toujours cliquables */
    pointer-events: auto !important; /* Toujours actifs */
}

/* Forcer la zone cliquable sur tous les boutons (toujours actifs) */
.reviews-nav-prev,
.reviews-nav-next {
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 50 !important;
}

/* Correction spécifique Swiper navigation override */
.swiper-navigation .swiper-button-prev,
.swiper-navigation .swiper-button-next {
    position: relative !important;
    transform: none !important;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
}

/* ✅ Responsive pour mobile */
@media (max-width: 768px) {
    .swiper-navigation {
        gap: 15px !important;
        margin-top: 30px !important;
        padding: 0 15px !important;
    }
    
    .reviews-nav-prev,
    .reviews-nav-next {
        width: 32px !important;
        height: 32px !important;
    }
    
    .reviews-nav-prev svg,
    .reviews-nav-next svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .swiper-pagination {
        max-width: 150px !important;
    }
    
    .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
    }
}

/* Footer informations */
.reviews-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(161, 13, 89, 0.08);
}

.reviews-disclaimer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin: 0;
    font-style: italic;
}

/* Fallback message */
.reviews-fallback {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(145deg, 
        rgba(248, 249, 250, 0.8) 0%, 
        rgba(255, 255, 255, 0.9) 100%);
    border: 2px dashed rgba(161, 13, 89, 0.1);
    border-radius: 20px;
    margin: 40px 0;
}

.fallback-message p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.fallback-message a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fallback-message a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* 📱 RESPONSIVE TABLETTES - Optimisé pour éviter les éléments isolés */
@media (max-width: 1200px) and (min-width: 769px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .reviews-carousel-container {
        padding: 0 20px;
    }
    
    /* Assurer que les avis s'affichent bien 2 par 2 */
    .swiper-slide {
        min-height: 280px;
        display: flex !important;
        align-items: stretch;
    }
    
    .review-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .review-content {
        flex: 1;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablette : forcer l'affichage mobile si problème */
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .reviews-carousel-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid .review-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .reviewer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .review-date {
        text-align: left;
        white-space: normal;
    }
    
    .swiper-navigation {
        gap: 20px;
        margin-top: 30px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 45px !important;
        height: 45px !important;
    }
    
    .swiper-button-prev svg,
    .swiper-button-next svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .reviews-carousel-container {
        padding: 0 10px;
    }
    
    .reviews-grid .review-card {
        padding: 18px;
        margin: 0 5px;
    }
    
    .reviewer-name {
        font-size: 0.95rem;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.5;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .swiper-navigation {
        gap: 15px;
        margin-top: 25px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px !important;
        height: 40px !important;
    }
    
    .swiper-button-prev svg,
    .swiper-button-next svg {
        width: 16px;
        height: 16px;
    }
    
    .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
    }
}

/* Performance optimizations */
.reviews-swiper {
    will-change: transform;
}

.swiper-slide {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .reviews-grid .review-card,
    .swiper-button-prev,
    .swiper-button-next,
    .swiper-pagination-bullet {
        transition: none !important;
        animation: none !important;
    }
    
    .swiper-wrapper {
        transition-duration: 0s !important;
    }
}

/* États de chargement pour futures API calls */
.reviews-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(161, 13, 89, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Animation d'entrée en cascade */
.reviews-flow > * {
    opacity: 0;
    transform: translateY(20px);
    animation: flowIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.google-badge-float {
    animation-delay: 0.2s;
}

.stars-showcase {
    animation-delay: 0.4s;
}

.rating-highlight {
    animation-delay: 0.6s;
}

@keyframes flowIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hover effect container ovale */
.reviews-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(161, 13, 89, 0.04), transparent);
    transition: left 1s ease;
    border-radius: 60px;
}

.reviews-flow:hover::before {
    left: 100%;
}

.reviews-flow:hover {
    transform: translateY(-3px);
    border-color: rgba(161, 13, 89, 0.12);
    box-shadow: 
        0 20px 60px rgba(161, 13, 89, 0.08),
        0 8px 30px rgba(255, 107, 179, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ===================================
   SECTION NOS CLIENTS - LAYOUT MODERNE
=================================== */

.clients-section {
    background: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Texture subtile néon Copy-Média */
.clients-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(161, 13, 89, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 179, 0.015) 0%, transparent 60%);
    pointer-events: none;
}

.clients-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.clients-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.clients-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.8;
}

/* ===== SIDEBAR RESPONSIVE LAYOUT ===== */

/* Layout principal avec sidebar */
.clients-sidebar-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Sidebar Toggle - Style Guide Technique Amélioré */
.sidebar-toggle {
    display: none;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    background: linear-gradient(145deg, #ffffff 0%, #fefafc 100%);
    border: 2px solid rgba(161, 13, 89, 0.15);
    border-radius: 20px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.sidebar-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(161, 23, 91, 0.1), transparent);
    transition: left 0.5s;
}

.sidebar-toggle:hover::before {
    left: 100%;
}

.sidebar-toggle:hover {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(161, 13, 89, 0.35);
}

.sidebar-toggle svg {
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.sidebar-toggle:hover svg {
    transform: scale(1.15) rotate(5deg);
}

/* Sidebar principale */
.clients-sidebar {
    background: linear-gradient(145deg, #ffffff 0%, #fefafc 100%);
    border-right: 3px solid rgba(161, 13, 89, 0.12);
    border-radius: 24px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 2px 0 30px rgba(161, 13, 89, 0.06);
    backdrop-filter: blur(20px);
    z-index: 10;
}

/* Header sidebar */
.sidebar-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(161, 13, 89, 0.08);
}

.sidebar-close {
    display: none;
    width: 32px;
    height: 32px;
    background: rgba(161, 13, 89, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1);
}

/* Navigation sidebar */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(161, 13, 89, 0.08);
    border-radius: 16px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: left;
    width: 100%;
}

.sidebar-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(161, 13, 89, 0.05), transparent);
    transition: left 0.5s ease;
}

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

.sidebar-nav-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(161, 13, 89, 0.15);
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(161, 13, 89, 0.12);
}

.sidebar-nav-item.active {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(161, 13, 89, 0.25);
}

.nav-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sidebar-nav-item.active .nav-item-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nav-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.nav-item-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Overlay mobile amélioré comme Guide Technique */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    backdrop-filter: blur(8px);
    cursor: pointer;
    
    /* Anti-FOUC : Masquer par défaut jusqu'à Alpine.js */
    display: none;
}

/* Contenu principal */
.clients-content {
    min-height: 500px;
    position: relative;
}

/* Sections clients avec zones colorées */
.client-section {
    border-radius: 24px;
    padding: 50px 60px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

/* Zones colorées uniformes - Toutes Copy-Média bordeaux avec nuances subtiles */
.client-section--auto-edition {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 250, 252, 1) 50%,
        rgba(254, 248, 251, 1) 100%);
    border: 2px solid rgba(161, 13, 89, 0.08);
    border-left: 6px solid rgba(161, 13, 89, 0.4);
    box-shadow: 
        0 8px 32px rgba(161, 13, 89, 0.06),
        0 2px 8px rgba(255, 107, 179, 0.04);
}

/* Maison d'édition - Bordeaux avec nuance rosée */
.client-section--edition {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 249, 251, 1) 50%,
        rgba(254, 247, 250, 1) 100%);
    border: 2px solid rgba(161, 13, 89, 0.08);
    border-left: 6px solid rgba(255, 107, 179, 0.4);
    box-shadow: 
        0 8px 32px rgba(161, 13, 89, 0.06),
        0 2px 8px rgba(255, 107, 179, 0.04);
}

/* Institutionnel - Bordeaux avec nuance pourpre */
.client-section--institutional {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(254, 249, 252, 1) 50%,
        rgba(253, 247, 251, 1) 100%);
    border: 2px solid rgba(161, 13, 89, 0.08);
    border-left: 6px solid rgba(143, 11, 79, 0.4);
    box-shadow: 
        0 8px 32px rgba(161, 13, 89, 0.06),
        0 2px 8px rgba(255, 107, 179, 0.04);
}

/* Effets hover uniformes - Tous Copy-Média bordeaux */
.client-section--auto-edition:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(161, 13, 89, 0.2);
    border-left-color: var(--primary-color);
    box-shadow: 
        0 25px 70px rgba(161, 13, 89, 0.12),
        0 10px 35px rgba(255, 107, 179, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.client-section--edition:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(161, 13, 89, 0.2);
    border-left-color: var(--secondary-color);
    box-shadow: 
        0 25px 70px rgba(161, 13, 89, 0.12),
        0 10px 35px rgba(255, 107, 179, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.client-section--institutional:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(161, 13, 89, 0.2);
    border-left-color: rgba(143, 11, 79, 1);
    box-shadow: 
        0 25px 70px rgba(161, 13, 89, 0.12),
        0 10px 35px rgba(255, 107, 179, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Header de section client avec accordéon */
.client-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 16px;
}

.client-header:hover {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

/* Badges clients */
.client-badge {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

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

.badge--creative {
    background: linear-gradient(135deg, rgba(161, 13, 89, 0.1) 0%, rgba(255, 107, 179, 0.05) 100%);
    color: var(--primary-color);
    border: 1px solid rgba(161, 13, 89, 0.2);
}

.badge--personal {
    background: linear-gradient(135deg, rgba(255, 107, 179, 0.1) 0%, rgba(161, 13, 89, 0.05) 100%);
    color: var(--secondary-color);
    border: 1px solid rgba(255, 107, 179, 0.2);
}

.badge--professional {
    background: linear-gradient(135deg, rgba(255, 107, 179, 0.1) 0%, rgba(161, 13, 89, 0.05) 100%);
    color: var(--secondary-color);
    border: 1px solid rgba(255, 107, 179, 0.2);
}

.badge--trusted {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    color: rgb(245, 158, 11);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge--institutional {
    background: linear-gradient(135deg, rgba(143, 11, 79, 0.1) 0%, rgba(161, 13, 89, 0.05) 100%);
    color: rgba(143, 11, 79, 1);
    border: 1px solid rgba(143, 11, 79, 0.2);
}

.badge--french {
    background: linear-gradient(135deg, rgba(161, 13, 89, 0.1) 0%, rgba(143, 11, 79, 0.05) 100%);
    color: var(--primary-color);
    border: 1px solid rgba(161, 13, 89, 0.2);
}

.badge:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Toggle accordéon */
.accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 1) 100%);
    border: 2px solid rgba(161, 13, 89, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.accordion-toggle svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-primary);
    opacity: 0.7;
}

.accordion-toggle:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(161, 13, 89, 0.3);
}

.accordion-toggle:hover svg {
    color: #ffffff;
    transform: scale(1.1);
}

.rotate-180 {
    transform: rotate(180deg);
}

/* Icônes clients avec couleurs spécifiques */
.client-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Icônes uniformes - Toutes Copy-Média bordeaux avec nuances */
.client-section--auto-edition .client-icon {
    background: linear-gradient(135deg, rgba(161, 13, 89, 0.12) 0%, rgba(255, 107, 179, 0.06) 100%);
    border: 2px solid rgba(161, 13, 89, 0.15);
    color: var(--primary-color);
}

/* Icône Maison d'édition - Bordeaux rosé */
.client-section--edition .client-icon {
    background: linear-gradient(135deg, rgba(255, 107, 179, 0.12) 0%, rgba(161, 13, 89, 0.06) 100%);
    border: 2px solid rgba(255, 107, 179, 0.15);
    color: var(--secondary-color);
}

/* Icône Institutionnel - Bordeaux pourpre */
.client-section--institutional .client-icon {
    background: linear-gradient(135deg, rgba(143, 11, 79, 0.12) 0%, rgba(161, 13, 89, 0.06) 100%);
    border: 2px solid rgba(143, 11, 79, 0.15);
    color: rgba(143, 11, 79, 1);
}

/* Effets hover uniformes pour icônes - Copy-Média bordeaux */
.client-section--auto-edition:hover .client-icon {
    background: linear-gradient(135deg, rgba(161, 13, 89, 0.2) 0%, rgba(255, 107, 179, 0.1) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(161, 13, 89, 0.25);
    transform: scale(1.1) rotate(5deg);
}

.client-section--edition:hover .client-icon {
    background: linear-gradient(135deg, rgba(255, 107, 179, 0.2) 0%, rgba(161, 13, 89, 0.1) 100%);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(255, 107, 179, 0.25);
    transform: scale(1.1) rotate(-5deg);
}

.client-section--institutional:hover .client-icon {
    background: linear-gradient(135deg, rgba(143, 11, 79, 0.2) 0%, rgba(161, 13, 89, 0.1) 100%);
    border-color: rgba(143, 11, 79, 1);
    box-shadow: 0 8px 25px rgba(143, 11, 79, 0.25);
    transform: scale(1.1) rotate(3deg);
}

.client-title-group {
    flex: 1;
}

.client-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.client-tagline {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
    font-style: italic;
}

/* Contenu client - Amélioration lisibilité */
.client-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.client-additional-content {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(161, 13, 89, 0.1);
    position: relative;
    z-index: 2;
}

.client-additional-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.client-conclusion {
    background: linear-gradient(135deg, 
        rgba(161, 13, 89, 0.03) 0%, 
        rgba(255, 107, 179, 0.02) 50%,
        rgba(255, 255, 255, 0.8) 100%);
    border: 2px solid rgba(161, 13, 89, 0.08);
    border-left: 6px solid var(--primary-color);
    padding: 1.8rem 2.2rem;
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    box-shadow: 0 3px 12px rgba(161, 13, 89, 0.05);
}

.client-conclusion::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.client-note {
    font-size: 0.9rem;
    margin-top: 16px;
}

.client-description {
    line-height: 1.7;
}

.client-description p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    hyphens: auto;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.client-description h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2.5rem 0 1.2rem 0;
    position: relative;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(161, 13, 89, 0.03) 0%, rgba(255, 107, 179, 0.02) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 8px rgba(161, 13, 89, 0.06);
}

.client-description h4:first-of-type {
    margin-top: 1.5rem;
}

.client-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-group h5 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(161, 13, 89, 0.1);
    position: relative;
}

.feature-group h5::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.feature-highlight h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-highlight h5::before {
    content: '💡';
    font-size: 1.1rem;
}

.feature-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.feature-group li {
    position: relative;
    padding: 1rem 1.5rem 1rem 3rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.8) 100%);
    border-radius: 12px;
    border-left: 3px solid rgba(161, 13, 89, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(161, 13, 89, 0.04);
    font-size: 1.05rem;
    font-weight: 400;
}

.feature-group li:hover {
    transform: translateX(8px) scale(1.01);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 248, 248, 0.95) 100%);
    border-left-color: var(--primary-color);
    border-left-width: 4px;
    box-shadow: 0 6px 20px rgba(161, 13, 89, 0.12);
}

.feature-group li::before {
    content: '●';
    position: absolute;
    left: 1.2rem;
    top: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.8rem;
}

.feature-highlight {
    background: linear-gradient(135deg, 
        rgba(161, 13, 89, 0.04) 0%, 
        rgba(255, 107, 179, 0.02) 50%,
        rgba(255, 255, 255, 0.8) 100%);
    border: 2px solid rgba(161, 13, 89, 0.1);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 4px 16px rgba(161, 13, 89, 0.06);
}

.feature-highlight p {
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
    text-align: justify;
    hyphens: auto;
    font-size: 1.05rem;
}

/* CTA moderne blanc avec accents Copy-Média */
.client-cta-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

.client-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(145deg, #ffffff 0%, rgba(161, 13, 89, 0.02) 100%);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(161, 13, 89, 0.25);
    box-shadow: 
        0 6px 24px rgba(161, 13, 89, 0.12),
        0 2px 8px rgba(255, 107, 179, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Effet shimmer */
.client-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(161, 13, 89, 0.1), transparent);
    transition: left 0.6s;
}

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

.client-cta:hover {
    background: linear-gradient(145deg, #ffffff 0%, rgba(161, 13, 89, 0.05) 100%);
    border-color: var(--primary-color);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 12px 40px rgba(161, 13, 89, 0.25),
        0 4px 16px rgba(255, 107, 179, 0.2),
        0 0 30px rgba(255, 107, 179, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    color: var(--primary-color);
}

.client-cta svg {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(161, 13, 89, 0.3));
}

.client-cta:hover svg {
    transform: translateX(6px);
}

/* CTA avec couleur Copy-Média à l'intérieur */
.client-cta--copymedia {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: 3px solid var(--primary-color);
    color: #ffffff;
    box-shadow: 
        0 6px 24px rgba(161, 13, 89, 0.20),
        0 2px 8px rgba(255, 107, 179, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.client-cta--copymedia::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.client-cta--copymedia:hover {
    background: linear-gradient(145deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-color: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 12px 40px rgba(161, 13, 89, 0.30),
        0 4px 16px rgba(255, 107, 179, 0.25),
        0 0 30px rgba(255, 107, 179, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.client-cta--copymedia svg {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.client-cta--copymedia:hover svg {
    transform: translateX(6px) scale(1.05);
}

/* Animations d'apparition Alpine.js */
[x-cloak] { display: none !important; }

/* Transition classes pour Alpine.js */
.transition-enter {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.transition-enter-start {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
}

.transition-enter-end {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Accordéon fermé par défaut */
.client-section[x-show] {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Section active - animation plus fluide */
.client-section.active {
    animation: accordionSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes accordionSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    50% {
        opacity: 0.7;
        transform: translateY(10px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animation d'apparition des badges */
.client-badge .badge {
    animation: badgeFloat 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: calc(var(--badge-index, 0) * 0.15s);
    opacity: 0;
}

@keyframes badgeFloat {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Effet de pulsation subtile pour les éléments interactifs */
.accordion-toggle:hover {
    animation: subtlePulse 2s infinite ease-in-out;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(161, 13, 89, 0.15);
    }
    50% {
        box-shadow: 0 12px 35px rgba(161, 13, 89, 0.25);
    }
}

/* Anciennes règles responsive supprimées - remplacées par architecture sidebar responsive */

@media (max-width: 480px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-section .section-header {
        margin-bottom: 50px;
    }
    
    .clients-section .section-title {
        font-size: 2.2rem;
    }
    
    .client-section {
        padding: 30px 25px;
        border-radius: 18px;
    }
    
    .client-icon {
        width: 60px;
        height: 60px;
    }
    
    .client-title {
        font-size: 1.5rem;
    }
    
    .client-tagline,
    .client-description p {
        font-size: 1rem;
    }
    
    .feature-group li {
        font-size: 0.95rem;
    }
}

/* ===== NOUVEAUX STYLES TÉMOIGNAGES RÉORGANISÉS ===== */

/* Ligne étoiles + score harmonieuse */
.rating-line {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.06) 0%, transparent 70%);
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Score dans la ligne avec les étoiles */
.score-display {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin-left: 5px;
}

/* Ligne séparée pour le compteur d'avis */
.review-count-line {
    text-align: center;
    padding: 5px 15px;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(161, 13, 89, 0.04);
}

/* ===== ANIMATIONS ÉTOILES MAGIQUES ===== */

/* Animation d'apparition fluide et organique */
@keyframes starAppearSmooth {
    0% { 
        opacity: 0; 
        transform: scale(0.3) rotate(-45deg); 
    }
    40% { 
        opacity: 0.7; 
        transform: scale(1.1) rotate(-10deg); 
    }
    70% { 
        opacity: 0.9; 
        transform: scale(1.05) rotate(5deg); 
    }
    90% { 
        opacity: 1; 
        transform: scale(1.02) rotate(-2deg); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
}

/* Animation de scintillement avec color-shifting et micro-rotations */
@keyframes starTwinkleGolden {
    0% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
        filter: brightness(1) drop-shadow(0 0 1px rgba(255, 193, 7, 0.4));
    }
    15% { 
        opacity: 0.9; 
        transform: scale(1.01) rotate(1deg); 
        filter: brightness(1.03) drop-shadow(0 0 1.5px rgba(255, 193, 7, 0.5));
    }
    30% { 
        opacity: 0.82; 
        transform: scale(1.04) rotate(-2deg); 
        filter: brightness(1.08) drop-shadow(0 0 2.5px rgba(200, 150, 50, 0.4));
    }
    50% { 
        opacity: 0.75; 
        transform: scale(1.08) rotate(3deg); 
        filter: brightness(1.15) drop-shadow(0 0 3px rgba(161, 13, 89, 0.35));
    }
    70% { 
        opacity: 0.85; 
        transform: scale(1.05) rotate(-1deg); 
        filter: brightness(1.12) drop-shadow(0 0 2.5px rgba(180, 80, 120, 0.4));
    }
    85% { 
        opacity: 0.92; 
        transform: scale(1.02) rotate(0.5deg); 
        filter: brightness(1.06) drop-shadow(0 0 2px rgba(255, 193, 7, 0.6));
    }
    100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
        filter: brightness(1) drop-shadow(0 0 1px rgba(255, 193, 7, 0.4));
    }
}

/* Pause contemplative - effet respiration très subtil */
@keyframes starBreathe {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.95; 
        transform: scale(1.01); 
    }
}

/* Styles des étoiles avec animations fluides */
.rating-line .star-individual {
    font-size: 1.8rem;
    color: #ffc107;
    text-shadow: 0 0 2px rgba(255, 193, 7, 0.4);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity, filter;
    animation-fill-mode: both;
    
    /* Animation d'apparition ultra-fluide */
    animation: starAppearSmooth 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Délais basés sur le Golden Ratio (1.618) pour harmonie mathématique parfaite */
.rating-line .star-individual:nth-child(1) {
    animation-delay: 0s;
}

.rating-line .star-individual:nth-child(2) {
    animation-delay: 0.1s;  /* Base */
}

.rating-line .star-individual:nth-child(3) {
    animation-delay: 0.162s;  /* 0.1 × φ */
}

.rating-line .star-individual:nth-child(4) {
    animation-delay: 0.262s;  /* 0.162 × φ */
}

.rating-line .star-individual:nth-child(5) {
    animation-delay: 0.424s;  /* 0.262 × φ */
}

/* Système Golden Ratio avec pause contemplative et color-shifting */
.rating-line .star-individual:nth-child(1) {
    animation: starAppearSmooth 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), 
               starBreathe 6s ease-in-out infinite 2s,
               starTwinkleGolden 4.236s cubic-bezier(0.4, 0, 0.6, 1) infinite 3s;
}

.rating-line .star-individual:nth-child(2) {
    animation: starAppearSmooth 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s, 
               starBreathe 6.18s ease-in-out infinite 2.1s,
               starTwinkleGolden 4.472s cubic-bezier(0.4, 0, 0.6, 1) infinite 3.1s;
}

.rating-line .star-individual:nth-child(3) {
    animation: starAppearSmooth 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.162s, 
               starBreathe 5.82s ease-in-out infinite 2.162s,
               starTwinkleGolden 3.854s cubic-bezier(0.4, 0, 0.6, 1) infinite 3.162s;
}

.rating-line .star-individual:nth-child(4) {
    animation: starAppearSmooth 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.262s, 
               starBreathe 6.48s ease-in-out infinite 2.262s,
               starTwinkleGolden 4.618s cubic-bezier(0.4, 0, 0.6, 1) infinite 3.262s;
}

.rating-line .star-individual:nth-child(5) {
    animation: starAppearSmooth 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.424s, 
               starBreathe 5.76s ease-in-out infinite 2.424s,
               starTwinkleGolden 4.09s cubic-bezier(0.4, 0, 0.6, 1) infinite 3.424s;
}

/* Hover effect fluide sur le container */
.rating-line:hover .star-individual {
    animation-play-state: running;
    transform: scale(1.05);
    filter: brightness(1.15) drop-shadow(0 0 4px rgba(161, 13, 89, 0.5));
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accessibilité - Réduction animation si demandée */
@media (prefers-reduced-motion: reduce) {
    .rating-line .star-individual {
        animation: none !important;
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE DESIGN SIDEBAR ===== */

/* Tablet Layout (768px - 1024px) */
@media (max-width: 1024px) {
    .clients-sidebar-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
    
    .clients-sidebar {
        padding: 25px;
        border-radius: 20px;
    }
    
    .sidebar-nav-item {
        padding: 16px;
        gap: 16px;
    }
    
    .nav-item-icon {
        width: 40px;
        height: 40px;
    }
    
    .nav-item-title {
        font-size: 1rem;
    }
    
    .nav-item-subtitle {
        font-size: 0.85rem;
    }
    
    .client-section {
        padding: 40px 30px;
    }
    
    .client-features {
        gap: 30px;
    }
}

/* Mobile Layout (≤768px) */
@media (max-width: 768px) {
    .clients-section {
        padding: 80px 0;
    }
    
    .clients-sidebar-layout {
        display: block;
        margin-top: 40px;
    }
    
    .sidebar-toggle {
        display: flex;
    }
    
    /* Sidebar Full-Screen inspirée Guide Technique */
    .clients-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        background: var(--bg-primary);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        overflow-y: auto;
        padding: 2rem;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    }
    
    .clients-sidebar.sidebar-open {
        transform: translateX(0);
    }
    
    /* Header sticky amélioré */
    .sidebar-header {
        position: sticky;
        top: 0;
        background: inherit;
        z-index: 2;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(161, 13, 89, 0.08);
    }
    
    /* Bouton croix style Guide Technique */
    .sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 50%;
        color: #666;
        cursor: pointer;
        transition: all 0.2s ease;
        z-index: 1001;
    }
    
    .sidebar-close:hover {
        background: rgba(161, 13, 89, 0.1);
        color: var(--primary-color);
        transform: scale(1.1);
    }
    
    .sidebar-nav-item {
        padding: 18px;
    }
    
    .nav-item-icon {
        width: 36px;
        height: 36px;
    }
    

    
    .client-section {
        padding: 30px 25px;
        border-radius: 20px;
        border-left-width: 4px;
    }
    
    .client-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 30px;
        padding: 15px;
        cursor: default;
    }
    
    .client-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .client-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .client-tagline {
        text-align: center;
        font-size: 1rem;
    }
    
    .client-badge {
        justify-content: center;
    }
    
    .accordion-toggle {
        width: 35px;
        height: 35px;
        margin: 0 auto;
    }
    
    .clients-section .section-title {
        font-size: 2.4rem;
    }
    
    .client-content {
        gap: 25px;
    }
    
    .client-description h4 {
        font-size: 1.2rem;
        padding: 0.8rem 1.2rem;
        margin: 2rem 0 1rem 0;
    }
    
    .client-cta-wrapper {
        justify-content: center;
    }
    
    .client-cta,
    .client-cta--copymedia {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Large Mobile */
@media (max-width: 480px) {
    .clients-sidebar {
        padding: 1.5rem;
    }
    
    .sidebar-nav-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
    
    .nav-item-content {
        text-align: center;
    }
}

/* ===================================
   DESIGN DEVIS UNIFIÉ - ÉLÉGANT & MODERNE
=================================== */

/* Conteneur formulaire unifié - Design artistique lumineux */
.devis-form-simple,
.devis-form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    
    /* Design lumineux avec néons subtils */
    background: 
        radial-gradient(circle at 25% 25%, rgba(161, 13, 89, 0.025) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 179, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(161, 13, 89, 0.015) 0%, transparent 70%),
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(250, 251, 252, 1) 30%,
            rgba(255, 255, 255, 0.98) 70%,
            rgba(248, 250, 252, 0.99) 100%);
    
    /* Bordure néon élégante */
    border: 1px solid rgba(161, 13, 89, 0.1);
    border-radius: 28px;
    padding: 3.5rem;
    
    /* Ombres sophistiquées multicouches */
    box-shadow: 
        0 12px 50px rgba(161, 13, 89, 0.08),
        0 6px 25px rgba(255, 107, 179, 0.06),
        0 2px 12px rgba(161, 13, 89, 0.04),
        0 0 0 1px rgba(161, 13, 89, 0.06),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    
    backdrop-filter: blur(25px) saturate(150%) brightness(110%);
    -webkit-backdrop-filter: blur(25px) saturate(150%) brightness(110%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Aura magique au hover */
.devis-form-simple::after,
.devis-form-container::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: 
        linear-gradient(45deg, 
            rgba(161, 13, 89, 0.1) 0%, 
            rgba(255, 107, 179, 0.08) 25%,
            rgba(161, 13, 89, 0.06) 50%,
            rgba(255, 107, 179, 0.08) 75%,
            rgba(161, 13, 89, 0.1) 100%);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

.devis-form-simple:hover::after,
.devis-form-container:hover::after {
    opacity: 0.7;
    animation: rotate-aura 8s linear infinite;
}

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

/* Effet néon au hover */
.devis-form-simple:hover,
.devis-form-container:hover {
    transform: translateY(-4px) scale(1.01);
    
    box-shadow: 
        0 16px 60px rgba(161, 13, 89, 0.12),
        0 8px 30px rgba(255, 107, 179, 0.08),
        0 0 40px rgba(161, 13, 89, 0.15),
        0 0 80px rgba(255, 107, 179, 0.1),
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 0 0 2px rgba(161, 13, 89, 0.2);
}

/* Effet luminescence interne */
.devis-form-simple::before,
.devis-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            transparent 0%, 
            rgba(161, 13, 89, 0.02) 30%, 
            rgba(255, 107, 179, 0.015) 50%, 
            rgba(161, 13, 89, 0.02) 70%, 
            transparent 100%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.devis-form-simple:hover::before,
.devis-form-container:hover::before {
    opacity: 1;
}

/* Layout formulaire unifié */
.devis-form-simple .form-row,
.devis-form-container .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.devis-form-simple .form-group,
.devis-form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.devis-form-simple .form-group.full-width,
.devis-form-container .form-group.full-width {
    grid-column: 1 / -1;
}

/* Labels élégants */
.devis-form-simple label,
.devis-form-container label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    letter-spacing: 0.3px;
    position: relative;
}

/* Inputs avec néons subtils */
.devis-form-simple input,
.devis-form-simple select,
.devis-form-simple textarea,
.devis-form-container input,
.devis-form-container select,
.devis-form-container textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(161, 13, 89, 0.08);
    border-radius: 12px;
    font-size: 1rem;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Focus avec aura magique */
.devis-form-simple input:focus,
.devis-form-simple select:focus,
.devis-form-simple textarea:focus,
.devis-form-container input:focus,
.devis-form-container select:focus,
.devis-form-container textarea:focus {
    outline: none;
    border-color: rgba(161, 13, 89, 0.4);
    background: 
        radial-gradient(circle at 30% 30%, rgba(161, 13, 89, 0.02) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 251, 252, 1) 100%);
    
    box-shadow: 
        0 0 0 4px rgba(161, 13, 89, 0.08),
        0 0 25px rgba(161, 13, 89, 0.15),
        0 0 50px rgba(255, 107, 179, 0.1),
        0 0 100px rgba(161, 13, 89, 0.05),
        0 6px 20px rgba(161, 13, 89, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    
    transform: translateY(-2px) scale(1.02);
    position: relative;
    z-index: 10;
}

/* Animation sparkle au focus */
.devis-form-simple input:focus::after,
.devis-form-simple select:focus::after,
.devis-form-simple textarea:focus::after,
.devis-form-container input:focus::after,
.devis-form-container select:focus::after,
.devis-form-container textarea:focus::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: 
        linear-gradient(45deg, 
            transparent 0%, 
            rgba(161, 13, 89, 0.1) 25%, 
            rgba(255, 107, 179, 0.08) 50%, 
            rgba(161, 13, 89, 0.1) 75%, 
            transparent 100%);
    border-radius: 14px;
    animation: shimmer-focus 2s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes shimmer-focus {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Submit sections */
.devis-form-simple .form-submit,
.devis-form-container .form-submit {
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
}

.devis-form-simple .form-notice,
.devis-form-container .form-notice {
    color: #475569;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* ===================================
   HERO & TITRES DEVIS - DESIGN LUMINEUX
=================================== */

/* Page devis - Background artistique magique */
.page-devis {
    min-height: 100vh;
    position: relative;
    background: 
        radial-gradient(circle at 25% 25%, rgba(161, 13, 89, 0.025) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 179, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(161, 13, 89, 0.015) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 179, 0.01) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(161, 13, 89, 0.01) 0%, transparent 60%),
        linear-gradient(135deg, #ffffff 0%, #fefefe 30%, #ffffff 70%, #fafbfc 100%);
    overflow: hidden;
}

/* Particules magiques flottantes */
.page-devis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(161, 13, 89, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 179, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 60% 20%, rgba(161, 13, 89, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(255, 107, 179, 0.015) 1px, transparent 1px);
    background-size: 200px 200px, 150px 150px, 300px 300px, 250px 250px;
    background-position: 0 0, 50px 50px, 100px 100px, 150px 150px;
    animation: float-particles 60s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes float-particles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.6; 
    }
    25% { 
        transform: translateY(-10px) rotate(90deg); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateY(-5px) rotate(180deg); 
        opacity: 0.4; 
    }
    75% { 
        transform: translateY(-15px) rotate(270deg); 
        opacity: 0.7; 
    }
}

/* Section Hero */
.devis-hero {
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
    
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.9) 0%, 
            rgba(248, 250, 252, 0.95) 50%, 
            rgba(255, 255, 255, 0.9) 100%);
}

.devis-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(161, 13, 89, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 179, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Titre principal page devis - Artistique */
.devis-page-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    letter-spacing: -0.02em;
    
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 20%,
        #475569 40%,
        #1e293b 60%,
        #334155 80%,
        #0f172a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer-text 4s ease-in-out infinite;
    
    text-shadow: 
        0 0 40px rgba(161, 13, 89, 0.12),
        0 0 80px rgba(255, 107, 179, 0.08);
}

.devis-page-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(161, 13, 89, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 107, 179, 0.02) 0%, transparent 60%);
    border-radius: 20px;
    opacity: 0;
    animation: title-aura 6s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes shimmer-text {
    0%, 100% { background-position: 200% 200%; }
    50% { background-position: 0% 0%; }
}

@keyframes title-aura {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.6; }
}

.devis-page-subtitle {
    font-size: 1.3rem;
    color: #475569;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

/* Badge accompagnement - Design élégant */
.devis-guarantee {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 3.5rem;
    position: relative;
    
    /* Background lumineux avec néons */
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(248, 250, 252, 0.95) 50%, 
            rgba(255, 255, 255, 0.98) 100%),
        radial-gradient(circle at 50% 50%, rgba(161, 13, 89, 0.02) 0%, transparent 60%);
    
    /* Bordure néon subtile */
    border: 1px solid transparent;
    border-radius: 20px;
    
    /* Ombres sophistiquées */
    box-shadow: 
        0 8px 40px rgba(161, 13, 89, 0.08),
        0 4px 20px rgba(255, 107, 179, 0.05),
        0 0 0 1px rgba(161, 13, 89, 0.1),
        0 1px 0 rgba(255, 255, 255, 1) inset;
    
    backdrop-filter: blur(15px) saturate(130%);
    -webkit-backdrop-filter: blur(15px) saturate(130%);
    max-width: 650px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.guarantee-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            transparent 0%, 
            rgba(161, 13, 89, 0.03) 30%, 
            rgba(255, 107, 179, 0.02) 50%, 
            rgba(161, 13, 89, 0.03) 70%, 
            transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.guarantee-badge:hover {
    transform: translateY(-4px) scale(1.02);
    
    box-shadow: 
        0 16px 60px rgba(161, 13, 89, 0.15),
        0 8px 30px rgba(255, 107, 179, 0.1),
        0 0 40px rgba(161, 13, 89, 0.2),
        0 0 80px rgba(255, 107, 179, 0.08),
        0 0 0 2px rgba(161, 13, 89, 0.25),
        0 1px 0 rgba(255, 255, 255, 1) inset;
}

.guarantee-badge:hover::before {
    opacity: 1;
}

.badge-icon {
    font-size: 2.8rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(161, 13, 89, 0.2));
}

.badge-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
    
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-content p {
    margin: 0.4rem 0;
    color: #475569;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.badge-content p strong {
    color: #1e293b;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(161, 13, 89, 0.08);
}

/* Section formulaire - Design lumineux */
.devis-form-section {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(161, 13, 89, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 179, 0.015) 0%, transparent 60%),
        linear-gradient(135deg, #ffffff 0%, #fefefe 50%, #ffffff 100%);
}

/* Barre de progression - Design néon élégant */
.progress-container {
    margin-bottom: 3rem;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: 
        linear-gradient(90deg, 
            rgba(255, 255, 255, 0.8) 0%, 
            rgba(248, 250, 252, 0.9) 50%, 
            rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgba(161, 13, 89, 0.06);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 
        0 2px 8px rgba(161, 13, 89, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.progress-fill {
    height: 100%;
    background: 
        linear-gradient(90deg, 
            rgba(161, 13, 89, 0.8) 0%, 
            rgba(255, 107, 179, 0.9) 30%, 
            rgba(161, 13, 89, 0.95) 60%, 
            rgba(255, 107, 179, 0.8) 100%);
    border-radius: 6px;
    width: 25%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    
    box-shadow: 
        0 0 15px rgba(161, 13, 89, 0.4),
        0 0 30px rgba(255, 107, 179, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.4) 30%, 
            rgba(255, 255, 255, 0.6) 50%, 
            rgba(255, 255, 255, 0.4) 70%, 
            transparent 100%);
    animation: shimmerProgress 2.5s ease-in-out infinite;
    border-radius: 6px;
}

@keyframes shimmerProgress {
    0% { 
        opacity: 0.3; 
        transform: translateX(-100%);
    }
    50% { 
        opacity: 0.8; 
        transform: translateX(0%);
    }
    100% { 
        opacity: 0.3; 
        transform: translateX(100%);
    }
}

/* Étapes de progression - Design néon élégant */
.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 1;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.9) 0%, 
            rgba(248, 250, 252, 0.95) 100%);
    border: 2px solid rgba(161, 13, 89, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #64748b;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 4px 12px rgba(161, 13, 89, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.step.active .step-number {
    background: 
        linear-gradient(135deg, 
            rgba(161, 13, 89, 0.9) 0%, 
            rgba(255, 107, 179, 0.8) 100%);
    border-color: rgba(161, 13, 89, 0.6);
    color: white;
    
    box-shadow: 
        0 8px 20px rgba(161, 13, 89, 0.25),
        0 0 25px rgba(161, 13, 89, 0.4),
        0 0 50px rgba(255, 107, 179, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    
    transform: scale(1.1);
}

.step.completed .step-number {
    background: 
        linear-gradient(135deg, 
            #10b981 0%, 
            #059669 100%);
    border-color: #059669;
    color: white;
    
    box-shadow: 
        0 6px 16px rgba(16, 185, 129, 0.2),
        0 0 20px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.step.completed .step-number {
    font-size: 0; /* Cacher le chiffre */
}

.step.completed .step-number::before {
    content: '✓';
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    letter-spacing: 0.2px;
}

.step.active .step-label {
    color: #1e293b;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(161, 13, 89, 0.08);
}

/* Messages de retour */
.form-messages {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.form-messages.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #155724;
}

.form-messages.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #721c24;
}

/* Formulaire progressif */
.devis-form-progressive {
    position: relative;
}

/* Anti-spam honeypot */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Étapes du formulaire */
.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.step-content {
    margin-bottom: 3rem;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Layout formulaire */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start; /* Aligner en haut */
}

.form-group {
    display: grid;
    grid-template-rows: auto auto 1fr auto; /* label, input/select, espace flexible, error */
    gap: 0.5rem;
    min-height: 80px;
}

.form-group .field-hint {
    grid-row: 3; /* Placer le hint dans l'espace flexible */
    align-self: start;
}

.form-group .field-error {
    grid-row: 4; /* Dernière rangée pour les erreurs */
    min-height: 1.2rem; /* Hauteur fixe même quand vide */
    font-size: 0.85rem;
    color: #dc3545;
    opacity: 0; /* Invisible par défaut */
    transition: opacity 0.2s ease;
}

.form-group .field-error.show,
.form-group .field-error:not(:empty) {
    opacity: 1; /* Visible quand il y a une erreur */
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Labels */
label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

label.required::after {
    content: ' *';
    color: var(--error-color, #dc3545);
    font-weight: 600;
}

/* Format personnalisé - 2 inputs élégants avec "×" */
.format-inputs-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(161, 13, 89, 0.02);
    border: 2px solid rgba(161, 13, 89, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.format-inputs-container:focus-within {
    border-color: rgba(161, 13, 89, 0.3);
    background: rgba(161, 13, 89, 0.05);
    box-shadow: 0 0 0 3px rgba(161, 13, 89, 0.1);
}

.format-inputs-container input[type="number"] {
    border: none;
    background: white;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.format-inputs-container input[type="number"]::placeholder {
    color: rgba(161, 13, 89, 0.4); /* Placeholder plus clair */
    font-weight: 400;
    opacity: 0.8;
}

.format-inputs-container input[type="number"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(161, 13, 89, 0.2);
    transform: translateY(-1px);
}

.format-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(161, 13, 89, 0.3);
}

.format-unit {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(161, 13, 89, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

/* Responsive format inputs */
@media (max-width: 768px) {
    .format-inputs-container {
        gap: 0.6rem;
        padding: 0.45rem;
    }
    
    .format-inputs-container input[type="number"] {
        padding: 0.7rem 0.5rem;
        font-size: 1.05rem;
    }
    
    .format-separator {
        font-size: 1.4rem;
    }
    
    .format-unit {
        font-size: 0.85rem;
        padding: 0.45rem 0.65rem;
    }
}

@media (max-width: 480px) {
    .format-inputs-container {
        gap: 0.5rem;
        padding: 0.4rem;
        /* Réduire encore plus l'espacement sur très petits écrans */
    }
    
    .format-inputs-container input[type="number"] {
        padding: 0.6rem 0.4rem;
        font-size: 1rem;
        min-width: 60px; /* Assurer une largeur minimum */
    }
    
    .format-separator {
        font-size: 1.3rem;
    }
    
    .format-unit {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Très petits écrans - Layout horizontal optimisé */
@media (max-width: 320px) {
    .format-inputs-container {
        gap: 0.4rem;
        padding: 0.5rem;
        /* Garder le layout horizontal mais plus compact */
    }
    
    .format-inputs-container input[type="number"] {
        min-width: 50px;
        max-width: 70px;
        padding: 0.7rem 0.3rem;
        font-size: 0.95rem;
    }
    
    .format-separator {
        font-size: 1.1rem;
    }
    
    .format-unit {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
    }
}

/* Inputs et selects */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(203, 213, 225, 0.4);
    border-radius: 8px;
    font-size: 1rem;
    color: #1a202c;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #64748b;
    box-shadow: 
        0 0 0 3px rgba(100, 116, 139, 0.08),
        0 2px 12px rgba(148, 163, 184, 0.1),
        0 0 20px rgba(161, 13, 89, 0.03);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

input[type="text"].error,
input[type="email"].error,
input[type="tel"].error,
select.error,
textarea.error {
    border-color: var(--error-color, #dc3545);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Erreurs de validation */
.field-error {
    color: var(--error-color, #dc3545);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.25rem;
    display: none;
}

.field-error.show {
    display: block;
    animation: slideInError 0.3s ease;
}

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

/* Textarea spécifique */
textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* Compteur de caractères */
.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Upload de fichiers - Design lumineux artistique */
.file-upload-area {
    position: relative;
    border: 2px dashed rgba(161, 13, 89, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    background: 
        radial-gradient(circle at 50% 50%, rgba(161, 13, 89, 0.02) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
}

.file-upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            transparent 0%, 
            rgba(161, 13, 89, 0.015) 30%, 
            rgba(255, 107, 179, 0.01) 50%, 
            rgba(161, 13, 89, 0.015) 70%, 
            transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.file-upload-area:hover::before {
    opacity: 1;
}

.file-upload-area:hover {
    border-color: rgba(161, 13, 89, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(161, 13, 89, 0.08),
        0 0 40px rgba(255, 107, 179, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(161, 13, 89, 0.05);
}

.file-upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(161, 13, 89, 0.1);
    transform: scale(1.02);
}

.file-upload-area input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upload-placeholder {
    pointer-events: none;
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.upload-placeholder p {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.upload-placeholder small {
    color: var(--text-secondary);
}

/* Fichiers uploadés */
.uploaded-files {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.uploaded-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: 
        radial-gradient(circle at 50% 50%, rgba(161, 13, 89, 0.02) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1px solid rgba(161, 13, 89, 0.08);
    border-radius: 12px;
    font-size: 0.9rem;
    color: #1a202c; /* ✅ Couleur de texte sombre visible */
    font-weight: 500;
    box-shadow: 
        0 2px 8px rgba(161, 13, 89, 0.04),
        0 0 20px rgba(255, 107, 179, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.uploaded-file:hover {
    background: 
        radial-gradient(circle at 50% 50%, rgba(161, 13, 89, 0.03) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 100%);
    border-color: rgba(161, 13, 89, 0.12);
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(161, 13, 89, 0.06),
        0 0 25px rgba(255, 107, 179, 0.03);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-info .file-icon {
    color: rgba(161, 13, 89, 0.7);
    font-size: 1.1rem;
}

.file-info .file-name {
    color: #1a202c; /* ✅ Couleur sombre pour le nom du fichier */
    font-weight: 600;
}

.file-info .file-size {
    color: #64748b; /* ✅ Couleur grise pour la taille */
    font-size: 0.85rem;
}

.file-remove {
    background: none;
    border: none;
    color: var(--error-color, #dc3545);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.file-remove:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* Actions des étapes */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

/* Boutons */
.btn-prev,
.btn-next,
.btn-submit {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Boutons - Inspirés FAQ mais version blanche artistique */
.btn-prev {
    background: 
        radial-gradient(circle at 50% 50%, rgba(161, 13, 89, 0.02) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    color: #475569;
    border: 2px solid rgba(161, 13, 89, 0.08);
    backdrop-filter: blur(15px) saturate(110%);
    -webkit-backdrop-filter: blur(15px) saturate(110%);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 
        0 4px 20px rgba(161, 13, 89, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-prev::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(161, 13, 89, 0.05), transparent);
    transition: left 0.6s ease;
}

.btn-prev:hover {
    background: 
        radial-gradient(circle at 50% 50%, rgba(161, 13, 89, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 100%);
    color: #334155;
    border-color: rgba(161, 13, 89, 0.15);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 8px 30px rgba(161, 13, 89, 0.08),
        0 0 30px rgba(255, 107, 179, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

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

.btn-next,
.btn-submit {
    background: 
        radial-gradient(circle at 30% 70%, rgba(161, 13, 89, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 107, 179, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 1) 100%);
    color: #1a202c;
    border: 2px solid rgba(161, 13, 89, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
    font-weight: 600;
    
    box-shadow: 
        0 8px 30px rgba(161, 13, 89, 0.12),
        0 4px 15px rgba(255, 107, 179, 0.08),
        0 0 25px rgba(161, 13, 89, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-next::before,
.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(161, 13, 89, 0.08), rgba(255, 107, 179, 0.06), transparent);
    transition: left 0.6s ease;
}

.btn-next::after,
.btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            transparent 0%, 
            rgba(161, 13, 89, 0.02) 30%, 
            rgba(255, 107, 179, 0.015) 50%, 
            rgba(161, 13, 89, 0.02) 70%, 
            transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-4px) scale(1.03);
    color: #0f172a;
    border-color: rgba(161, 13, 89, 0.35);
    
    box-shadow: 
        0 16px 50px rgba(161, 13, 89, 0.2),
        0 8px 25px rgba(255, 107, 179, 0.15),
        0 0 50px rgba(161, 13, 89, 0.25),
        0 0 100px rgba(255, 107, 179, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    
    background: 
        radial-gradient(circle at 30% 70%, rgba(161, 13, 89, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 107, 179, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.btn-next:hover::before,
.btn-submit:hover::before {
    left: 100%;
}

.btn-next:hover::after,
.btn-submit:hover::after {
    opacity: 1;
}

.btn-submit {
    min-width: 200px;
    justify-content: center;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Récapitulatif */
.recap-container {
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(148, 163, 184, 0.04);
}

.recap-section {
    margin-bottom: 1.5rem;
}

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

.recap-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recap-section p {
    margin: 0.25rem 0;
    color: var(--text-secondary);
}

.recap-section strong {
    color: var(--text-primary);
}

/* RGPD */
.rgpd-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

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

.checkmark {
    width: 24px; /* Plus grand pour meilleure visibilité */
    height: 24px;
    border: 3px solid rgba(161, 13, 89, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    /* Effet néon subtil au repos */
    box-shadow: 
        0 0 10px rgba(161, 13, 89, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Hover effect pour encourager l'interaction */
.checkbox-label:hover .checkmark {
    border-color: rgba(161, 13, 89, 0.6);
    transform: scale(1.05);
    box-shadow: 
        0 0 15px rgba(161, 13, 89, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color); /* Couleur Copy-Média */
    border-color: var(--primary-color);
    /* EFFET NÉON Copy-Média très visible */
    box-shadow: 
        0 0 20px rgba(161, 13, 89, 0.6),
        0 0 30px rgba(161, 13, 89, 0.4),
        0 0 40px rgba(161, 13, 89, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animation pulse pour attirer l'attention quand nécessaire */
.checkmark.highlight {
    animation: checkmarkPulse 2s ease-in-out infinite;
}

@keyframes checkmarkPulse {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(161, 13, 89, 0.1),
            0 2px 4px rgba(0, 0, 0, 0.05);
    }
    50% {
        box-shadow: 
            0 0 25px rgba(161, 13, 89, 0.4),
            0 0 35px rgba(161, 13, 89, 0.2),
            0 2px 8px rgba(0, 0, 0, 0.1);
        transform: scale(1.1);
    }
}

.checkbox-text {
    flex: 1;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.rgpd-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 1rem;
}

/* Message de succès */
.success-message {
    text-align: center;
    padding: 3rem;
    background: rgba(40, 167, 69, 0.05);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 16px;
    margin-top: 2rem;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.success-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(40, 167, 69, 0.2);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ===================================
   SECTION CONFIANCE - DESIGN LUMINEUX & ÉLÉGANT
=================================== */

.devis-confiance {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(161, 13, 89, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 179, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #fefefe 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.devis-confiance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(161, 13, 89, 0.025) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(255, 107, 179, 0.015) 0%, transparent 60%);
    pointer-events: none;
}

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

.confiance-header {
    margin-bottom: 3rem;
}

.confiance-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 30%, 
        #334155 50%, 
        #1e293b 70%, 
        #0f172a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    text-shadow: 
        0 0 20px rgba(161, 13, 89, 0.08),
        0 0 40px rgba(255, 107, 179, 0.04);
}

.confiance-subtitle {
    font-size: 1.2rem;
    color: #475569;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Stats - Design néon élégant */
.confiance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 2.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    
    /* Background lumineux avec néons */
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(248, 250, 252, 0.98) 50%, 
            rgba(255, 255, 255, 0.95) 100%),
        radial-gradient(circle at 50% 50%, rgba(161, 13, 89, 0.02) 0%, transparent 60%);
    
    border: 1px solid transparent;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
    overflow: hidden;
    
    box-shadow: 
        0 6px 25px rgba(161, 13, 89, 0.06),
        0 3px 12px rgba(255, 107, 179, 0.04),
        0 0 0 1px rgba(161, 13, 89, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(161, 13, 89, 0.6) 20%, 
            rgba(255, 107, 179, 0.8) 50%, 
            rgba(161, 13, 89, 0.6) 80%, 
            transparent 100%);
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 20px 20px 0 0;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            transparent 0%, 
            rgba(161, 13, 89, 0.015) 30%, 
            rgba(255, 107, 179, 0.01) 50%, 
            rgba(161, 13, 89, 0.015) 70%, 
            transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.stat-item:hover {
    transform: translateY(-6px) scale(1.02);
    
    box-shadow: 
        0 12px 40px rgba(161, 13, 89, 0.15),
        0 6px 20px rgba(255, 107, 179, 0.1),
        0 0 30px rgba(161, 13, 89, 0.2),
        0 0 60px rgba(255, 107, 179, 0.08),
        0 0 0 2px rgba(161, 13, 89, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.stat-item:hover::before {
    opacity: 1;
    box-shadow: 0 0 20px rgba(161, 13, 89, 0.4);
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 2;
    
    background: linear-gradient(135deg, 
        #1e293b 0%, 
        #334155 30%, 
        #475569 50%, 
        #334155 70%, 
        #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    text-shadow: 
        0 0 15px rgba(161, 13, 89, 0.1),
        0 0 30px rgba(255, 107, 179, 0.06);
}

.stat-label {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
    letter-spacing: 0.4px;
    position: relative;
    z-index: 2;
}

/* Garantie finale - Design lumineux */
.confiance-garantie {
    padding: 2rem 2.5rem;
    position: relative;
    
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(248, 250, 252, 0.95) 50%, 
            rgba(255, 255, 255, 0.98) 100%),
        radial-gradient(circle at 50% 50%, rgba(161, 13, 89, 0.015) 0%, transparent 60%);
    
    border: 1px solid transparent;
    border-radius: 16px;
    backdrop-filter: blur(12px) saturate(110%);
    -webkit-backdrop-filter: blur(12px) saturate(110%);
    overflow: hidden;
    
    box-shadow: 
        0 4px 20px rgba(161, 13, 89, 0.05),
        0 2px 8px rgba(255, 107, 179, 0.03),
        0 0 0 1px rgba(161, 13, 89, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.confiance-garantie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            transparent 0%, 
            rgba(161, 13, 89, 0.01) 30%, 
            rgba(255, 107, 179, 0.008) 50%, 
            rgba(161, 13, 89, 0.01) 70%, 
            transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.confiance-garantie:hover::before {
    opacity: 1;
}

.confiance-garantie p {
    margin: 0;
    font-size: 1.05rem;
    color: #475569;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

/* Tablettes */
@media (max-width: 1024px) {
    .devis-form-container {
        margin: 0 2rem;
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 2rem;
    }
    
    .form-row,
    .devis-form-simple .form-row,
    .devis-form-container .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .devis-hero {
        padding: 60px 0 40px 0;
    }
    
    .devis-form-section {
        padding: 60px 0;
    }
    
    .devis-form-container {
        margin: 0 1rem;
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .guarantee-badge {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .progress-steps {
        gap: 0.5rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .step-content {
        margin-bottom: 2rem; /* Réduction pour mobile */
    }
    
    .confiance-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .confiance-title {
        font-size: 1.8rem;
    }
    
    .file-upload-area {
        padding: 1.5rem;
    }
    
    .devis-form-simple {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .devis-form-simple .form-row,
    .devis-form-container .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    .progress-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .step {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .step-label {
        display: none;
    }
    
    .form-group {
        gap: 0.3rem;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .confiance-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .stat-item {
        padding: 1rem 0.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .confiance-title {
        font-size: 1.6rem;
    }
    
    .confiance-garantie {
        padding: 1rem 1.5rem;
    }
    
    .devis-form-simple {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }
}

/* Mode lumineux forcé - Design artistique */
@media (prefers-color-scheme: dark) {
    .devis-form-container {
        background: 
            radial-gradient(circle at 20% 80%, rgba(161, 13, 89, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 107, 179, 0.03) 0%, transparent 50%),
            linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 1) 100%);
        border: 1px solid rgba(161, 13, 89, 0.08);
        box-shadow: 
            0 0 40px rgba(161, 13, 89, 0.06),
            0 0 80px rgba(255, 107, 179, 0.03),
            inset 0 1px 0 rgba(255, 255, 255, 1);
    }
    
    .guarantee-badge {
        background: 
            radial-gradient(circle at 50% 50%, rgba(161, 13, 89, 0.03) 0%, transparent 60%),
            linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.98) 100%);
        border: 1px solid rgba(161, 13, 89, 0.1);
        box-shadow: 
            0 0 30px rgba(161, 13, 89, 0.08),
            0 0 60px rgba(255, 107, 179, 0.04);
    }
    
    .stat-item {
        background: 
            radial-gradient(circle at 50% 50%, rgba(161, 13, 89, 0.025) 0%, transparent 60%),
            linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.99) 100%);
        border: 1px solid rgba(161, 13, 89, 0.06);
        box-shadow: 
            0 0 25px rgba(161, 13, 89, 0.05),
            0 0 50px rgba(255, 107, 179, 0.03);
    }
    
    .confiance-garantie {
        background: 
            radial-gradient(circle at 50% 50%, rgba(161, 13, 89, 0.02) 0%, transparent 60%),
            linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 1) 100%);
        border: 1px solid rgba(161, 13, 89, 0.08);
        box-shadow: 
            0 0 20px rgba(161, 13, 89, 0.04),
            0 0 40px rgba(255, 107, 179, 0.02);
    }
    
    .devis-form-simple {
        background: 
            radial-gradient(circle at 20% 80%, rgba(161, 13, 89, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 107, 179, 0.03) 0%, transparent 50%),
            linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 1) 100%);
        border: 1px solid rgba(161, 13, 89, 0.08);
        box-shadow: 
            0 0 40px rgba(161, 13, 89, 0.06),
            0 0 80px rgba(255, 107, 179, 0.03);
    }
    
    .devis-form-simple input,
    .devis-form-simple select,
    .devis-form-simple textarea {
        background: 
            linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
        border: 2px solid rgba(161, 13, 89, 0.06);
        color: #1a202c;
        box-shadow: 
            0 0 15px rgba(161, 13, 89, 0.03),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    
    .file-upload-area {
        background: 
            linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
        border: 2px dashed rgba(161, 13, 89, 0.15);
        box-shadow: 0 0 20px rgba(161, 13, 89, 0.04);
    }
    
    .recap-container {
        background: 
            linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.98) 100%);
        border: 1px solid rgba(161, 13, 89, 0.06);
        box-shadow: 
            0 0 20px rgba(161, 13, 89, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
}



/* Animation d'entrée pour la section */
.fall-from-sky.animate-in {
    will-change: transform, opacity;
    animation: fallFromSky 1.2s ease-out forwards;
}

.fall-from-sky.animate-in.completed {
    will-change: auto;
}

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

/* ===================================
   RESPONSIVE SECTION DEVIS
=================================== */

/* Responsive pour l'espacement section devis */
@media (max-width: 768px) {
    .devis-section {
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
    }
} 