/* ============================================================
   DFL Services V2 — Design system (HTML statique)
   Look clair / pro, inspiré de la maquette blanche.
   ============================================================ */

:root {
    --blue: #1d4ed8;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-dark: #11337a;
    --blue-soft: #eff4ff;
    --blue-softer: #f5f8ff;
    --red: #dc2626;
    --red-soft: #fef2f2;
    --green: #16a34a;
    --green-soft: #dcfce7;
    --ink: #0f172a;
    --ink-2: #1e293b;
    --gray: #475569;
    --gray-2: #64748b;
    --line: #e2e8f0;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
    --shadow: 0 8px 24px rgba(15, 23, 42, .08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, .14);
    --radius: 16px;
    --radius-lg: 24px;
    --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }

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

.section-title {
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.02em;
    color: var(--ink);
}

.section-sub {
    color: var(--gray);
    font-size: 1.02rem;
    max-width: 620px;
}

.text-center { text-align: center; }
.center-x { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 26px;
    border-radius: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(29, 78, 216, .28);
}
.btn-primary:hover { background: var(--blue-800); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(29, 78, 216, .35); }
.btn-outline {
    background: #fff;
    color: var(--blue);
    border-color: #c7d6f5;
}
.btn-outline:hover { border-color: var(--blue); background: var(--blue-softer); }
.btn-ghost-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(29,78,216,.3);
}
.brand-logo svg { width: 24px; height: 24px; }
.brand-text { line-height: 1.15; display: flex; flex-direction: column; justify-content: center; }
.brand-name { font-weight: 800; font-size: 1.25rem; letter-spacing: -.01em; color: var(--ink); white-space: nowrap; }
.brand-name span { color: var(--blue); }
.brand-tag { font-size: .6rem; font-weight: 700; letter-spacing: .1em; color: var(--gray-2); text-transform: uppercase; white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
    font-weight: 600; font-size: .96rem; color: var(--ink-2);
    padding: 8px 14px; border-radius: 10px; transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--blue); background: var(--blue-soft); }
.main-nav a.active { color: var(--blue); }
.nav-has-drop { position: relative; }
.nav-drop {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    box-shadow: var(--shadow-lg); padding: 8px; min-width: 230px;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: all .18s ease; z-index: 50;
}
.nav-has-drop:hover .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop a { display: block; padding: 10px 12px; border-radius: 10px; font-size: .92rem; }

.header-cta {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--blue); color: #fff; font-weight: 800; font-size: 1.02rem;
    padding: 12px 20px; border-radius: 12px;
    box-shadow: 0 8px 20px rgba(29,78,216,.3);
    transition: transform .15s, background .2s;
}
.header-cta:hover { background: var(--blue-800); transform: translateY(-1px); }
.header-cta svg { width: 18px; height: 18px; }
.header-cta { white-space: nowrap; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 28px; height: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100svh - 74px);
    display: flex;
    align-items: center;
    background: var(--bg-soft);
}
.hero-bg-pic { display: contents; }
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}
.hero-overlay { display: none; }
.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.hero-content { max-width: 470px; }
.hero h1 {
    font-size: clamp(1.9rem, 3.7vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.025em;
    color: var(--ink);
    margin-bottom: 16px;
}
.hero h1 .acc { color: var(--blue); }
.hero-lead { font-size: 1.05rem; color: var(--gray); margin-bottom: 22px; }
.hero-coverage {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue-soft); color: var(--blue);
    font-weight: 700; font-size: .92rem;
    padding: 8px 16px; border-radius: 999px; margin-bottom: 18px;
}
.hero-coverage svg { width: 16px; height: 16px; flex-shrink: 0; }
.phone-reassure {
    display: flex; align-items: center; gap: 7px;
    font-size: .85rem; font-weight: 700; color: #15803d;
    margin: -8px 0 22px;
}
.phone-reassure svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-lead strong { color: var(--ink-2); font-weight: 700; }

.phone-block {
    display: inline-flex; flex-direction: column; gap: 3px;
    padding-left: 18px; margin-bottom: 20px;
    border-left: 4px solid var(--blue);
}
.phone-block-label { font-size: .8rem; font-weight: 600; color: var(--gray-2); text-transform: uppercase; letter-spacing: .05em; }
.phone-block-num { font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 800; color: var(--ink); letter-spacing: -.015em; line-height: 1.05; white-space: nowrap; transition: color .15s; }
.phone-block:hover .phone-block-num { color: var(--blue); }
.phone-block--light { border-color: rgba(255,255,255,.55); }
.phone-block--light .phone-block-label { color: rgba(255,255,255,.8); }
.phone-block--light .phone-block-num { color: #fff; }
.phone-block--light:hover .phone-block-num { color: #fff; opacity: .9; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-trust {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.trust-item { display: flex; align-items: flex-start; gap: 10px; }
.trust-item svg { width: 24px; height: 24px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.trust-item b { display: block; font-size: .9rem; font-weight: 700; color: var(--ink-2); line-height: 1.25; }
.trust-item span { font-size: .8rem; color: var(--gray-2); }

/* Hero floating card (posée sur le plombier, à droite) */
.hero-float-card {
    position: absolute; z-index: 3;
    bottom: 30px;
    right: max(24px, calc((100% - 1200px) / 2 + 24px));
    background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
    padding: 18px 20px; width: 280px; border: 1px solid var(--line);
}
.hero-float-row { display: flex; align-items: center; gap: 12px; padding: 7px 0; font-weight: 600; font-size: .92rem; color: var(--ink-2); }
.hero-float-row svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-float-row.is-urgent { color: var(--red); font-weight: 800; }
.hero-float-row.is-urgent svg { color: var(--red); }
.hero-float-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 6px 16px rgba(29,78,216,.35);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    margin-bottom: 10px;
}
.hero-float-icon svg { width: 24px; height: 24px; }
.hero-float-divider { height: 1px; background: var(--line); margin: 4px 0; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--blue); color: #fff; }
.stats-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: 30px; padding-bottom: 30px; }
.stat { text-align: center; }
.stat-num { font-size: 1.9rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: .86rem; opacity: .85; margin-top: 6px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #c7d6f5; }
.service-card img { width: 100%; height: 168px; object-fit: cover; }
.service-card .sc-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.service-card p { font-size: .9rem; color: var(--gray-2); flex: 1; }
.sc-link { margin-top: 14px; font-weight: 700; font-size: .9rem; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.sc-link svg { width: 16px; height: 16px; }

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
.step { text-align: center; position: relative; }
.step-num {
    width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
    background: var(--blue-soft); color: var(--blue);
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem;
    position: relative; z-index: 2;
}
.step h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--gray-2); }

/* ============================================================
   PRICING
   ============================================================ */
.price-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.price-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th { background: var(--bg-soft); text-align: left; padding: 14px 18px; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--gray-2); }
.price-table td { padding: 14px 18px; border-top: 1px solid var(--line); }
.price-table td.price { font-weight: 800; text-align: right; color: var(--ink); white-space: nowrap; }
.price-note { font-size: .78rem; color: var(--gray-2); margin-top: 10px; }
.guarantee-box {
    background: var(--green-soft); border: 1px solid #bbf7d0; border-radius: var(--radius);
    padding: 26px; display: flex; gap: 16px; align-items: flex-start;
}
.guarantee-box svg { width: 40px; height: 40px; color: var(--green); flex-shrink: 0; }
.guarantee-box h3 { font-size: 1.1rem; margin-bottom: 6px; }
.guarantee-box p { font-size: .92rem; color: var(--gray); }

/* ============================================================
   ZONE
   ============================================================ */
.zone-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 860px; margin: 30px auto 0; }
.zone-tag { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: .88rem; font-weight: 600; color: var(--ink-2); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 12px; }
.reviews-google { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.reviews-stars { color: #f59e0b; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.review-card .rc-stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { font-size: .95rem; color: var(--gray); }
.review-card .rc-author { margin-top: 16px; font-weight: 700; font-size: .92rem; color: var(--ink); }
.review-card .rc-meta { font-size: .8rem; color: var(--gray-2); }
.reviews-empty { text-align: center; color: var(--gray-2); padding: 30px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; font-weight: 700; font-size: 1rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q svg { width: 20px; height: 20px; color: var(--blue); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 22px; color: var(--gray); }
.faq-item.open .faq-a { max-height: 360px; padding-bottom: 22px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: linear-gradient(135deg, var(--blue-700), var(--blue-dark)); color: #fff; text-align: center; }
.final-cta h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.final-cta p { opacity: .9; font-size: 1.08rem; margin-bottom: 28px; }
.final-cta .phone-block { align-items: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0b1220; color: #cbd5e1; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; font-weight: 700; }
.footer-grid a, .footer-grid p, .footer-grid div { font-size: .9rem; color: #94a3b8; line-height: 1.9; }
.footer-grid a:hover { color: #fff; }
.footer-brand-name { color: #fff; font-weight: 800; font-size: 1.15rem; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 36px; padding-top: 22px; text-align: center; font-size: .82rem; color: #64748b; }
.footer-bottom a { color: #94a3b8; }

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust-band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; }
.trust-band .container { display: flex; flex-wrap: wrap; gap: 12px 30px; justify-content: center; }
.trust-band span { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem; color: var(--ink-2); }
.trust-band svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* ============================================================
   CALLBACK FORM
   ============================================================ */
.callback-card {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-dark));
    border-radius: var(--radius-lg); padding: 34px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 28px; flex-wrap: wrap; box-shadow: var(--shadow-lg);
}
.callback-text h2 { color: #fff; font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; line-height: 1.2; }
.callback-text p { color: rgba(255,255,255,.85); font-size: 1rem; }
.callback-form { display: flex; gap: 10px; flex-wrap: wrap; }
.callback-form input {
    border: 2px solid transparent; border-radius: 14px; padding: 15px 18px;
    font-size: 1rem; min-width: 230px; font-family: inherit; outline: none;
}
.callback-form input:focus { border-color: var(--orange-vivid, #f97316); }
.callback-form .btn { background: #fff; color: var(--blue); }
.callback-form .btn:hover { background: #eef2ff; transform: translateY(-2px); }
.callback-success { text-align: center; color: var(--green); font-weight: 700; margin-top: 18px; font-size: 1.05rem; }
@media (max-width: 760px) {
    .callback-card { flex-direction: column; text-align: center; padding: 28px 22px; }
    .callback-form { width: 100%; flex-direction: column; }
    .callback-form input, .callback-form .btn { width: 100%; }
}

/* ============================================================
   MOBILE STICKY CALL BAR
   ============================================================ */
.mobile-callbar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1100;
    background: #fff; border-top: 1px solid var(--line); padding: 10px 16px;
    display: none; gap: 12px; box-shadow: 0 -6px 24px rgba(15,23,42,.1);
}
.mobile-callbar .btn { flex: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .hero { min-height: auto; display: block; background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%); }
    .hero-bg-img { display: none; }
    .hero-overlay { display: none; }
    .hero .container { padding-top: 46px; padding-bottom: 42px; text-align: center; }
    .hero-content { max-width: 480px; margin: 0 auto; }
    .phone-block { align-items: center; border-left: none; padding-left: 0; }
    .phone-reassure { justify-content: center; }
    .hero-actions { justify-content: center; }
    .trust-item { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
    .hero-float-card { display: none; }
    .hero-trust { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .price-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .main-nav, .header-cta { display: none; }
    .nav-toggle { display: inline-flex; }
    .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .mobile-callbar { display: flex; }
    body { padding-bottom: 72px; }
    .section { padding: 54px 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .phone-block { width: 100%; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Mobile nav panel */
.mobile-nav {
    display: none; flex-direction: column; gap: 4px;
    padding: 12px 24px 20px; border-top: 1px solid var(--line); background: #fff;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 10px; font-weight: 600; border-radius: 10px; }
.mobile-nav a:hover { background: var(--blue-soft); color: var(--blue); }

/* ============================================================
   HOMEPAGE (index)
   ============================================================ */
.hero--home {
    min-height: auto; display: block;
    background: radial-gradient(900px 480px at 50% -15%, var(--blue-soft), transparent 62%),
                linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    padding: 60px 0 54px;
}
.hero-content--center { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-content--center .hero-coverage { margin-left: auto; margin-right: auto; }
.hero--home h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
.hero-actions--center { justify-content: center; }
.hero-trust--center { max-width: 720px; margin-left: auto; margin-right: auto; }

.metiers-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 44px; }
.metier-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.metier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #c7d6f5; }
.metier-ic { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.metier-ic svg { width: 30px; height: 30px; }
.metier-card h3 { font-size: 1.02rem; font-weight: 800; color: var(--ink); }
.metier-card p { font-size: .82rem; color: var(--gray-2); line-height: 1.4; }

.villes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.ville-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 12px; transition: transform .15s, box-shadow .2s, border-color .2s; }
.ville-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c7d6f5; }
.ville-card svg { width: 22px; height: 22px; flex-shrink: 0; }
.ville-card span { display: flex; flex-direction: column; font-size: .8rem; color: var(--gray-2); line-height: 1.25; }
.ville-card span b { font-size: 1rem; font-weight: 800; color: var(--ink); }

@media (max-width: 980px) {
    .metiers-grid { grid-template-columns: repeat(3, 1fr); }
    .villes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .metiers-grid { grid-template-columns: repeat(2, 1fr); }
    .villes-grid { grid-template-columns: 1fr; }
}
