/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #16a34a;
    --primary-dark: #15803d;
    --secondary: #1e40af;
    --cta: #ea580c;
    --cta-hover: #c2410c;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --bg-alt: #f0fdf4;
    --border: #e5e7eb;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.1);
    --max-width: 1200px;
}

html { scroll-padding-top: 80px; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
}

a { color: var(--secondary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

/* ===== HEADER ===== */
.header {
    background: var(--bg);
    border-bottom: 2px solid var(--primary);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
}
.header__logo-img {
    border-radius: 6px;
    flex-shrink: 0;
}

.header__logo span { color: var(--text); }

.header__tagline {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
    white-space: nowrap;
}

.header__cta {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s;
    white-space: nowrap;
}

.header__cta:hover { background: var(--primary-dark); text-decoration: none; }

.header__nav { display: flex; gap: 24px; align-items: center; }
.header__nav > a { color: var(--text); font-size: 0.95rem; }
.header__nav > a:hover { color: var(--primary); text-decoration: none; }
.header__nav .header__cta { color: white !important; }

/* Dropdown nav */
.header__dropdown {
    position: relative;
}

.header__dropdown-toggle {
    background: none;
    border: none;
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 4px;
}

.header__dropdown-toggle:hover { color: var(--primary); }

.header__dropdown-toggle::after {
    content: "▾";
    font-size: 0.7rem;
}

.header__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    min-width: 220px;
    z-index: 200;
    margin-top: 0;
    padding-top: 20px;
}

.header__dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.header__dropdown:hover .header__dropdown-menu { display: block; }

.header__dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: var(--text) !important;
    white-space: nowrap;
}

.header__dropdown-menu a:hover {
    background: var(--bg-alt);
    color: var(--primary) !important;
    text-decoration: none;
}

.header__burger {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    color: var(--text);
}

.header__mobile {
    display: none;
    flex-direction: column;
    padding: 0 20px 16px;
    gap: 0;
    max-width: var(--max-width);
    margin: 0 auto;
}

.header__mobile .header__cta { color: white !important; }

.header__mobile a {
    display: block;
    padding: 10px 0;
    color: var(--text);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.header__mobile a:last-child { border-bottom: none; }
.header__mobile a:hover { color: var(--primary); text-decoration: none; }
.header__mobile.open { display: flex; }

.header__mobile-section {
    border-bottom: 1px solid var(--border);
}

.header__mobile-title {
    display: block;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.header__mobile-title::after {
    content: " ▾";
    font-size: 0.7rem;
}

.header__mobile-links {
    display: none;
    padding-left: 16px;
    padding-bottom: 8px;
}

.header__mobile-links.open {
    display: block;
}

.header__mobile-links a {
    padding: 6px 0 !important;
    font-size: 0.88rem !important;
    border-bottom: none !important;
    color: var(--text-light) !important;
}

.header__mobile-links a:hover { color: var(--primary) !important; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 12px 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--bg-alt) 0%, #ecfdf5 100%);
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero__grid--single {
    grid-template-columns: 1fr;
    max-width: 800px;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 8px;
}

.hero h1 strong { color: var(--primary-dark); }

.hero__rotating {
    color: var(--primary-dark);
    font-weight: inherit;
    transition: opacity 0.4s ease;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero__image {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hero__slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero__slide--active {
    opacity: 1;
}

.hero__image-col {
    display: flex;
    align-items: center;
}

.hero__args { list-style: none; margin-bottom: 24px; }

.hero__args li {
    padding: 6px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__args li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== TRUST BADGES ===== */
.badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow);
}

.badge__icon {
    font-size: 1.1rem;
}

/* ===== HERO CTA BUTTON ===== */
.hero__cta-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    background: var(--primary);
    color: white !important;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.hero__cta-btn:hover { background: var(--primary-dark); text-decoration: none; }

/* ===== FORMULAIRE DEVIS ===== */
.form-devis {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 24px 32px;
    box-shadow: var(--shadow-lg);
}

.form-devis__title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.form-devis__sub {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.form-devis label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.form-devis input,
.form-devis select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

.form-devis input:focus,
.form-devis select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.form-devis__btn {
    width: 100%;
    padding: 14px;
    background: var(--cta);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}

.form-devis__btn:hover { background: var(--cta-hover); }

.form-devis__mention {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* ===== PLAN DU SITE ===== */
.sitemap-block { margin-top: 32px; }
.sitemap-h2 { font-size: 1.2rem; color: var(--primary-dark); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); }
.sitemap-h2 a { color: var(--primary-dark); }
.sitemap-list { list-style: disc; margin-left: 24px; }
.sitemap-list li { padding: 3px 0; }
.sitemap-list a { color: var(--primary); }
.sitemap-ville { border-bottom: 1px solid var(--border); padding: 4px 0; }
.sitemap-ville summary { cursor: pointer; font-size: 0.95rem; padding: 4px 0; }
.sitemap-ville summary a { font-weight: 600; color: var(--text); }
.sitemap-ville summary a:hover { color: var(--primary); }
.sitemap-ville summary small { color: var(--text-light); }
.sitemap-ville ul { margin: 6px 0 6px 28px; list-style: disc; }
.sitemap-ville ul li { padding: 2px 0; }
.sitemap-ville ul a { color: var(--primary); font-size: 0.85rem; }

/* ===== SECTIONS ===== */
.section {
    padding: 48px 0;
}

.section--alt { background: var(--bg-light); }

.section__title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text);
}

.section__title strong { color: var(--primary-dark); }

/* ===== VILLES GRID (département) ===== */
.villes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ville-card {
    display: block;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
}

.ville-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    text-decoration: none;
}

.ville-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.ville-card:hover .ville-card__name { color: var(--primary-dark); }

.ville-card__info {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== SERVICES GRID (homepage + ville) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card__img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.service-card__body {
    padding: 16px 20px 20px;
}

.service-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.service-card__price { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }

.service-card__link {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.service-card__link:hover { background: var(--primary-dark); text-decoration: none; }

/* ===== CONTENU SEO ===== */
.seo-content h2 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--text); }
.seo-content h3 { font-size: 1.1rem; margin: 20px 0 10px; color: var(--primary-dark); }
.seo-content p { margin-bottom: 14px; color: var(--text); }
.seo-content ul { margin: 10px 0 14px 24px; }
.seo-content li { margin-bottom: 6px; }

/* ===== ENTREPRISES LOCALES ===== */
.entreprises-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.entreprise-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.entreprise-card__header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.entreprise-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.entreprise-card__category {
    font-size: 0.72rem;
    background: var(--bg-alt);
    color: var(--primary-dark);
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.entreprise-card__address {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.4;
}

.entreprise-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.entreprise-card__rating {
    font-size: 0.82rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 4px;
}

.entreprise-card__stars {
    color: #f59e0b;
    letter-spacing: 1px;
}

.entreprise-card__phone {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
}
.entreprise-card__phone:hover { text-decoration: underline; }

/* ===== TÉMOIGNAGES ===== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.testimonial__stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 8px; }
.testimonial__text { font-size: 0.92rem; font-style: italic; color: var(--text); margin-bottom: 10px; }
.testimonial__author { font-size: 0.85rem; font-weight: 600; color: var(--text-light); }

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 40px 0;
}

.cta-section h2 { color: white; font-size: 1.5rem; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }

.cta-section__btn {
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: var(--primary-dark);
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: background 0.2s;
}

.cta-section__btn:hover { background: #f0fdf4; text-decoration: none; }

/* ===== ENTREPRISES LOCALES (style GMB) ===== */
.gmb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gmb-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.gmb-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.gmb-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.gmb-card__icon {
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid #dcfce7;
}

.gmb-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.gmb-card__category {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 2px;
}

.gmb-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.gmb-card__stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: -1px;
}

.gmb-card__score {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.gmb-card__reviews {
    font-size: 0.8rem;
    color: var(--text-light);
}

.gmb-card__details {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

.gmb-card__detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.gmb-card__detail-icon {
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    font-size: 0.75rem;
}

/* ===== BLOC AVANTAGES ===== */
.avantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.avantage-card {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow 0.2s;
}

.avantage-card:hover { box-shadow: var(--shadow-lg); }

.avantage-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.avantage-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.avantage-card__text {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== GOOGLE MAP ===== */
.map-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin-top: 0;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: none;
}

/* ===== FAQ ===== */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 16px 20px;
    font-weight: 600;
    cursor: pointer;
    background: var(--bg-light);
    list-style: none;
}

.faq-item summary::before {
    content: "+";
    margin-right: 10px;
    font-weight: 700;
    color: var(--primary);
}

.faq-item[open] summary::before { content: "−"; }

.faq-item__answer {
    padding: 16px 20px;
    font-size: 0.95rem;
    color: var(--text);
}

/* ===== INFO VILLE ===== */
.ville-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ville-info__item {
    text-align: center;
    padding: 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.ville-info__value { font-size: 1.3rem; font-weight: 700; color: var(--primary-dark); }
.ville-info__label { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

/* ===== MAILLAGE INTERNE ===== */
.maillage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.maillage__col h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    color: var(--text);
}

.maillage__col ul { list-style: none; }

.maillage__col li {
    padding: 4px 0;
    font-size: 0.9rem;
}

.maillage__col a { color: var(--text-light); }
.maillage__col a:hover { color: var(--primary); }

/* ===== DÉPARTEMENTS GRID (homepage) ===== */
.depts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dept-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-decoration: none;
    transition: box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
}

.dept-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    text-decoration: none;
}

.dept-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.dept-card__code {
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    border: 1px solid #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.dept-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.dept-card:hover .dept-card__title { color: var(--primary-dark); }

.dept-card__count {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.dept-card__villes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.dept-card__ville {
    font-size: 0.78rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.dept-card__link {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 40px 0 20px;
    margin-top: 0;
}

.footer a { color: #9ca3af; }
.footer a:hover { color: white; }

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer__col h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer__col ul { list-style: none; }
.footer__col li { padding: 3px 0; font-size: 0.85rem; }

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    font-size: 0.8rem;
    color: #6b7280;
}

/* ===== EXIT-INTENT MODAL ===== */
.exit-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.exit-modal.open { display: flex; align-items: center; justify-content: center; }

.exit-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.exit-modal__box {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exit-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.exit-modal__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.exit-modal__text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.exit-modal__btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.exit-modal__btn:hover { background: var(--primary-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header__nav { display: none !important; }
    .header__burger { display: block; }
    .header__tagline { font-size: 0.55rem; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__image-col { order: -1; }
    .hero__image { max-height: 250px; }
    .villes-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .entreprises-grid { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }
    .maillage { grid-template-columns: 1fr; }
    .depts-grid { grid-template-columns: 1fr; }
    .ville-info { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
    .gmb-grid { grid-template-columns: 1fr; }
    .avantages-grid { grid-template-columns: repeat(2, 1fr); }
    .map-image-grid { grid-template-columns: 1fr; }
    .map-container { order: 2; }
    .badges { gap: 8px; }
    .badge { padding: 6px 10px; font-size: 0.75rem; }
    .hero h1 { font-size: 1.5rem; }
    .hero { padding: 32px 0; }
}
