/* ============================================
   100% Toiture - Couvreur Versailles
   Design System Premium
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette */
    --blue-900: #0f2557;
    --blue-800: #152e6e;
    --blue-700: #1a3a8a;
    --blue-600: #2150b5;
    --blue-500: #3b6dd9;
    --blue-400: #6b9bef;
    --blue-100: #dbe8ff;
    --blue-50: #eef4ff;

    --red-800: #8b1a1a;
    --red-700: #a52222;
    --red-600: #c0392b;
    --red-500: #d63031;
    --red-400: #e74c3c;
    --red-300: #f1948a;
    --red-100: #fdedec;

    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;

    --green-600: #059669;
    --green-500: #10b981;
    --green-100: #d1fae5;

    --gold: #eab308;

    --navy: #0a1e3c;
    --navy-light: #0f2557;
    --brand-red: #c0392b;
    --brand-red-dark: #962d22;
    --brand-red-light: #e74c3c;

    --white: #ffffff;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;

    /* Radius */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(15,23,42,0.05);
    --shadow-sm: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.06);
    --shadow-md: 0 4px 6px -1px rgba(15,23,42,0.08), 0 2px 4px -2px rgba(15,23,42,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(15,23,42,0.08), 0 4px 6px -4px rgba(15,23,42,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(15,23,42,0.1), 0 8px 10px -6px rgba(15,23,42,0.06);
    --shadow-2xl: 0 25px 50px -12px rgba(15,23,42,0.2);
    --shadow-blue: 0 4px 14px rgba(26,58,138,0.25);
    --shadow-red: 0 4px 14px rgba(192,57,43,0.3);

    /* Transition */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: 150ms var(--ease);
    --t-normal: 300ms var(--ease);
    --t-slow: 500ms var(--ease);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-600);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--slate-900);
    margin-bottom: var(--sp-4);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: var(--sp-4); }

a {
    color: var(--blue-700);
    text-decoration: none;
    transition: color var(--t-fast);
}

a:hover { color: var(--red-500); }

img { max-width: 100%; height: auto; }

.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;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-6);
    border-radius: var(--r-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--t-normal);
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.4;
}

.btn-lg {
    padding: var(--sp-4) var(--sp-8);
    font-size: 1.0625rem;
}

.btn-full { width: 100%; justify-content: center; }

.btn-primary {
    background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,58,138,0.35);
}

.btn-accent {
    background: linear-gradient(135deg, var(--red-500) 0%, var(--red-400) 100%);
    color: var(--white);
    box-shadow: var(--shadow-red);
}
.btn-accent:hover {
    background: linear-gradient(135deg, var(--red-700) 0%, var(--red-500) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234,88,12,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--blue-700);
    border-color: var(--blue-700);
}
.btn-outline:hover {
    background: var(--blue-700);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-urgence {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: var(--white);
    font-size: 1.125rem;
    box-shadow: 0 4px 14px rgba(220,38,38,0.35);
}
.btn-urgence:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220,38,38,0.45);
}

.pulse {
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 4px 14px rgba(220,38,38,0.35), 0 0 0 0 rgba(220,38,38,0.4); }
    70% { box-shadow: 0 4px 14px rgba(220,38,38,0.35), 0 0 0 12px rgba(220,38,38,0); }
    100% { box-shadow: 0 4px 14px rgba(220,38,38,0.35), 0 0 0 0 rgba(220,38,38,0); }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all var(--t-normal);
}

.header.scrolled {
    background: rgba(10,30,60,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* --- Header layout : 3 groupes alignes sur 1 ligne --- */
.header-content {
    display: flex;
    align-items: center;
    height: 64px;
    gap: var(--sp-6);
}

/* Logo texte */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    transition: opacity var(--t-fast);
}

.logo-name strong {
    font-weight: 700;
    color: var(--brand-red);
}

.logo:hover .logo-name {
    opacity: 0.85;
}

/* Nav : centre, pousse par flex auto-margins */
.nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-desktop a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.8);
    padding: var(--sp-2) var(--sp-3);
    border-radius: var(--r-sm);
    white-space: nowrap;
    line-height: 1;
    transition: all var(--t-fast);
    position: relative;
}

.nav-desktop a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.header.scrolled .nav-desktop a {
    color: rgba(255,255,255,0.8);
}

.header.scrolled .nav-desktop a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* Boutons header : a droite */
.header-buttons {
    display: flex;
    gap: var(--sp-2);
    align-items: center;
    flex-shrink: 0;
}

.btn-urgence-header {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    background: linear-gradient(135deg, var(--brand-red), var(--red-400));
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--r-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    white-space: nowrap;
    line-height: 1;
    transition: all var(--t-fast);
    box-shadow: var(--shadow-red);
}

.btn-urgence-header i {
    font-size: 0.75rem;
}

.btn-urgence-header:hover {
    background: linear-gradient(135deg, var(--brand-red-dark), var(--brand-red));
    color: var(--white);
    transform: translateY(-1px);
}

.btn-devis-header {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--r-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    white-space: nowrap;
    line-height: 1;
    transition: all var(--t-fast);
}

.btn-devis-header:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    transform: translateY(-1px);
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    padding: 0;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--t-normal);
    position: absolute;
    left: 8px;
}
.hamburger { top: 19px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }

.menu-toggle.active .hamburger { background: transparent; }
.menu-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: var(--sp-4) var(--sp-6);
    border-top: 1px solid var(--slate-100);
}

.nav-mobile.active { display: block; }

.nav-mobile ul { list-style: none; }
.nav-mobile li { margin-bottom: var(--sp-1); }

.nav-mobile a {
    display: block;
    padding: var(--sp-3) var(--sp-4);
    color: var(--slate-700);
    font-family: var(--font-heading);
    font-weight: 500;
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
}
.nav-mobile a:hover {
    background: var(--blue-50);
    color: var(--blue-700);
}

.btn-urgence-mobile {
    background: linear-gradient(135deg, var(--red-500), var(--red-400)) !important;
    color: var(--white) !important;
    text-align: center;
    border-radius: var(--r-md) !important;
    margin-top: var(--sp-2);
    font-weight: 600 !important;
}

/* ============================================
   HERO FULLSCREEN
   ============================================ */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        url('Artboard 1.png')
        center center / cover no-repeat fixed;
    overflow: hidden;
}

.hero-fullscreen__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,30,60,0.45) 0%,
        rgba(10,30,60,0.30) 45%,
        rgba(10,30,60,0.40) 100%
    );
    z-index: 1;
}


/* --- Contenu central : centre vertical vrai --- */
.hero-fullscreen__content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 780px;
    padding: 64px var(--sp-6) 70px; /* espace pour navbar en haut + bottom-bar en bas */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
}

/* Logo : point focal, respire entre navbar et titre */
.hero-fullscreen__logo-circle {
    margin-bottom: clamp(1rem, 2.5vh, 2rem);
    animation: heroLogoIn 1s var(--ease) both;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.45));
    line-height: 0;
}

.hero-fullscreen__logo-circle img {
    width: clamp(180px, 25vw, 300px);
    height: auto;
    object-fit: contain;
}

@keyframes heroLogoIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.85); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* H1 blanc */
.hero-fullscreen__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3.8vw, 2.6rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: clamp(0.25rem, 0.8vh, 0.5rem);
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    animation: heroFadeUp 0.8s 0.3s var(--ease) both;
}

/* H2 rouge */
.hero-fullscreen__title-accent {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 2.1rem);
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-bottom: clamp(0.75rem, 2vh, 1.5rem);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: heroFadeUp 0.8s 0.45s var(--ease) both;
}

/* Sous-titre */
.hero-fullscreen__subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: clamp(1.25rem, 3vh, 2rem);
    line-height: 1.6;
    animation: heroFadeUp 0.8s 0.6s var(--ease) both;
}

.hero-fullscreen__subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.hero-fullscreen__dot {
    margin: 0 var(--sp-2);
    color: var(--brand-red);
    font-weight: 700;
}

/* Numero de telephone */
.hero-fullscreen__phone {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    text-decoration: none;
    margin-bottom: clamp(1rem, 2.5vh, 1.75rem);
    animation: heroFadeUp 0.8s 0.75s var(--ease) both;
    transition: transform var(--t-normal);
}

.hero-fullscreen__phone:hover {
    transform: scale(1.05);
}

.hero-fullscreen__phone-icon {
    width: 46px;
    height: 46px;
    background: var(--brand-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    box-shadow: 0 0 0 0 rgba(192,57,43,0.5);
    animation: phoneRing 2.5s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); }
    50%      { box-shadow: 0 0 0 14px rgba(192,57,43,0); }
}

.hero-fullscreen__phone-number {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* CTAs */
.hero-fullscreen__ctas {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
    justify-content: center;
    animation: heroFadeUp 0.8s 0.9s var(--ease) both;
}

.hero-fullscreen__cta {
    min-width: 180px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}


/* --- Barre de reassurance en bas --- */
.hero-fullscreen__bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-6);
    padding: var(--sp-4) var(--sp-6);
    background: linear-gradient(180deg, transparent 0%, rgba(10,30,60,0.7) 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: heroFadeUp 0.8s 1.1s var(--ease) both;
}

.bottom-bar__item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
}

.bottom-bar__item i {
    color: var(--brand-red);
    font-size: 0.875rem;
}

.bottom-bar__separator {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.2);
}

/* Fleche scroll */
.hero-fullscreen__scroll {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(255,255,255,0.4);
    font-size: 1.25rem;
    text-decoration: none;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: color var(--t-fast);
}

.hero-fullscreen__scroll:hover {
    color: var(--white);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(10px); }
}

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

.form-group {
    margin-bottom: var(--sp-4);
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: var(--sp-4);
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    font-size: 0.875rem;
}

.input-icon input,
.input-icon select {
    padding-left: var(--sp-10) !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate-700);
    background: var(--slate-50);
    transition: all var(--t-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59,109,217,0.12);
    background: var(--white);
}

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

.form-note {
    font-size: 0.8125rem;
    color: var(--slate-400);
    margin-top: var(--sp-3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
}

.form-note i { font-size: 0.75rem; }

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--sp-12);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: var(--blue-50);
    color: var(--blue-700);
    padding: var(--sp-1) var(--sp-4);
    border-radius: var(--r-full);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--sp-4);
}

.section-tag--light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--slate-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   STATS
   ============================================ */
.stats {
    padding: var(--sp-16) 0;
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
    color: var(--white);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-8);
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: var(--sp-8) var(--sp-4);
}

.stat-icon {
    font-size: 2rem;
    color: var(--red-300);
    margin-bottom: var(--sp-4);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--red-300);
    display: inline;
    margin-left: var(--sp-1);
}

.stat-label {
    color: var(--blue-100);
    font-size: 0.9375rem;
    margin-top: var(--sp-2);
    font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--sp-20) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: var(--sp-8) var(--sp-6);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    transition: all var(--t-normal);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-normal);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover .service-card-accent {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-4);
    background: linear-gradient(135deg, var(--red-500), var(--red-400));
    color: var(--white);
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--r-full);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.service-card.featured {
    border-color: var(--blue-200, #bfdbfe);
    box-shadow: var(--shadow-md);
}
.service-card.featured .service-card-accent {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--red-500), var(--red-400));
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    color: var(--blue-700);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: var(--sp-5);
    transition: all var(--t-normal);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
    color: var(--white);
}

.service-card h3 {
    margin-bottom: var(--sp-3);
    font-size: 1.2rem;
}

.service-card > p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.7;
    flex-grow: 0;
}

.service-features {
    list-style: none;
    margin: var(--sp-5) 0;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-2);
    font-size: 0.875rem;
    color: var(--slate-600);
}

.service-features i {
    color: var(--green-500);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.btn-service {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    width: 100%;
    text-align: center;
    background: var(--slate-50);
    color: var(--blue-700);
    padding: var(--sp-3);
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: auto;
    transition: all var(--t-fast);
    border: 1px solid var(--slate-200);
}

.btn-service:hover {
    background: var(--blue-700);
    color: var(--white);
    border-color: var(--blue-700);
}

.btn-service i {
    font-size: 0.75rem;
    transition: transform var(--t-fast);
}

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

/* ============================================
   URGENCE
   ============================================ */
.urgence {
    padding: var(--sp-20) 0;
    background: linear-gradient(160deg, #fef2f2 0%, #fff7ed 50%, var(--white) 100%);
    position: relative;
}

.urgence-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--sp-12);
    align-items: start;
}

.urgence h2 {
    color: var(--slate-900);
    margin-bottom: var(--sp-4);
}

.urgence-subtitle {
    font-size: 1.0625rem;
    color: var(--slate-600);
    margin-bottom: var(--sp-8);
    line-height: 1.7;
}

.urgence-steps {
    margin-bottom: var(--sp-8);
}

.step {
    display: flex;
    gap: var(--sp-5);
    margin-bottom: var(--sp-6);
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--red-500), var(--red-400));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.125rem;
    box-shadow: var(--shadow-red);
}

.step-content h4 {
    margin-bottom: var(--sp-2);
    color: var(--slate-800);
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    margin-bottom: 0;
}

.urgence-cta {
    text-align: left;
}

.urgence-note {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-weight: 500;
    margin-top: var(--sp-3);
}

.urgence-visual {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.urgence-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-100);
    border-left: 4px solid var(--red-500);
}

.urgence-card-icon {
    color: var(--red-500);
    font-size: 1.5rem;
    margin-bottom: var(--sp-3);
}

.urgence-card h4 {
    margin-bottom: var(--sp-3);
    color: var(--slate-800);
}

.urgence-card ul {
    list-style: none;
    padding: 0;
}

.urgence-card ul li {
    padding: var(--sp-2) 0;
    font-size: 0.9375rem;
    color: var(--slate-600);
    border-bottom: 1px solid var(--slate-100);
}

.urgence-card ul li:last-child { border-bottom: none; }

.urgence-card ul li strong {
    color: var(--red-600);
    font-weight: 700;
}

.urgence-card > p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    margin-bottom: 0;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: var(--sp-20) 0;
    background: var(--slate-50);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--sp-4);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-700), var(--blue-500), var(--red-400));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--blue-700);
    margin-bottom: var(--sp-4);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 3px solid var(--blue-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.process-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: var(--sp-6) var(--sp-4);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    transition: all var(--t-normal);
    height: 100%;
}

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

.process-icon {
    color: var(--blue-600);
    font-size: 1.5rem;
    margin-bottom: var(--sp-4);
}

.process-card h3 {
    font-size: 1rem;
    margin-bottom: var(--sp-3);
}

.process-card p {
    font-size: 0.8125rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   REALISATIONS
   ============================================ */
.realisations {
    padding: var(--sp-20) 0;
    background: var(--white);
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
}

.realisation-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    transition: all var(--t-normal);
    display: flex;
    flex-direction: column;
}

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

.realisation-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.realisation-overlay {
    position: absolute;
    top: var(--sp-3);
    left: var(--sp-3);
}

.realisation-type {
    background: rgba(15,37,87,0.85);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.realisation-info {
    padding: var(--sp-6);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.realisation-info h3 {
    margin-bottom: var(--sp-2);
    font-size: 1.125rem;
}

.realisation-location {
    color: var(--blue-600);
    font-weight: 600;
    font-size: 0.8125rem;
    margin-bottom: var(--sp-3);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.realisation-desc {
    font-size: 0.9375rem;
    color: var(--slate-500);
    margin-bottom: var(--sp-4);
    line-height: 1.6;
    flex-grow: 1;
}

.realisation-details {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--slate-500);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--slate-100);
}

.realisation-details span {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.realisation-details i {
    color: var(--blue-500);
    font-size: 0.75rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--sp-20) 0;
    background: linear-gradient(160deg, var(--slate-50) 0%, var(--blue-50) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    transition: all var(--t-normal);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-6);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--blue-100);
    line-height: 1;
}

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

.testimonial-stars {
    display: flex;
    gap: var(--sp-1);
    margin-bottom: var(--sp-4);
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.875rem;
}

.testimonial-text {
    margin: 0 0 var(--sp-5);
}

.testimonial-text p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-600);
    margin-bottom: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--slate-100);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    color: var(--slate-800);
    font-size: 0.9375rem;
}

.testimonial-info span {
    color: var(--slate-400);
    font-size: 0.8125rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: var(--sp-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-4);
}

.testimonials-cta p {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: var(--sp-20) 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.why-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    transition: all var(--t-normal);
}

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

.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    color: var(--blue-700);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto var(--sp-5);
    transition: all var(--t-normal);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
    color: var(--white);
    transform: scale(1.05);
}

.why-card h3 {
    margin-bottom: var(--sp-3);
    font-size: 1.1rem;
}

.why-card p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   ZONE
   ============================================ */
.zone {
    padding: var(--sp-20) 0;
    background: var(--slate-50);
}

.zone-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--sp-8);
    align-items: start;
}

.zone-city--main {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
    color: var(--white);
    padding: var(--sp-5) var(--sp-6);
    border-radius: var(--r-lg);
    margin-bottom: var(--sp-6);
}

.zone-city-icon {
    font-size: 1.5rem;
    color: var(--red-300);
}

.zone-city--main h3 {
    color: var(--white);
    margin-bottom: var(--sp-1);
    font-size: 1.2rem;
}

.zone-city--main p {
    font-size: 0.875rem;
    opacity: 0.85;
    margin-bottom: 0;
}

.zone-cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
}

.zone-city {
    background: var(--white);
    padding: var(--sp-4);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--slate-100);
    transition: all var(--t-fast);
}

.zone-city:hover {
    border-color: var(--blue-200, #bfdbfe);
    box-shadow: var(--shadow-sm);
}

.zone-city strong {
    display: block;
    font-size: 0.875rem;
    color: var(--slate-800);
    margin-bottom: var(--sp-1);
}

.zone-city span {
    font-size: 0.75rem;
    color: var(--slate-400);
}

.zone-map {
    height: 100%;
    min-height: 400px;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.zone-note {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-top: var(--sp-8);
    background: var(--blue-50);
    padding: var(--sp-4) var(--sp-6);
    border-radius: var(--r-md);
    border-left: 4px solid var(--blue-600);
}

.zone-note i {
    color: var(--blue-600);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: var(--sp-1);
}

.zone-note p {
    font-size: 0.9375rem;
    color: var(--slate-600);
    margin-bottom: 0;
}

/* ============================================
   DEVIS
   ============================================ */
.devis {
    padding: var(--sp-20) 0;
    background: var(--white);
}

.devis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: start;
}

.devis h2 {
    margin-bottom: var(--sp-4);
}

.devis-subtitle {
    font-size: 1.0625rem;
    color: var(--slate-500);
    margin-bottom: var(--sp-8);
}

.devis-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.benefit {
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
}

.benefit-icon {
    color: var(--green-500);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: var(--sp-1);
}

.benefit-text strong {
    display: block;
    color: var(--slate-800);
    margin-bottom: var(--sp-1);
    font-size: 0.9375rem;
}

.benefit-text p {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 0;
}

.devis-form-container {
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--slate-100);
    overflow: hidden;
}

.devis-form {
    padding: var(--sp-8);
}

.devis-form h3 {
    margin-bottom: var(--sp-6);
    text-align: center;
    color: var(--blue-700);
    font-size: 1.35rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--sp-20) 0;
    background: var(--slate-50);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--sp-3);
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--slate-100);
    transition: all var(--t-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--sp-5) var(--sp-6);
    background: var(--white);
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--slate-800);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    transition: all var(--t-fast);
}

.faq-question:hover {
    color: var(--blue-700);
}

.faq-question i {
    transition: transform var(--t-normal);
    color: var(--slate-400);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.faq-question.active {
    color: var(--blue-700);
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--blue-700);
}

.faq-answer {
    padding: 0 var(--sp-6);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slow), padding var(--t-normal);
}

.faq-answer.active {
    padding: 0 var(--sp-6) var(--sp-6);
    max-height: 1000px;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-600);
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ul {
    margin: var(--sp-3) 0;
    padding-left: var(--sp-5);
}

.faq-answer ul li {
    font-size: 0.9375rem;
    color: var(--slate-600);
    margin-bottom: var(--sp-2);
    line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--sp-20) 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

.contact-card {
    background: var(--slate-50);
    padding: var(--sp-6);
    border-radius: var(--r-lg);
    border: 1px solid var(--slate-100);
    transition: all var(--t-fast);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
    color: var(--white);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: var(--sp-4);
}

.contact-card h4 {
    margin-bottom: var(--sp-2);
    font-size: 1rem;
    color: var(--slate-800);
}

.contact-card p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    margin-bottom: 0;
}

.contact-card p a {
    color: var(--blue-600);
    font-weight: 500;
}

.contact-card p small {
    font-size: 0.8125rem;
    color: var(--slate-400);
}

.contact-map {
    height: 100%;
    min-height: 360px;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Placeholders */
.image-placeholder,
.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: inherit;
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 50%, var(--blue-500) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    gap: var(--sp-3);
}

.image-placeholder i,
.map-placeholder i {
    font-size: 2.5rem;
    opacity: 0.6;
}

.image-placeholder p,
.map-placeholder p {
    font-size: 0.875rem;
    margin-bottom: 0;
    text-align: center;
    padding: 0 var(--sp-4);
    opacity: 0.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: var(--sp-16) 0 var(--sp-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: var(--sp-10);
    margin-bottom: var(--sp-12);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: var(--sp-6);
    font-size: 1rem;
    position: relative;
    padding-bottom: var(--sp-3);
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--red-500);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--sp-2);
}

.footer-slogan {
    font-size: 0.8125rem;
    color: var(--slate-500);
    margin-bottom: var(--sp-4);
}

.footer-about {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: var(--sp-5);
}

.footer-social {
    display: flex;
    gap: var(--sp-3);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    color: var(--slate-400);
    border-radius: var(--r-md);
    transition: all var(--t-fast);
}

.footer-social a:hover {
    background: var(--blue-700);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--sp-2);
}

.footer-links a {
    color: var(--slate-400);
    font-size: 0.875rem;
    transition: all var(--t-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: var(--sp-2);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-bottom: var(--sp-3);
    font-size: 0.875rem;
}

.footer-contact li a {
    color: var(--slate-400);
}
.footer-contact li a:hover { color: var(--white); }

.footer-contact i {
    color: var(--red-400);
    margin-top: 3px;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.footer-certifs {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
    margin-top: var(--sp-5);
}

.certification {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    background: rgba(255,255,255,0.06);
    padding: var(--sp-2) var(--sp-3);
    border-radius: var(--r-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-300);
}

.certification i {
    color: var(--green-500);
    font-size: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: var(--sp-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-4);
}

.footer-bottom p {
    font-size: 0.8125rem;
    margin-bottom: 0;
}

.legal-links {
    display: flex;
    gap: var(--sp-6);
}

.legal-links a {
    color: var(--slate-500);
    font-size: 0.8125rem;
    transition: color var(--t-fast);
}

.legal-links a:hover {
    color: var(--white);
}

/* ============================================
   FLOATING URGENCE
   ============================================ */
.floating-urgence {
    position: fixed;
    bottom: var(--sp-6);
    right: var(--sp-6);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(220,38,38,0.4);
    z-index: 999;
    transition: all var(--t-normal);
    text-align: center;
    text-decoration: none;
    animation: float-pulse 3s ease-in-out infinite;
}

.floating-urgence:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 28px rgba(220,38,38,0.5);
}

.floating-urgence i {
    font-size: 1.25rem;
    margin-bottom: 1px;
}

.floating-urgence span {
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes float-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(220,38,38,0.4); }
    50% { box-shadow: 0 4px 20px rgba(220,38,38,0.4), 0 0 0 8px rgba(220,38,38,0.12); }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-fullscreen__bottom-bar {
        gap: var(--sp-4);
        padding: var(--sp-3) var(--sp-4);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .urgence-content {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-timeline::before { display: none; }

    .devis-content,
    .contact-content,
    .zone-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-4);
    }

    .zone-cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content { height: 64px; }
    .nav-mobile { top: 64px; }

    .nav-desktop,
    .header-buttons { display: none; }
    .menu-toggle { display: block; }

    .hero-fullscreen__phone-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .hero-fullscreen__cta {
        min-width: 150px;
        font-size: 0.875rem;
    }

    .badge {
        padding: var(--sp-2) var(--sp-3);
    }
    .badge-icon { font-size: 1rem; }

    .services-grid,
    .why-grid,
    .testimonials-grid,
    .realisations-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: var(--sp-4);
    }

    .process-step {
        display: flex;
        gap: var(--sp-4);
        text-align: left;
    }

    .process-number {
        margin: 0;
        flex-shrink: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-4);
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .zone-cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-fullscreen__bottom-bar {
        gap: var(--sp-3);
        padding: var(--sp-3) var(--sp-4);
        flex-wrap: wrap;
        justify-content: center;
    }

    .bottom-bar__item {
        font-size: 0.6875rem;
    }

    .bottom-bar__separator {
        display: none;
    }

    .hero-fullscreen__scroll {
        bottom: 52px;
    }

    .floating-urgence {
        width: 56px;
        height: 56px;
        bottom: var(--sp-4);
        right: var(--sp-4);
    }
    .floating-urgence i { font-size: 1.1rem; }

    .stat-number { font-size: 2.75rem; }
    .stat-suffix { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 var(--sp-4); }

    .hero-fullscreen__ctas {
        flex-direction: column;
        align-items: center;
    }
    .hero-fullscreen__cta {
        width: 100%;
        max-width: 300px;
    }
    .hero-fullscreen__logo img {
        width: 100px;
    }
    .hero-fullscreen__phone-number {
        font-size: 1.6rem;
    }

    .zone-cities-grid {
        grid-template-columns: 1fr;
    }

    .stat-card { padding: var(--sp-4) var(--sp-2); }
    .stat-number { font-size: 2.25rem; }
}
