/* ========================================
   1. Variables
   ======================================== */
:root {
    --blue-900: #0C2D5A;
    --blue-800: #0F3A73;
    --blue-700: #134A8E;
    --blue-600: #1565C0;
    --blue-500: #1E88E5;
    --blue-400: #42A5F5;
    --blue-100: #BBDEFB;
    --blue-50: #E3F2FD;
    --gold: #D4A853;
    --gold-hover: #C49540;
    --gold-light: #F5E6C8;
    --dark: #0A1628;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-500: #64748B;
    --gray-700: #334155;
    --gray-900: #0F172A;
    --text: #1E293B;
    --text-light: #64748B;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(12, 45, 90, 0.08);
    --shadow-lg: 0 12px 40px rgba(12, 45, 90, 0.12);
    --shadow-blue: 0 8px 30px rgba(30, 136, 229, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xl: 24px;
}

/* ========================================
   2. Base
   ======================================== */
html { overflow-x: hidden; }
body { overflow-x: hidden; font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); line-height: 1.7; }
main { overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--blue-900);
    line-height: 1.2;
}

.section-padding { padding: 6rem 0; }

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 40px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.section-title { font-size: 2.4rem; margin-bottom: 1rem; }
.section-subtitle { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.icon-sm { width: 16px; height: 16px; vertical-align: middle; }

/* ========================================
   3. Boutons
   ======================================== */
.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}
.btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.35);
}

.btn-blue {
    background: var(--blue-600);
    border-color: var(--blue-600);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}
.btn-blue:hover {
    background: var(--blue-700);
    border-color: var(--blue-700);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--blue-900);
    border-color: var(--white);
}

/* ========================================
   4. Navbar bleu transparent → solide au scroll
   ======================================== */
.navbar-blue {
    background: transparent;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
    z-index: 1050;
}
.navbar-blue.scrolled {
    background: var(--blue-900);
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-blue .navbar-toggler {
    border-color: rgba(255,255,255,0.4);
}
.navbar-blue .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-blue .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem !important;
    transition: color 0.2s;
}
.navbar-blue .nav-link:hover { color: var(--gold) !important; }

.logo-nav { filter: brightness(0) invert(1); transition: filter 0.3s; height: 55px; width: auto; }

.navbar-blue .navbar-collapse {
    background: var(--blue-900);
    border-radius: var(--radius-sm);
    padding: 1rem;
}
@media (min-width: 992px) {
    .navbar-blue .navbar-collapse {
        background: transparent;
        padding: 0;
    }
}

/* ========================================
   5. Hero plein écran bleu
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 40%, var(--blue-700) 100%);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 8rem 0 4rem;
}

.hero-urgence {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.hero-urgence .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    max-width: 650px;
    font-weight: 800;
}
.hero h1 span { color: var(--gold); }

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-cta .btn { padding: 0.85rem 2rem; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 8px; }

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* ========================================
   6. Confiance : cards flottantes
   ======================================== */
.trust-section { padding: 5rem 0; background: var(--white); margin-top: -60px; position: relative; z-index: 10; }

.trust-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    height: 100%;
}
.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-100);
}
.trust-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.trust-card-icon i { width: 26px; height: 26px; color: var(--blue-600); }
.trust-card h4 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.trust-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ========================================
   7. Présentation : image encoche + cercles chiffres
   ======================================== */
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.about-image-wrapper img { border-radius: var(--radius-xl); }
.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--blue-900);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-image-badge .number { font-family: 'Sora'; font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.about-image-badge .label { font-size: 0.85rem; line-height: 1.3; }

.stat-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--blue-50);
    border: 3px solid var(--blue-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.stat-circle:hover { border-color: var(--gold); background: var(--gold-light); }
.stat-circle .value { font-family: 'Sora'; font-size: 1.4rem; font-weight: 800; color: var(--blue-900); line-height: 1; }
.stat-circle .label { font-size: 0.6rem; color: var(--text-light); text-align: center; line-height: 1.2; margin-top: 2px; }

/* ========================================
   8. Services : overlay masonry
   ======================================== */
.service-card-v2 {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    cursor: default;
}
.service-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card-v2:hover img { transform: scale(1.08); }

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(12, 45, 90, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background 0.3s;
}
.service-card-v2:hover .service-card-overlay {
    background: linear-gradient(180deg, transparent 10%, rgba(12, 45, 90, 0.95) 100%);
}

.service-card-overlay .svc-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.service-card-overlay .svc-icon i { width: 18px; height: 18px; color: var(--gold); }
.service-card-overlay h3 { color: var(--white); font-family: 'DM Sans'; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.service-card-overlay p { color: rgba(255,255,255,0.75); font-size: 0.82rem; margin: 0; line-height: 1.5; opacity: 0; max-height: 0; transition: all 0.3s; }
.service-card-v2:hover .service-card-overlay p { opacity: 1; max-height: 80px; }

/* ========================================
   9. Bannière urgence (bleu foncé)
   ======================================== */
.urgence-banner {
    background: var(--blue-900);
    padding: 4rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.urgence-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(30, 136, 229, 0.1);
}
.urgence-icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 1rem; }
.urgence-title { color: var(--white); font-size: 2rem; margin-bottom: 0.5rem; }
.urgence-text { opacity: 0.8; font-size: 1.1rem; margin-bottom: 1.5rem; }
.urgence-btn {
    background: var(--gold);
    color: var(--blue-900);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 0.85rem 2.5rem;
    border-radius: var(--radius-sm);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}
.urgence-btn:hover {
    background: var(--gold-hover);
    color: var(--blue-900);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
}

/* ========================================
   10. Réalisations : slider horizontal
   ======================================== */
.realisations-slider {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.realisations-slider::-webkit-scrollbar { display: none; }

.realisation-slide {
    flex: 0 0 350px;
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.realisation-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s;
}
.realisation-slide:hover img { transform: scale(1.05); }
.realisation-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 45, 90, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.realisation-slide-overlay i { width: 32px; height: 32px; color: white; }
.realisation-slide:hover .realisation-slide-overlay { opacity: 1; }

.slider-nav { display: flex; gap: 0.75rem; margin-top: 1.5rem; justify-content: center; }
.slider-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--blue-200);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.slider-nav button:hover { border-color: var(--blue-600); background: var(--blue-50); }
.slider-nav button i { width: 20px; height: 20px; color: var(--blue-900); }

/* ========================================
   11. Vidéo : principale + thumbs
   ======================================== */
.video-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-main iframe { width: 100%; aspect-ratio: 16/9; display: block; }

/* ========================================
   12. Avis : 3 cards côte à côte
   ======================================== */
.testimonial-card-v2 {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    height: 100%;
    position: relative;
}
.testimonial-card-v2::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: 'Sora', serif;
    font-size: 5rem;
    color: var(--blue-50);
    line-height: 1;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star-icon { width: 18px; height: 18px; color: #f59e0b; fill: #f59e0b; }
.testimonial-text-v2 { font-size: 0.95rem; color: var(--gray-700); line-height: 1.8; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author-v2 { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-50); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--blue-600); font-size: 1rem; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--blue-900); }
.testimonial-location { font-size: 0.8rem; color: var(--text-light); }

/* ========================================
   13. Processus : steps verticaux alternés
   ======================================== */
.process-vertical { position: relative; padding: 2rem 0; }
.process-vertical::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue-100);
    transform: translateX(-50%);
}

.process-v-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}
.process-v-step:nth-child(odd) { flex-direction: row; }
.process-v-step:nth-child(even) { flex-direction: row-reverse; }

.process-v-content {
    width: 42%;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.process-v-step:nth-child(odd) .process-v-content { margin-right: auto; text-align: right; }
.process-v-step:nth-child(even) .process-v-content { margin-left: auto; text-align: left; }

.process-v-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--blue-600);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora';
    font-weight: 800;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--blue-50);
}

.process-v-content h4 { font-family: 'DM Sans'; font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.process-v-content p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ========================================
   14. FAQ : cards grille 2 colonnes
   ======================================== */
.faq-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    cursor: pointer;
    transition: all 0.3s;
}
.faq-card:hover { border-color: var(--blue-500); box-shadow: var(--shadow-blue); }
.faq-card.open { border-color: var(--blue-500); }

.faq-card-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--blue-900);
    font-size: 0.95rem;
}
.faq-card-question i { width: 20px; height: 20px; color: var(--blue-500); flex-shrink: 0; transition: transform 0.3s; }
.faq-card.open .faq-card-question i { transform: rotate(45deg); }

.faq-card-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.3s;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}
.faq-card.open .faq-card-answer { max-height: 300px; margin-top: 1rem; }

/* ========================================
   15. CTA final : card centrée bordure dorée
   ======================================== */
.cta-final-section { padding: 6rem 0; background: var(--gray-50); }
.cta-final-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.cta-final-card h2 { margin-bottom: 1rem; }
.cta-final-card p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

.cta-julie-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.julie-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }

.cta-phone {
    font-family: 'Sora';
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue-900);
    text-decoration: none;
    transition: color 0.2s;
}
.cta-phone:hover { color: var(--blue-600); }

/* ========================================
   16. Footer
   ======================================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-logo { filter: brightness(0) invert(1); }
.footer-text { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer-badges { display: flex; align-items: center; gap: 10px; margin-top: 1rem; }

.footer-heading {
    color: var(--white);
    font-family: 'DM Sans';
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { color: rgba(255,255,255,0.55); font-size: 0.85rem; padding: 0.15rem 0; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer-contact li i { margin-top: 3px; color: var(--gold); flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ========================================
   17. Contact
   ======================================== */
.contact-form .form-control,
.contact-form .form-select {
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-200);
    padding: 0.75rem 1rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.contact-sidebar {
    background: var(--blue-900);
    border-radius: var(--radius);
    padding: 2rem;
    color: var(--white);
}
.contact-sidebar h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 1.5rem; }

.flash-success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; padding: 1rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; }
.flash-error { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; padding: 1rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; }

/* ========================================
   18. Mentions légales
   ======================================== */
.legal-content h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1.15rem; margin-top: 1.5rem; }
.legal-content p, .legal-content li { color: var(--text-light); line-height: 1.8; }

/* ========================================
   19. Lightbox
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    cursor: pointer;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 2rem; background: none; border: none; cursor: pointer; }

/* ========================================
   20. Responsive
   ======================================== */
@media (max-width: 991.98px) {
    .hero h1 { font-size: 2.6rem; }
    .hero-bg-image { width: 100%; opacity: 0.15; right: 0; border-radius: 0; }
    .hero-stats { gap: 2rem; }
    .section-title { font-size: 1.9rem; }
    .process-vertical::before { left: 24px; }
    .process-v-dot { left: 24px; width: 40px; height: 40px; font-size: 0.9rem; }
    .process-v-step, .process-v-step:nth-child(even) { flex-direction: row; }
    .process-v-content, .process-v-step:nth-child(odd) .process-v-content, .process-v-step:nth-child(even) .process-v-content { width: calc(100% - 70px); margin-left: 70px !important; margin-right: 0 !important; text-align: left !important; }
    .cta-final-card { padding: 2rem; }
}

@media (max-width: 767.98px) {
    .hero { min-height: auto; padding: 0; }
    .hero-content { padding: 6.5rem 1rem 2.5rem; }
    .hero h1 { font-size: 1.8rem; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .hero-urgence { font-size: 0.75rem; padding: 6px 14px; margin-bottom: 1.25rem; }
    .hero-cta { gap: 0.75rem; }
    .hero-cta .btn { width: 100%; justify-content: center; padding: 0.75rem 1.5rem; font-size: 0.95rem; }
    .hero-stats { flex-direction: row; gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem; flex-wrap: wrap; }
    .hero-stat-number { font-size: 1.5rem; }
    .hero-stat-label { font-size: 0.75rem; }
    .section-padding { padding: 4rem 0; }
    .section-title { font-size: 1.6rem; }
    .trust-section { margin-top: -30px; }
    .service-card-v2 { height: 220px; }
    .realisation-slide { flex: 0 0 280px; }
    .cta-phone { font-size: 1.4rem; }
    .cta-final-section { padding: 4rem 0; }
}

/* ========================================
   21. Animations
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
