/* ==========================================================================
   SARL Thermoservices - Style V2.00
   Palette bleue moderne, sans orange.
   ========================================================================== */

:root {
    /* Palette bleue principale */
    --blue-900: #0a1f3d;     /* Bleu nuit profond */
    --blue-800: #0f2147;     /* Bleu marine */
    --blue-700: #1e3a5f;     /* Bleu primaire (hero, headers) */
    --blue-600: #2d5986;     /* Bleu secondaire */
    --blue-500: #3b7dc4;     /* Bleu accent (boutons, liens) */
    --blue-400: #5fa3e8;     /* Bleu clair */
    --blue-100: #e3eef9;     /* Bleu tres clair (backgrounds doux) */
    --blue-50:  #f4f8fc;     /* Bleu fond */

    /* Accent doré subtil pour les CTA */
    --accent: #f0a830;       /* Ambre / doré */
    --accent-dark: #d68a15;

    /* Neutres */
    --white: #ffffff;
    --gray-50: #f7f9fc;
    --gray-100: #eef2f7;
    --gray-200: #dde4ec;
    --gray-300: #c1cdd9;
    --gray-400: #8b97a5;
    --gray-500: #5b6675;
    --gray-600: #3d4754;
    --gray-700: #2a323d;
    --gray-800: #1a2028;

    --success: #16a34a;
    --error: #dc2626;
    --warning: #f59e0b;

    /* Typo */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Layout */
    --container-max: 1200px;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(15, 33, 71, 0.08);
    --shadow: 0 4px 16px rgba(15, 33, 71, 0.10);
    --shadow-lg: 0 12px 40px rgba(15, 33, 71, 0.16);

    --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-500); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-700); }

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

h1, h2, h3, h4 {
    font-family: var(--font-sans);
    color: var(--blue-800);
    font-weight: 700;
    line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--blue-500);
    margin-bottom: 14px;
}

/* ====================================================
   TOP BAR (fine, au-dessus de la navbar)
   ==================================================== */
.top-bar {
    background: var(--blue-900);
    color: var(--gray-200);
    font-size: 0.82rem;
    padding: 8px 0;
}
.top-bar-content {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.top-bar-hours { display: inline-flex; align-items: center; gap: 6px; }
.top-bar-right { display: inline-flex; gap: 14px; align-items: center; }
.top-bar-right a { color: var(--gray-200); }
.top-bar-right a:hover { color: var(--white); }
.top-bar-sep { color: var(--gray-500); }
.top-bar-rdv {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; border-radius: 100px;
    background: var(--accent); color: var(--blue-900);
    font-weight: 700; font-size: 0.78rem;
    transition: all var(--transition);
}
.top-bar-rdv:hover {
    background: var(--white); color: var(--blue-900);
    transform: scale(1.03);
}

/* ====================================================
   NAVBAR
   ==================================================== */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar-content {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; }
.brand-text {
    display: flex; flex-direction: column; line-height: 1.1;
    color: var(--blue-800); font-size: 1.05rem; font-weight: 600;
}
.brand-text strong {
    color: var(--blue-700); font-weight: 800; font-size: 0.85rem;
    letter-spacing: 0.04em; text-transform: uppercase;
}
.brand-text small { font-size: 0.72rem; color: var(--gray-500); font-weight: 400; }

.navbar-menu {
    display: flex; gap: 4px; list-style: none; flex: 1; justify-content: center;
}
.navbar-menu a {
    display: inline-block; padding: 10px 16px; color: var(--gray-700); font-weight: 500;
    border-radius: 8px; font-size: 0.95rem;
}
.navbar-menu a:hover { background: var(--blue-50); color: var(--blue-700); }
.navbar-menu a.active { color: var(--blue-700); background: var(--blue-50); font-weight: 600; }

.navbar-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.navbar-phone {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 8px;
    color: var(--blue-700); font-weight: 700; font-size: 0.95rem;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.navbar-phone:hover { background: var(--blue-50); border-color: var(--blue-500); color: var(--blue-700); }
.navbar-quote { font-size: 0.92rem; }

.navbar-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 6px;
}
.navbar-toggle span {
    width: 24px; height: 2.5px; background: var(--blue-700); border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ====================================================
   BOUTONS
   ==================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px; border-radius: 8px;
    font-family: inherit; font-size: 0.95rem; font-weight: 600;
    text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
    transition: all var(--transition); white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-sm { padding: 7px 14px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--blue-700); color: var(--white); border-color: var(--blue-700);
}
.btn-primary:hover {
    background: var(--blue-800); border-color: var(--blue-800);
    color: var(--white); transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(15, 33, 71, 0.25);
}

.btn-outline {
    background: transparent; color: var(--blue-700); border-color: var(--blue-700);
}
.btn-outline:hover {
    background: var(--blue-700); color: var(--white);
}
.btn-outline-light {
    background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white); color: var(--blue-700); border-color: var(--white);
}

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

.btn-ghost {
    background: rgba(255,255,255,0.10); color: var(--white);
    border-color: rgba(255,255,255,0.35); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.20); border-color: var(--white); color: var(--white); }

.btn-link {
    background: none; color: var(--blue-700); border-color: transparent; padding: 11px 12px;
}
.btn-link:hover { color: var(--blue-500); background: var(--blue-50); }

/* ====================================================
   FLASH MESSAGES
   ==================================================== */
.flash-container { max-width: 700px; margin: 16px auto; padding: 0 24px; }
.flash {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 14px 18px; border-radius: var(--radius); font-size: 0.95rem;
    border: 1px solid; margin-bottom: 10px;
}
.flash-success { background: #ecfdf5; border-color: #86efac; color: #14532d; }
.flash-error   { background: #fef2f2; border-color: #fca5a5; color: #7f1d1d; }
.flash-close { background: none; border: 0; font-size: 1.4rem; cursor: pointer; color: inherit; }

/* ====================================================
   HERO
   ==================================================== */
.hero {
    position: relative; min-height: 88vh;
    display: flex; align-items: center;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    color: var(--white); padding: 100px 0 80px;
}
.hero-content { max-width: 780px; }

/* Logo + nom entreprise dans le hero */
.hero-brand {
    display: inline-flex; align-items: center; gap: 14px;
    margin-bottom: 22px;
    padding: 10px 18px 10px 12px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
}
.hero-logo {
    width: 56px; height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    padding: 4px;
}
.hero-brand-text {
    display: flex; flex-direction: column; line-height: 1;
    color: var(--white);
}
.hero-brand-text strong {
    font-size: 0.78rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent);
}
.hero-brand-text span {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
    margin-top: 4px; letter-spacing: -0.01em;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px; border-radius: 100px;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
    margin-bottom: 24px;
}
.hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 0 6px rgba(240, 168, 48, 0.25);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(240, 168, 48, 0.25); }
    50% { box-shadow: 0 0 0 10px rgba(240, 168, 48, 0); }
}

.hero h1 {
    color: var(--white); font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    line-height: 1.05; margin-bottom: 22px; letter-spacing: -0.025em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero-accent {
    background: linear-gradient(120deg, var(--accent) 0%, #ffd479 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-display); font-style: italic;
    font-weight: 700;
}
.hero-subtitle {
    font-size: 1.15rem; max-width: 620px; line-height: 1.6;
    color: rgba(255,255,255,0.92); margin-bottom: 32px;
}

.hero-actions {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px;
}
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none;
    color: rgba(255,255,255,0.95); font-size: 0.92rem;
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--accent); }

.hero-scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
    color: var(--white); animation: bounce 2.4s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* ====================================================
   PAGE HERO (sous-pages)
   ==================================================== */
.page-hero {
    background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
    color: var(--white); padding: 80px 0 60px; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 720px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--accent); }

/* ====================================================
   SECTIONS GENERIQUES
   ==================================================== */
.section-padding { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head p { color: var(--gray-500); font-size: 1.05rem; margin-top: 10px; }
.section-cta { text-align: center; margin-top: 40px; }

/* TRUST */
.trust-section { padding: 70px 0; background: var(--blue-50); }
.trust-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.trust-item { text-align: center; padding: 24px 16px; }
.trust-icon {
    width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 16px;
    background: var(--white); color: var(--blue-700);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
}
.trust-item h3 { color: var(--blue-800); margin-bottom: 8px; font-size: 1.15rem; }
.trust-item p { color: var(--gray-500); font-size: 0.95rem; }

/* SECTION CTA PRISE DE RENDEZ-VOUS */
.rdv-cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--blue-50) 0%, #e8f1fb 100%);
    position: relative; overflow: hidden;
}
.rdv-cta-section::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(240, 168, 48, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.rdv-cta-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
}
.rdv-cta-content h2 { margin-bottom: 14px; }
.rdv-cta-highlight {
    background: linear-gradient(120deg, var(--accent) 0%, #ffd479 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-display); font-style: italic;
}
.rdv-cta-lead {
    font-size: 1.05rem; color: var(--gray-600);
    margin-bottom: 24px; max-width: 520px; line-height: 1.65;
}
.rdv-cta-steps {
    list-style: none; padding: 0; margin: 0 0 30px;
    display: grid; gap: 12px;
}
.rdv-cta-steps li {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 16px; background: var(--white); border-radius: var(--radius);
    color: var(--gray-700); font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}
.rdv-cta-steps li span {
    flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
    background: var(--blue-700); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
}
.rdv-cta-actions {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.rdv-cta-pulse {
    position: relative; box-shadow: 0 8px 24px rgba(15, 33, 71, 0.18);
}
.rdv-cta-pulse::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    background: var(--blue-700); opacity: 0.25; z-index: -1;
    animation: ctaPulse 2.4s infinite;
}
@keyframes ctaPulse {
    0%   { transform: scale(1); opacity: 0.25; }
    70%  { transform: scale(1.18); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Calendrier illustré */
.rdv-cta-visual {
    display: flex; align-items: center; justify-content: center;
}
.rdv-calendar {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 16px 50px rgba(15, 33, 71, 0.15);
    width: 100%; max-width: 420px;
    transform: rotate(-1.5deg);
    transition: transform 400ms ease;
    border: 1px solid var(--gray-100);
}
.rdv-cta-visual:hover .rdv-calendar { transform: rotate(0deg) scale(1.02); }

.rdv-calendar-head {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 14px; margin-bottom: 14px;
    border-bottom: 1px solid var(--gray-100);
}
.rdv-calendar-month {
    font-weight: 700; color: var(--blue-800); font-size: 0.95rem;
}
.rdv-calendar-arrows { display: flex; gap: 4px; }
.rdv-calendar-arrows span {
    width: 28px; height: 28px; border-radius: 8px;
    background: var(--gray-100);
}

.rdv-calendar-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
    margin-bottom: 16px;
}
.rdv-day {
    aspect-ratio: 1; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-50);
}
.rdv-day-label {
    background: transparent; color: var(--gray-400);
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
}
.rdv-day-past {
    background: transparent; color: var(--gray-300);
    text-decoration: line-through;
}
.rdv-day-off {
    background: transparent; color: var(--gray-300);
}
.rdv-day-available {
    background: var(--blue-100, #d6e6f7); color: var(--blue-700); font-weight: 600;
    cursor: pointer;
}
.rdv-day-available:hover {
    background: var(--blue-300, #9bbedf);
}
.rdv-day-selected {
    background: var(--blue-700); color: var(--white); font-weight: 700;
    box-shadow: 0 4px 12px rgba(15, 33, 71, 0.30);
    transform: scale(1.06);
}

.rdv-calendar-slots {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.rdv-slot {
    padding: 6px 12px; border-radius: 8px;
    background: var(--blue-100, #d6e6f7); color: var(--blue-700);
    font-size: 0.82rem; font-weight: 600;
}
.rdv-slot-taken {
    background: var(--gray-100); color: var(--gray-400);
    text-decoration: line-through;
}
.rdv-slot-selected {
    background: var(--accent); color: var(--blue-900);
    box-shadow: 0 4px 12px rgba(240, 168, 48, 0.4);
}

.rdv-calendar-legend {
    display: flex; gap: 16px; padding-top: 12px;
    border-top: 1px solid var(--gray-100);
    font-size: 0.78rem; color: var(--gray-500);
}
.rdv-calendar-legend span { display: inline-flex; align-items: center; gap: 6px; }
.rdv-calendar-legend i {
    width: 10px; height: 10px; border-radius: 50%;
}
.dot-available { background: var(--blue-100, #d6e6f7); border: 1.5px solid var(--blue-300, #9bbedf); }
.dot-selected { background: var(--blue-700); }

@media (max-width: 768px) {
    .rdv-cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .rdv-calendar { transform: rotate(0deg); }
}

/* SPÉCIALITÉS (3 services phares) */
.specialties-section {
    padding: 90px 0 60px;
    background: linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%);
}
.specialties-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.specialty-card {
    position: relative; display: block; padding: 36px 28px 28px;
    background: var(--white); border-radius: var(--radius-lg);
    border: 2px solid var(--gray-100); color: var(--gray-700);
    text-decoration: none; transition: all var(--transition); overflow: hidden;
}
.specialty-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-700));
    transform: scaleX(0); transform-origin: left; transition: transform 400ms ease;
}
.specialty-card:hover {
    border-color: var(--blue-500); transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 33, 71, 0.15);
}
.specialty-card:hover::before { transform: scaleX(1); }

.specialty-badge {
    position: absolute; top: 18px; right: 18px;
    padding: 4px 12px; border-radius: 100px;
    background: var(--blue-50); color: var(--blue-700);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}

.specialty-icon {
    width: 72px; height: 72px; border-radius: 16px; margin-bottom: 20px;
    background: var(--blue-50); color: var(--blue-700);
    display: flex; align-items: center; justify-content: center;
    transition: transform var(--transition);
}
.specialty-card:hover .specialty-icon { transform: scale(1.06) rotate(-3deg); }

/* Couleurs thématiques par spécialité */
.specialty-icon-sun {
    background: linear-gradient(135deg, #fff4e0 0%, #ffe0b8 100%);
    color: #ea580c;  /* Orange chaud */
}
.specialty-icon-snow {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;  /* Bleu froid */
}
.specialty-icon-bolt {
    background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%);
    color: #ca8a04;  /* Jaune/ambre éclair */
}
.specialty-card h3 {
    font-size: 1.5rem; color: var(--blue-800); margin-bottom: 4px;
}
.specialty-tagline {
    color: var(--blue-500); font-weight: 600; font-size: 0.95rem; margin-bottom: 18px;
}
.specialty-points {
    list-style: none; padding: 0; margin: 0 0 24px;
}
.specialty-points li {
    padding-left: 22px; position: relative; padding-bottom: 8px;
    font-size: 0.93rem; color: var(--gray-600); line-height: 1.5;
}
.specialty-points li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    color: var(--blue-500); font-weight: 800;
}
.specialty-card-featured .specialty-points li::before { color: var(--accent); }
.specialty-link {
    display: inline-block; color: var(--blue-500); font-weight: 600;
    font-size: 0.92rem; transition: transform var(--transition);
}
.specialty-card:hover .specialty-link { transform: translateX(3px); }

/* SECTION ÉCONOMIES & AIDES */
.savings-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
    color: var(--white);
    position: relative; overflow: hidden;
}
.savings-section::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(240, 168, 48, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.savings-grid {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px;
    align-items: center; position: relative; z-index: 1;
}
.savings-content .eyebrow { color: var(--accent); }
.savings-content h2 { color: var(--white); margin-bottom: 14px; }
.savings-lead {
    font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; max-width: 540px;
}
.savings-aids {
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 30px;
}
.savings-aid {
    padding: 18px 20px; background: rgba(255,255,255,0.06);
    border-radius: var(--radius); border-left: 3px solid var(--accent);
}
.savings-aid h4 {
    color: var(--accent); font-size: 0.95rem; margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 0.03em; font-weight: 700;
}
.savings-aid p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.5; }
.savings-aid p strong { color: var(--white); font-weight: 700; }
.savings-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.savings-cta .btn-link { color: var(--accent); }
.savings-cta .btn-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.savings-stat-box {
    background: rgba(255,255,255,0.06); border-radius: var(--radius-lg);
    padding: 30px; border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: grid; gap: 22px;
}
.savings-stat {
    padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.savings-stat:last-child { padding-bottom: 0; border-bottom: 0; }
.savings-stat strong {
    display: block; font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 700; color: var(--accent); line-height: 1;
}
.savings-stat span {
    display: block; color: rgba(255,255,255,0.85); font-size: 0.92rem;
    margin-top: 6px; line-height: 1.4;
}

/* SERVICES */
.services-section { padding: 90px 0; background: var(--white); }
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.service-card {
    display: block; padding: 30px;
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    color: var(--gray-700); text-decoration: none;
    transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-700));
    transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover {
    border-color: var(--blue-500); transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px; border-radius: 12px; margin-bottom: 18px;
    background: var(--blue-50); color: var(--blue-700);
    display: flex; align-items: center; justify-content: center;
    transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }

/* Icones thématiques colorées (section "Et aussi") */
.service-icon-flame {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;  /* Rouge orangé flamme */
}
.service-icon-faucet {
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
    color: #0891b2;  /* Bleu eau */
}
.service-icon-droplet {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4338ca;  /* Bleu acier (boue/pipe) */
}
.service-icon-bulb {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;  /* Jaune ambré ampoule */
}
.service-card h3 { color: var(--blue-800); margin-bottom: 8px; }
.service-card p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 14px; }
.service-link { color: var(--blue-500); font-weight: 600; font-size: 0.9rem; }
.service-card:hover .service-link { color: var(--blue-700); }

/* SERVICES DETAIL */
.services-detail { padding: 60px 0; background: var(--gray-50); }

.services-sommaire {
    background: var(--white); border-bottom: 1px solid var(--gray-100);
    padding: 16px 0; position: sticky; top: 56px; z-index: 50;
}
.services-sommaire .container {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
}
.services-sommaire-label {
    color: var(--gray-500); font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.services-sommaire a {
    padding: 6px 12px; border-radius: 6px;
    color: var(--blue-700); font-size: 0.9rem; font-weight: 500;
    transition: background var(--transition);
}
.services-sommaire a:hover { background: var(--blue-50); }

.service-block {
    display: grid; grid-template-columns: 100px 1fr; gap: 24px;
    background: var(--white); padding: 32px; border-radius: var(--radius-lg);
    margin-bottom: 24px; box-shadow: var(--shadow-sm); scroll-margin-top: 140px;
}
.service-block-feature {
    border: 2px solid var(--blue-100);
    box-shadow: 0 8px 30px rgba(15, 33, 71, 0.08);
}
.service-block-feature::before {
    content: ''; display: block; position: absolute;
}
.service-block-tag {
    display: inline-block; padding: 4px 12px; border-radius: 100px;
    background: var(--blue-50); color: var(--blue-700);
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase; margin-bottom: 10px;
}
.service-bonus {
    background: var(--blue-50); border-left: 3px solid var(--blue-500);
    padding: 14px 18px; border-radius: 8px;
    margin: 16px 0; font-size: 0.95rem; color: var(--gray-700);
}
.service-bonus strong { color: var(--blue-800); }

.services-separator {
    display: flex; align-items: center; gap: 16px;
    margin: 60px 0 30px; color: var(--gray-400);
    text-transform: uppercase; letter-spacing: 0.15em;
    font-size: 0.85rem; font-weight: 600;
}
.services-separator::before,
.services-separator::after {
    content: ''; flex: 1; height: 1px; background: var(--gray-200);
}
.service-block-icon {
    font-size: 3rem; display: flex; align-items: flex-start; justify-content: center;
}
.service-block-body h2 { margin-bottom: 12px; }
.service-features {
    list-style: none; margin: 16px 0; padding: 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px 18px;
}
.service-features li {
    padding-left: 22px; position: relative; color: var(--gray-600); font-size: 0.95rem;
}
.service-features li::before {
    content: '✓'; position: absolute; left: 0; color: var(--blue-500); font-weight: 700;
}

/* ABOUT */
.about-section { padding: 90px 0; background: var(--white); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-image img {
    width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg);
}
.about-image-stamp {
    position: absolute; bottom: 24px; left: 24px;
    background: var(--blue-700); color: var(--white);
    padding: 16px 22px; border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.20);
    display: flex; flex-direction: column; line-height: 1;
}
.about-image-stamp strong { font-size: 2rem; font-weight: 800; }
.about-image-stamp span { font-size: 0.78rem; margin-top: 4px; opacity: 0.9; }

.about-content h2 { margin-bottom: 16px; }
.about-lead { font-size: 1.1rem; color: var(--gray-700); margin-bottom: 16px; }
.about-points { list-style: none; padding: 0; margin: 24px 0; }
.about-points li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; color: var(--gray-700); font-size: 0.98rem;
}
.about-points svg { color: var(--blue-500); flex-shrink: 0; }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* MÉTHODE */
.method-section { padding: 90px 0; background: var(--blue-50); }
.method-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.method-step {
    background: var(--white); padding: 30px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); position: relative;
}
.step-num {
    font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
    color: var(--blue-100); line-height: 1; margin-bottom: 12px;
}
.method-step h3 { color: var(--blue-800); margin-bottom: 8px; font-size: 1.15rem; }
.method-step p { color: var(--gray-500); font-size: 0.95rem; }

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 100%);
    color: var(--white); padding: 60px 0;
}
.cta-banner-content {
    display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 4px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* RÉALISATIONS */
.realisations-preview, .realisations-section { padding: 90px 0; background: var(--white); }
.realisations-section { background: var(--gray-50); }

.rea-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.rea-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: all var(--transition);
    display: flex; flex-direction: column;
}
.rea-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rea-image {
    position: relative; aspect-ratio: 4/3; background: var(--blue-50);
    overflow: hidden; cursor: pointer;
}
.rea-image img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease;
}
.rea-card:hover .rea-image img { transform: scale(1.05); }
.rea-placeholder {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: var(--gray-300);
}
.rea-tag {
    position: absolute; top: 12px; left: 12px;
    background: rgba(255,255,255,0.95); color: var(--blue-700);
    padding: 4px 10px; border-radius: 6px; font-size: 0.78rem; font-weight: 600;
    backdrop-filter: blur(10px);
}
.rea-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.rea-body h3 { color: var(--blue-800); font-size: 1.1rem; line-height: 1.3; }
.rea-location { color: var(--gray-500); font-size: 0.85rem; }
.rea-result { color: var(--gray-600); font-size: 0.95rem; flex: 1; }
.rea-details { margin-top: 8px; font-size: 0.9rem; }
.rea-details summary {
    color: var(--blue-500); cursor: pointer; font-weight: 600; padding: 4px 0;
}
.rea-details p { color: var(--gray-500); margin-top: 6px; line-height: 1.5; }

.rea-filters {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 32px;
}
.rea-filter {
    background: var(--white); color: var(--gray-600);
    border: 1.5px solid var(--gray-200); padding: 7px 16px; border-radius: 100px;
    font-family: inherit; font-size: 0.9rem; font-weight: 500; cursor: pointer;
    transition: all var(--transition);
}
.rea-filter:hover { border-color: var(--blue-500); color: var(--blue-700); }
.rea-filter.active { background: var(--blue-700); color: var(--white); border-color: var(--blue-700); }

/* AVIS GOOGLE */
.reviews-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%);
}
.reviews-summary {
    display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
    margin-top: 20px; padding: 12px 22px;
    background: var(--white); border-radius: 100px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
}
.reviews-summary-stars { display: inline-flex; gap: 2px; }
.reviews-summary-rating {
    font-size: 1.4rem; font-weight: 800; color: var(--blue-800); line-height: 1;
}
.reviews-summary-out { font-size: 0.85rem; font-weight: 500; color: var(--gray-500); }
.reviews-summary-count { color: var(--gray-500); font-size: 0.95rem; font-weight: 500; }

/* Carousel horizontal d'avis */
.reviews-carousel-wrapper {
    position: relative;
    margin-top: 36px;
}
.reviews-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 4px 18px;
    /* Scrollbar custom */
    scrollbar-width: thin;
    scrollbar-color: var(--blue-300) transparent;
    /* Masque dégradé sur les bords pour suggérer "il y a plus à voir" */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.reviews-carousel::-webkit-scrollbar { height: 6px; }
.reviews-carousel::-webkit-scrollbar-track { background: transparent; }
.reviews-carousel::-webkit-scrollbar-thumb { background: var(--blue-200, #c1d5ea); border-radius: 4px; }
.reviews-carousel::-webkit-scrollbar-thumb:hover { background: var(--blue-300, #9bbedf); }

/* Boutons de navigation flèches */
.reviews-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 5;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white);
    color: var(--blue-700);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.reviews-nav:hover {
    background: var(--blue-700); color: var(--white);
    border-color: var(--blue-700);
    transform: translateY(-50%) scale(1.05);
}
.reviews-nav:disabled,
.reviews-nav.is-disabled {
    opacity: 0; pointer-events: none;
}
.reviews-nav-prev { left: -10px; }
.reviews-nav-next { right: -10px; }

@media (max-width: 768px) {
    .reviews-nav { display: none; }
    .reviews-carousel {
        -webkit-mask-image: none;
                mask-image: none;
    }
}

.review-card {
    flex: 0 0 280px;        /* Largeur fixe pour défilement */
    scroll-snap-align: start;
    background: var(--white); border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    display: flex; flex-direction: column; gap: 10px;
}
.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--blue-100);
}
.review-card-head {
    display: flex; align-items: center; gap: 10px;
}
.review-avatar {
    width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.review-avatar-fallback {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: var(--white); font-weight: 700; font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
    text-transform: uppercase;
}
.review-meta { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.review-meta strong {
    color: var(--blue-800); font-size: 0.88rem; font-weight: 600;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.review-time { color: var(--gray-500); font-size: 0.75rem; }

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

.review-text {
    color: var(--gray-600); font-size: 0.88rem; line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-more {
    background: none; border: 0; padding: 0; cursor: pointer;
    color: var(--blue-500); font-weight: 600; font-size: 0.82rem;
    text-align: left; align-self: flex-start;
    font-family: inherit;
    transition: color var(--transition);
}
.review-more:hover { color: var(--blue-700); }

.reviews-cta {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    margin-top: 36px;
}
.reviews-disclaimer {
    text-align: center; margin-top: 20px;
    color: var(--gray-400); font-size: 0.78rem; font-style: italic;
}

/* Modal avis complet */
.review-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: none; align-items: center; justify-content: center;
    padding: 20px;
}
.review-modal.open { display: flex; }
.review-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(10, 31, 61, 0.65);
    backdrop-filter: blur(4px);
}
.review-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 540px; width: 100%;
    padding: 32px 28px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh; overflow-y: auto;
    animation: modalIn 200ms ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.review-modal-close {
    position: absolute; top: 12px; right: 14px;
    background: none; border: 0; cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%;
    color: var(--gray-500); font-size: 1.8rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.review-modal-close:hover { background: var(--gray-100); color: var(--blue-700); }

.review-modal-head {
    display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.review-modal-avatar {
    width: 48px; height: 48px; font-size: 1.2rem;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: 700;
}
.review-modal-head strong {
    color: var(--blue-800); display: block; font-size: 1.05rem;
}
.review-modal-text {
    color: var(--gray-700); font-size: 1rem; line-height: 1.65;
    margin-top: 14px; white-space: pre-wrap;
}

/* ZONE */
.zone-section { padding: 70px 0; background: var(--white); }
.zone-cities {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px;
}
.zone-city {
    padding: 8px 16px; background: var(--blue-50); color: var(--blue-700);
    border-radius: 100px; font-size: 0.9rem; font-weight: 500;
}

/* FAQ */
.faq-section { padding: 90px 0; background: var(--gray-50); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--white); border-radius: var(--radius);
    margin-bottom: 12px; padding: 4px 24px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
    transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--blue-100); }
.faq-item summary {
    cursor: pointer; padding: 18px 0; font-weight: 600; color: var(--blue-800);
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after {
    content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--blue-500);
    transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 18px; color: var(--gray-600); line-height: 1.7; }

/* CONTACT */
.contact-section { padding: 70px 0; background: var(--gray-50); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start;
}
.contact-info h2, .contact-form h2 { color: var(--blue-800); margin-bottom: 20px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 30px; }
.contact-list li {
    display: flex; gap: 14px; padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-icon {
    width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
    background: var(--blue-700); color: var(--white);
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-label { display: block; font-size: 0.78rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.04em; }
.contact-value { color: var(--blue-800); font-weight: 600; }
.contact-cta-block {
    padding: 20px; background: var(--blue-50); border-radius: var(--radius);
    text-align: center;
}
.contact-cta-block p { margin-bottom: 12px; color: var(--blue-800); }

.contact-form {
    background: var(--white); padding: 36px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; margin-bottom: 6px; font-weight: 600; color: var(--gray-700); font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 12px 14px; border-radius: 8px;
    border: 1.5px solid var(--gray-200); font-family: inherit; font-size: 1rem;
    color: var(--gray-700); background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 0; border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(59, 125, 196, 0.12);
}
.form-note { color: var(--gray-500); font-size: 0.82rem; margin-top: 12px; text-align: center; }

/* ERROR */
.error-section {
    padding: 80px 0; background: var(--gray-50); min-height: 60vh;
    display: flex; align-items: center; text-align: center;
}
.error-code {
    font-family: var(--font-display); font-size: 7rem; font-weight: 700;
    line-height: 1; color: var(--blue-100); margin-bottom: 12px;
}
.error-section h1 { margin-bottom: 12px; }
.error-section p { color: var(--gray-500); margin-bottom: 30px; }
.error-actions { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ====================================================
   PAGES ENRICHIES (services compare, brands, équipe, aides, urgence...)
   ==================================================== */

/* TOP BAR centrale + urgence */
.top-bar-center { display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.top-bar-urgence {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; border-radius: 100px;
    background: #dc2626; color: var(--white);
    font-weight: 700; font-size: 0.78rem;
    transition: all var(--transition);
}
.top-bar-urgence:hover { background: #b91c1c; color: var(--white); transform: scale(1.03); }

/* COMPARATIF SERVICES */
.compare-section { padding: 80px 0; background: var(--white); }
.compare-table {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); overflow: hidden;
    margin-top: 30px;
}
.compare-row {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--gray-100);
}
.compare-row:last-child { border-bottom: 0; }
.compare-cell {
    padding: 16px 18px; display: flex; align-items: center;
    font-size: 0.93rem; color: var(--gray-700);
    border-left: 1px solid var(--gray-100);
}
.compare-cell:first-child { border-left: 0; }
.compare-head { background: var(--blue-50); }
.compare-head .compare-cell {
    padding: 20px 16px; font-weight: 700;
    flex-direction: column; gap: 8px; text-align: center;
    color: var(--blue-800);
}
.compare-head .compare-cell strong { font-size: 1rem; line-height: 1.2; }
.compare-icon {
    width: 42px; height: 42px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
}
.compare-icon-sun  { background: linear-gradient(135deg, #fff4e0 0%, #ffe0b8 100%); color: #ea580c; }
.compare-icon-snow { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); color: #0284c7; }
.compare-icon-bolt { background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%); color: #ca8a04; }
.compare-label { font-weight: 600; color: var(--blue-800); }
.compare-yes { color: #16a34a; font-weight: 600; }
.compare-half { color: #d97706; font-weight: 600; }
.compare-no { color: #dc2626; }
.compare-note {
    margin-top: 24px; padding: 18px 22px;
    background: var(--blue-50); border-radius: var(--radius);
    border-left: 3px solid var(--blue-500); color: var(--gray-700);
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .compare-row { grid-template-columns: 1fr; }
    .compare-cell { border-left: 0; border-top: 1px solid var(--gray-100); }
    .compare-cell:first-child { border-top: 0; background: var(--blue-50); font-weight: 700; }
    .compare-head { display: grid; grid-template-columns: repeat(3, 1fr); }
    .compare-head .compare-cell:first-child { display: none; }
    .compare-head .compare-cell { padding: 14px 8px; border-top: 0; }
    .compare-head .compare-cell strong { font-size: 0.78rem; }
    .compare-icon { width: 32px; height: 32px; }
    .compare-icon svg { width: 16px; height: 16px; }
}

/* MARQUES PARTENAIRES */
.brands-section { padding: 70px 0; background: var(--gray-50); }
.brands-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px;
    margin-top: 30px;
}
.brand-card {
    position: relative;
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    overflow: hidden;
    aspect-ratio: 5 / 3;
    display: flex; align-items: center; justify-content: center;
}
.brand-card:hover {
    transform: translateY(-3px); box-shadow: var(--shadow);
    border-color: var(--gray-200);
}

/* Fallback texte stylé (visible si pas de logo) */
.brand-fallback {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 14px;
    z-index: 1;
}
.brand-name {
    display: block;
    font-size: 1.35rem; font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--blue-800);
    font-family: var(--font-display);
}
.brand-tag {
    display: block; margin-top: 6px;
    color: var(--gray-500); font-size: 0.74rem;
    text-transform: uppercase; letter-spacing: 0.04em;
}

/* Couleurs signature de chaque marque (appliquées au fallback) */
.brand-daikin       .brand-name { color: #0099CC; }
.brand-mitsubishi   .brand-name { color: #E60012; }
.brand-atlantic     .brand-name { color: #003D7A; }
.brand-viessmann    .brand-name { color: #FF6600; }
.brand-de-dietrich  .brand-name { color: #1a1a1a; }
.brand-panasonic    .brand-name { color: #0F1B5D; }
.brand-hitachi      .brand-name { color: #CC0000; }
.brand-aldes        .brand-name { color: #003F8F; }

/* Image cachée par défaut, visible seulement après chargement réussi */
.brand-card-logo {
    display: none;
}
.brand-card.has-logo .brand-card-logo {
    display: block;
    position: relative;
    z-index: 2;
    max-width: 75%; max-height: 60%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.04));
    transition: transform var(--transition);
}
/* Quand un vrai logo est chargé, on cache le fallback texte */
.brand-card.has-logo .brand-fallback {
    display: none;
}
.brand-card.has-logo:hover .brand-card-logo { transform: scale(1.04); }

.brands-note {
    text-align: center; margin-top: 20px;
    color: var(--gray-400); font-size: 0.85rem; font-style: italic;
}

/* COMPTEURS ANIMÉS */
.counters-section { padding: 60px 0; background: var(--blue-50); }
.counters-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px;
    text-align: center;
}
.counter-card {
    padding: 20px;
}
.counter-value {
    display: block; font-family: var(--font-display);
    font-size: 3rem; font-weight: 700;
    color: var(--blue-700); line-height: 1; margin-bottom: 8px;
}
.counter-label {
    color: var(--gray-600); font-size: 0.95rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.04em;
}

/* SLIDER AVANT/APRÈS */
.ba-section { padding: 70px 0; background: var(--white); }
.ba-slider {
    position: relative; max-width: 900px; margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    user-select: none;
    cursor: ew-resize;
}
.ba-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-img-before { filter: grayscale(85%) brightness(0.85); }
.ba-after-wrapper {
    position: absolute; top: 0; left: 0; height: 100%;
    overflow: hidden;
    will-change: width;
}
.ba-after-wrapper .ba-img { filter: none; }
.ba-handle {
    position: absolute; top: 0; bottom: 0;
    width: 4px; background: var(--white);
    box-shadow: 0 0 18px rgba(0,0,0,0.35);
    transform: translateX(-2px);
    will-change: left;
    z-index: 3;
}
.ba-handle-line {
    position: absolute; inset: 0; background: var(--white);
}
.ba-handle-circle {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white); color: var(--blue-700);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    border: 2px solid var(--blue-700);
}
.ba-label {
    position: absolute; top: 16px; padding: 5px 14px;
    border-radius: 100px; font-weight: 700; font-size: 0.82rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    backdrop-filter: blur(6px);
    z-index: 2;
}
.ba-label-before { left: 16px; background: rgba(15, 33, 71, 0.75); color: var(--white); }
.ba-label-after { right: 16px; background: rgba(240, 168, 48, 0.92); color: var(--blue-900); }
.ba-disclaimer {
    text-align: center; margin-top: 18px;
    color: var(--gray-500); font-size: 0.85rem; font-style: italic;
}

/* AIDES (page) */
.aides-section { padding: 80px 0; background: var(--white); }
.aides-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
    margin-top: 30px;
}
.aide-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 26px;
    border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex; flex-direction: column;
}
.aide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-200, #c1d5ea); }
.aide-card-head { margin-bottom: 14px; }
.aide-card-tag {
    display: inline-block; padding: 3px 10px; border-radius: 100px;
    background: var(--blue-50); color: var(--blue-700);
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.aide-card h3 { color: var(--blue-800); font-size: 1.25rem; }
.aide-amount {
    font-family: var(--font-display); font-size: 1.6rem;
    color: var(--accent-dark); font-weight: 700; margin: 8px 0 14px;
}
.aide-amount strong { color: var(--accent); font-size: 2.1rem; }
.aide-card-text { color: var(--gray-600); font-size: 0.92rem; margin-bottom: 16px; flex: 1; }
.aide-card-list { list-style: none; padding: 0; margin: 0; }
.aide-card-list li {
    padding-left: 20px; position: relative; padding-bottom: 6px;
    font-size: 0.86rem; color: var(--gray-500);
}
.aide-card-list li::before {
    content: '✓'; position: absolute; left: 0; color: var(--blue-500); font-weight: 700;
}

/* SIMULATEUR */
.simulator-section { padding: 80px 0; background: var(--gray-50); }
.simulator {
    max-width: 760px; margin: 0 auto;
    background: var(--white); padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}
.simulator-step { margin-bottom: 26px; }
.simulator-label {
    display: block; font-weight: 700; color: var(--blue-800);
    margin-bottom: 14px; font-size: 1.05rem;
}
.simulator-options {
    display: grid; gap: 10px; grid-template-columns: 1fr;
}
.simulator-option {
    cursor: pointer; padding: 14px 18px;
    border: 2px solid var(--gray-200); border-radius: var(--radius);
    transition: all var(--transition);
    display: flex; align-items: center; gap: 12px;
}
.simulator-option:hover { border-color: var(--blue-300, #9bbedf); background: var(--blue-50); }
.simulator-option input[type="radio"] {
    flex-shrink: 0; accent-color: var(--blue-700);
    width: 18px; height: 18px;
}
.simulator-option span {
    display: flex; flex-direction: column; line-height: 1.3;
    color: var(--gray-700);
}
.simulator-option span small {
    color: var(--gray-500); font-size: 0.82rem; margin-top: 2px;
}
.simulator-option input:checked + span {
    color: var(--blue-800); font-weight: 600;
}
.simulator-option:has(input:checked) {
    border-color: var(--blue-700);
    background: var(--blue-50);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.10);
}

.simulator-result {
    margin-top: 30px; padding: 28px;
    background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-800) 100%);
    color: var(--white); border-radius: var(--radius-lg);
    animation: simResultIn 360ms ease;
}
@keyframes simResultIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.simulator-result h3 { color: var(--white); margin-bottom: 16px; }
.simulator-result-amount {
    text-align: center; padding: 24px 18px;
    background: rgba(255,255,255,0.10); border-radius: var(--radius);
    margin-bottom: 18px;
}
.simulator-result-label {
    display: block; font-size: 0.85rem; opacity: 0.85;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px;
}
.simulator-result-amount strong {
    font-family: var(--font-display); font-size: 3rem; color: var(--accent); font-weight: 700;
}
.simulator-result-list { list-style: none; padding: 0; margin: 0 0 18px; }
.simulator-result-list li {
    padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,0.15);
    display: flex; justify-content: space-between; gap: 14px;
    font-size: 0.93rem;
}
.simulator-result-list li:last-child { border-bottom: 0; }
.simulator-result-list strong { color: var(--accent); }
.simulator-result-disclaimer {
    background: rgba(255,255,255,0.08); padding: 14px 18px;
    border-radius: var(--radius); font-size: 0.85rem; line-height: 1.55;
    margin-bottom: 18px;
}
.simulator-result-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.aides-process { padding: 80px 0; background: var(--white); }

/* ÉQUIPE */
.equipe-section { padding: 80px 0; background: var(--white); }
.equipe-intro {
    max-width: 720px; margin: 0 auto 50px; text-align: center;
    color: var(--gray-700); font-size: 1.05rem; line-height: 1.7;
}
.equipe-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
    margin-bottom: 80px;
}
.equipe-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 26px 22px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
    text-align: center; transition: all var(--transition);
}
.equipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.equipe-avatar {
    width: 88px; height: 88px; border-radius: 50%;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem; font-weight: 700; color: var(--white);
    font-family: var(--font-display);
    box-shadow: 0 6px 18px rgba(15, 33, 71, 0.18);
}
.avatar-jonathan  { background: linear-gradient(135deg, #1e3a5f, #3b7dc4); }
.avatar-kevin     { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.avatar-cedric    { background: linear-gradient(135deg, #ea580c, #f97316); }
.avatar-fabien    { background: linear-gradient(135deg, #16a34a, #22c55e); }
.avatar-frederick { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.avatar-johnny    { background: linear-gradient(135deg, #ca8a04, #eab308); }
.avatar-ingrid    { background: linear-gradient(135deg, #db2777, #f472b6); }

.equipe-card h3 {
    color: var(--blue-800); margin-bottom: 4px; font-size: 1.2rem;
}
.equipe-role {
    color: var(--blue-500); font-weight: 600; font-size: 0.85rem;
    margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em;
}
.equipe-bio {
    color: var(--gray-600); font-size: 0.92rem; line-height: 1.55; margin-bottom: 14px;
}
.equipe-skills {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.equipe-skills li {
    padding: 4px 10px; background: var(--blue-50); color: var(--blue-700);
    border-radius: 100px; font-size: 0.74rem; font-weight: 600;
}

.equipe-values {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
    padding-top: 50px;
    border-top: 1px solid var(--gray-100);
}
.equipe-value { text-align: center; padding: 16px; }
.equipe-value-icon { font-size: 2.4rem; margin-bottom: 12px; }
.equipe-value h3 { color: var(--blue-800); font-size: 1.05rem; margin-bottom: 8px; }
.equipe-value p { color: var(--gray-600); font-size: 0.9rem; }

/* URGENCE */
.urgence-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: var(--white); text-align: center;
}
.urgence-hero h1 {
    color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 14px; max-width: 760px; margin-left: auto; margin-right: auto;
}
.urgence-subtitle {
    color: rgba(255,255,255,0.92); font-size: 1.1rem;
    max-width: 720px; margin: 0 auto 30px;
}
.urgence-badge {
    display: inline-block; padding: 6px 18px; border-radius: 100px;
    background: rgba(255,255,255,0.2); font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px;
    backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.25);
}
.urgence-phone-block {
    display: inline-flex; flex-direction: column; align-items: center;
    background: var(--white); color: var(--blue-800);
    padding: 22px 36px; border-radius: var(--radius-lg);
    margin: 14px 0 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.urgence-phone-label {
    font-size: 0.85rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em;
}
.urgence-phone-number {
    font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
    color: var(--blue-800); margin: 6px 0; line-height: 1;
    text-decoration: none;
}
.urgence-phone-number:hover { color: #dc2626; }
.urgence-phone-hours { font-size: 0.85rem; color: var(--gray-500); }

.urgence-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.urgence-cases { padding: 80px 0; background: var(--white); }
.urgence-cases-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
    margin-top: 30px;
}
.urgence-case {
    background: var(--white); padding: 22px;
    border-radius: var(--radius); border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.urgence-case:hover {
    transform: translateY(-3px); box-shadow: var(--shadow);
    border-color: #fecaca;
}
.urgence-case-icon { font-size: 2rem; margin-bottom: 10px; }
.urgence-case h3 { color: var(--blue-800); margin-bottom: 8px; font-size: 1.05rem; }
.urgence-case p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.5; }

.urgence-process { padding: 80px 0; background: var(--gray-50); }

.cta-banner-urgence {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

/* RDV - Why */
.rdv-why-section { padding: 60px 0; background: var(--blue-50); }
.rdv-why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.rdv-why-card {
    background: var(--white); padding: 24px; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
    text-align: center;
}
.rdv-why-icon { font-size: 2rem; margin-bottom: 10px; }
.rdv-why-card h3 { color: var(--blue-800); margin-bottom: 6px; font-size: 1.1rem; }
.rdv-why-card p { color: var(--gray-600); font-size: 0.9rem; }

/* MAP */
.map-section { padding: 70px 0; background: var(--white); }
.map-embed {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); margin-top: 24px;
}
.map-embed iframe { display: block; }

.zone-city-more {
    background: var(--accent) !important; color: var(--blue-900) !important;
    font-weight: 700;
}

/* MODE MAINTENANCE - bandeau alerte sur tout le site (visible admin only) */
.admin-maintenance-bar {
    background: linear-gradient(90deg, #f59e0b, #f0a830);
    color: #0a1f3d;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.admin-maintenance-bar a {
    color: #0a1f3d; text-decoration: underline; font-weight: 700; margin-left: 8px;
}
.admin-maintenance-bar a:hover { color: #1e3a5f; }

/* Cards toggle dans /admin */
.admin-maintenance-active,
.admin-maintenance-toggle {
    padding: 30px 0; background: var(--white);
}
.admin-maintenance-card {
    display: flex; align-items: center; gap: 24px;
    padding: 24px 28px; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fff8eb 0%, #fff 100%);
    border: 2px solid #f0a830;
    box-shadow: 0 4px 20px rgba(240, 168, 48, 0.18);
}
.admin-maintenance-card.admin-maintenance-card-off {
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    border-color: #16a34a;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.12);
}
.admin-maintenance-icon { font-size: 2.4rem; flex-shrink: 0; }
.admin-maintenance-info { flex: 1; }
.admin-maintenance-info strong {
    display: block; color: var(--blue-800); font-size: 1.1rem; margin-bottom: 4px;
}
.admin-maintenance-info p { color: var(--gray-600); font-size: 0.92rem; margin: 0; }

@media (max-width: 768px) {
    .admin-maintenance-card { flex-direction: column; text-align: center; }
}

/* FOOTER */
.footer {
    background: var(--blue-900); color: var(--gray-200); padding: 70px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr; gap: 40px;
    padding-bottom: 50px;
}
.footer-section h3, .footer-section h4 {
    color: var(--white); margin-bottom: 16px; font-size: 1rem; font-weight: 700;
}
.footer-logo { width: 50px; margin-bottom: 14px; }
.footer-tagline { color: var(--gray-300); font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
    padding: 4px 12px; background: rgba(255,255,255,0.1); border-radius: 6px;
    font-size: 0.78rem; font-weight: 600; color: var(--white);
}

.footer-section ul { list-style: none; padding: 0; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul a { color: var(--gray-300); font-size: 0.92rem; }
.footer-section ul a:hover { color: var(--white); }

.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; margin-top: 4px; color: var(--blue-400); }
.footer-contact a, .footer-contact span { font-size: 0.92rem; line-height: 1.5; }

.footer-hours li {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 6px 0; font-size: 0.88rem; border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.footer-hours li:last-child { border-bottom: 0; }
.footer-hours strong { color: var(--white); font-weight: 600; }
.footer-cta { margin-top: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; background: var(--blue-900);
}
.footer-bottom-content {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
    font-size: 0.85rem; color: var(--gray-400);
}
.footer-admin-link {
    color: var(--gray-500);
    font-size: 0.78rem;
    opacity: 0.6;
    transition: opacity var(--transition);
}
.footer-admin-link:hover { color: var(--blue-400); opacity: 1; }

/* FLOATING ACTIONS (RDV + téléphone) */
.floating-actions {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    display: flex; align-items: center; gap: 12px;
}
.floating-rdv {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 18px; border-radius: 100px;
    background: var(--accent); color: var(--blue-900);
    font-weight: 700; font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(240, 168, 48, 0.40);
    transition: all var(--transition);
    position: relative;
}
.floating-rdv::before {
    content: ''; position: absolute; inset: -4px; border-radius: 100px;
    background: var(--accent); opacity: 0.4; z-index: -1;
    animation: rdvPulse 2.4s infinite;
}
@keyframes rdvPulse {
    0%   { transform: scale(1); opacity: 0.4; }
    50%  { transform: scale(1.08); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}
.floating-rdv:hover {
    background: #ffd479; color: var(--blue-900);
    transform: translateY(-2px);
}
.floating-rdv-label { white-space: nowrap; }

.floating-phone {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--blue-700); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(15, 33, 71, 0.30);
    transition: all var(--transition);
}
.floating-phone:hover { background: var(--blue-800); color: var(--white); transform: scale(1.05); }

/* ANIMATIONS ON SCROLL */
.animate-on-scroll {
    opacity: 0; transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}
.animate-on-scroll.in-view { opacity: 1; transform: translateY(0); }

/* LIGHTBOX */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(10, 31, 61, 0.95); align-items: center; justify-content: center;
    padding: 24px; flex-direction: column; gap: 14px;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 80vh; border-radius: 12px; }
.lightbox-caption { color: var(--white); text-align: center; font-size: 1rem; }
.lightbox-close {
    position: absolute; top: 20px; right: 24px; background: none; border: 0;
    color: var(--white); font-size: 2.5rem; cursor: pointer; line-height: 1;
}

.empty-state {
    text-align: center; padding: 60px 20px; color: var(--gray-500); font-size: 1.05rem;
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
    .navbar-menu { display: none; }
    .navbar-toggle { display: flex; }
    .navbar-cta .navbar-quote { display: none; }

    .navbar-menu.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); box-shadow: var(--shadow);
        padding: 20px; gap: 4px;
    }
    .navbar-menu.open a { display: block; padding: 12px 16px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 360px; }

    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    .specialties-grid { grid-template-columns: 1fr; gap: 20px; }
    .savings-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
    .savings-aids { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { font-size: 0.75rem; }
    .top-bar-content { justify-content: center; text-align: center; flex-wrap: wrap; }
    .top-bar-rdv span { display: none; }
    .top-bar-rdv { padding: 4px 8px; }
    .floating-rdv-label { display: none; }
    .floating-rdv { padding: 14px; width: 52px; justify-content: center; }

    .hero { min-height: 80vh; padding: 60px 0 50px; }
    .hero-actions .btn { width: 100%; }

    .form-row { grid-template-columns: 1fr; }
    .service-block { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
    .service-block-icon { font-size: 2.4rem; justify-content: flex-start; }

    .footer-grid { grid-template-columns: 1fr; }

    .cta-banner-content { flex-direction: column; text-align: center; }

    .floating-phone { display: flex; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .brand-text small { display: none; }
    .navbar-phone span { display: none; }
}
