/* ==========================================================================
   DRM Fermetures – feuille de style principale
   Palette : bleu acier profond + orange sécurité, inspirée store2000.fr
   ========================================================================== */

:root {
    --navy: #0b1c2e;
    --navy-2: #10263d;
    --blue: #1663d1;
    --blue-2: #0d4fae;
    --blue-light: #e8f0fc;
    --orange: #f97316;
    --orange-2: #ea580c;
    --ink: #16222e;
    --gray: #5b6b7b;
    --line: #e3e9f0;
    --bg-soft: #f4f7fb;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(11, 28, 46, .10);
    --shadow-lg: 0 24px 60px rgba(11, 28, 46, .16);
    --font: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.drm-body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 800; color: var(--navy); }
p { margin: 0 0 1em; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.drm-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px; border-radius: 999px; white-space: nowrap;
    font-weight: 700; font-size: 16px; cursor: pointer; border: 2px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.drm-btn svg { width: 19px; height: 19px; flex: none; }
.drm-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.drm-btn-primary { background: var(--blue); color: #fff; }
.drm-btn-primary:hover { background: var(--blue-2); color: #fff; }
.drm-btn-orange { background: var(--orange); color: #fff; box-shadow: 0 8px 24px rgba(249, 115, 22, .35); }
.drm-btn-orange:hover { background: var(--orange-2); color: #fff; }
.drm-btn-white { background: #fff; color: var(--navy); }
.drm-btn-outline-white { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; }
.drm-btn-outline-white:hover { background: #fff; color: var(--navy); }
.drm-btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.drm-btn-outline:hover { background: var(--blue); color: #fff; }
.drm-btn-phone { background: var(--orange); color: #fff; padding: 11px 20px; }
.drm-btn-phone:hover { background: var(--orange-2); color: #fff; }

@keyframes drm-pulse {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, .55); }
    70% { box-shadow: 0 0 0 14px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
.drm-pulse { animation: drm-pulse 2.4s infinite; }

/* --------------------------------------------------------------------------
   Topbar + header
   -------------------------------------------------------------------------- */
.drm-topbar { background: var(--navy); color: #c8d6e5; font-size: 13.5px; }
.drm-topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; min-height: 38px; flex-wrap: wrap; }
.drm-topbar-left, .drm-topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.drm-topbar-item { display: inline-flex; align-items: center; gap: 6px; color: #c8d6e5; }
.drm-topbar-item svg { width: 14px; height: 14px; }
.drm-topbar-24 { color: #ffd7ab; font-weight: 700; }
.drm-lang-switch { display: inline-flex; gap: 8px; }
.drm-lang-switch a { display: inline-flex; align-items: center; gap: 5px; color: #c8d6e5; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.drm-lang-switch a.active, .drm-lang-switch a:hover { background: rgba(255,255,255,.12); color: #fff; }

.drm-header {
    position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease;
}
.drm-header.is-stuck { box-shadow: 0 6px 24px rgba(11,28,46,.10); }
.drm-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; }
.drm-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-size: 17px; font-weight: 600; }
.drm-logo-icon { display: inline-flex; width: 40px; height: 40px; border-radius: 10px; background: var(--blue); color: #fff; align-items: center; justify-content: center; }
.drm-logo-icon svg { width: 24px; height: 24px; }
.drm-logo-text strong { color: var(--blue); font-weight: 800; }
.drm-nav { display: flex; gap: 26px; }
.drm-nav a { color: var(--ink); font-weight: 600; font-size: 15.5px; position: relative; padding: 6px 0; white-space: nowrap; }
.drm-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; background: var(--orange); border-radius: 3px; transition: width .3s ease; }
.drm-nav a:hover::after { width: 100%; }
.drm-header-cta { display: flex; align-items: center; gap: 12px; }
.drm-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.drm-burger span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* Boutons flottants */
.drm-float-whatsapp, .drm-float-phone {
    position: fixed; right: 20px; z-index: 95; width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: var(--shadow-lg);
    transition: transform .25s ease;
}
.drm-float-whatsapp { bottom: 90px; background: #25d366; }
.drm-float-phone { bottom: 20px; background: var(--orange); animation: drm-pulse 2.4s infinite; }
.drm-float-whatsapp:hover, .drm-float-phone:hover { transform: scale(1.1); color: #fff; }
.drm-float-whatsapp svg, .drm-float-phone svg { width: 26px; height: 26px; }

/* --------------------------------------------------------------------------
   Hero accueil
   -------------------------------------------------------------------------- */
.drm-hero {
    position: relative; overflow: hidden; color: #fff;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, #123b66 100%);
    padding: 90px 0 120px;
}
.drm-hero::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(180deg, rgba(255,255,255,.045) 0 2px, transparent 2px 26px);
    animation: drm-shutter-slide 18s linear infinite;
}
@keyframes drm-shutter-slide { from { background-position-y: 0; } to { background-position-y: 260px; } }
.drm-hero::after {
    content: ''; position: absolute; width: 640px; height: 640px; border-radius: 50%;
    background: radial-gradient(circle, rgba(22,99,209,.4), transparent 65%);
    top: -180px; right: -180px; animation: drm-float 9s ease-in-out infinite;
}
@keyframes drm-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(26px); } }
.drm-hero-inner { position: relative; z-index: 2; max-width: 780px; }
.drm-hero-kicker svg { width: 15px; height: 15px; flex: none; }
.drm-hero-kicker {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 7px 16px;
    font-size: 13.5px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: #ffd7ab;
    animation: drm-fade-up .8s ease both;
}
.drm-hero h1 { color: #fff; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.4; margin: 0 0 16px; animation: drm-fade-up .8s .12s ease both; }
/* Hero centré */
.drm-hero-center { margin: 0 auto; text-align: center; max-width: 820px; }
.drm-hero-center .drm-hero-sub { margin-left: auto; margin-right: auto; max-width: 720px; font-size: 16px; }
.drm-hero-center .drm-hero-actions, .drm-hero-center .drm-hero-badges { justify-content: center; }
.drm-hero h1 .drm-grad {
    background: linear-gradient(90deg, #6db1ff, #ffb26b);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.drm-hero-sub { font-size: 17px; line-height: 1.8; color: #cfdcea; max-width: 680px; animation: drm-fade-up .8s .24s ease both; }
.drm-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; animation: drm-fade-up .8s .36s ease both; }
.drm-hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 42px; animation: drm-fade-up .8s .5s ease both; }
.drm-hero-badge {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: 10px 16px;
    font-size: 14px; font-weight: 600; color: #e6eef7;
}
.drm-hero-badge svg { width: 17px; height: 17px; color: #7fe3a1; }
@keyframes drm-fade-up { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* Bande défilante (marquee) */
.drm-marquee { background: var(--blue); color: #fff; overflow: hidden; padding: 13px 0; position: relative; z-index: 3; }
.drm-marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: drm-marquee 30s linear infinite; width: max-content; }
.drm-marquee-track span { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14.5px; letter-spacing: .5px; text-transform: uppercase; }
.drm-marquee-track svg { width: 15px; height: 15px; color: #ffd7ab; }
@keyframes drm-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Sections génériques
   -------------------------------------------------------------------------- */
.drm-section { padding: 84px 0; }
.drm-section-soft { background: var(--bg-soft); }
.drm-section-navy { background: linear-gradient(135deg, var(--navy), #123b66); color: #cfdcea; }
.drm-section-navy h2 { color: #fff; }
.drm-kicker { display: inline-block; color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: 1.4px; font-size: 13px; margin-bottom: 10px; }
.drm-h2 { font-size: clamp(26px, 3.4vw, 38px); }
.drm-section-head { max-width: 720px; margin-bottom: 46px; }
.drm-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.drm-sub { color: var(--gray); font-size: 16.5px; line-height: 1.75; }
.drm-section-navy .drm-sub { color: #b7c8d9; }

/* Apparition au scroll */
.drm-reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.drm-reveal.is-visible { opacity: 1; transform: translateY(0); }
.drm-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.drm-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.drm-stagger.is-visible > *:nth-child(2) { transition-delay: .1s; }
.drm-stagger.is-visible > *:nth-child(3) { transition-delay: .2s; }
.drm-stagger.is-visible > *:nth-child(4) { transition-delay: .3s; }
.drm-stagger.is-visible > *:nth-child(5) { transition-delay: .4s; }
.drm-stagger.is-visible > *:nth-child(6) { transition-delay: .5s; }
@media (prefers-reduced-motion: reduce) {
    .drm-reveal, .drm-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
    .drm-hero::before, .drm-hero::after, .drm-marquee-track, .drm-pulse, .drm-float-phone { animation: none !important; }
}

/* --------------------------------------------------------------------------
   Cartes services
   -------------------------------------------------------------------------- */
.drm-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.drm-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px 28px; position: relative; overflow: hidden;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.drm-card::before {
    content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.drm-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.drm-card:hover::before { transform: scaleX(1); }
.drm-card-icon {
    width: 58px; height: 58px; border-radius: 14px; background: var(--blue-light); color: var(--blue);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
.drm-card-icon svg { width: 30px; height: 30px; }
.drm-card:hover .drm-card-icon { background: var(--blue); color: #fff; transform: rotate(-6deg) scale(1.06); }
.drm-card h3 { font-size: 19.5px; }
.drm-card p { color: var(--gray); font-size: 15px; margin-bottom: 0; }
.drm-card-link { display: flex; justify-content: center; align-items: center; gap: 7px; margin-top: 16px; font-weight: 700; font-size: 14.5px; }
.drm-card-link svg { width: 16px; height: 16px; transition: transform .3s ease; }
.drm-card:hover .drm-card-link svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   Bloc "à propos"
   -------------------------------------------------------------------------- */
.drm-about { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.drm-about-visual {
    position: relative; border-radius: 20px; overflow: hidden; min-height: 380px;
    background:
        repeating-linear-gradient(180deg, rgba(255,255,255,.06) 0 3px, transparent 3px 30px),
        linear-gradient(145deg, var(--navy) 0%, #14406e 60%, var(--blue) 100%);
    display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
}
.drm-about-visual svg { width: 150px; height: 150px; color: rgba(255,255,255,.85); }
.drm-about-visual .drm-tag {
    position: absolute; background: #fff; border-radius: 12px; box-shadow: var(--shadow);
    padding: 12px 18px; font-weight: 800; color: var(--navy); font-size: 14.5px; display: flex; gap: 8px; align-items: center;
}
.drm-about-visual .drm-tag svg { width: 18px; height: 18px; color: var(--orange); }
.drm-tag-1 { top: 22px; left: 22px; animation: drm-float 6s ease-in-out infinite; }
.drm-tag-2 { bottom: 22px; right: 22px; animation: drm-float 7s .8s ease-in-out infinite; }
.drm-checklist { list-style: none; padding: 0; margin: 22px 0 30px; }
.drm-checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-weight: 600; color: var(--ink); }
.drm-checklist svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 3px; }

/* --------------------------------------------------------------------------
   Compteurs
   -------------------------------------------------------------------------- */
.drm-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 26px; text-align: center; }
.drm-stat { padding: 30px 16px; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.drm-stat-num { font-size: clamp(38px, 4.6vw, 54px); font-weight: 900; color: #fff; line-height: 1; }
.drm-stat-num .suffix { color: var(--orange); }
.drm-stat-label { margin-top: 10px; color: #b7c8d9; font-weight: 600; font-size: 15px; }

/* --------------------------------------------------------------------------
   Étapes (process)
   -------------------------------------------------------------------------- */
.drm-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; counter-reset: step; }
.drm-step { position: relative; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 34px 26px 28px; text-align: center; transition: transform .3s ease, box-shadow .3s ease; }
.drm-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.drm-step-num {
    width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-2));
    color: #fff; font-weight: 900; font-size: 19px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
    box-shadow: 0 8px 18px rgba(22, 99, 209, .35);
}
.drm-step h3 { font-size: 18.5px; }
.drm-step p { color: var(--gray); font-size: 14.5px; margin: 0; }

/* --------------------------------------------------------------------------
   Zones / départements
   -------------------------------------------------------------------------- */
.drm-depts { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.drm-dept-card {
    --dept: var(--blue); --dept-2: var(--blue-2);
    display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 24px 26px; color: var(--ink); position: relative; overflow: hidden;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.drm-dept-card::before {
    content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--dept), var(--dept-2));
    transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.drm-dept-card::after {
    content: ''; position: absolute; inset: 0; opacity: 0; pointer-events: none;
    background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--dept) 12%, transparent), transparent 65%);
    transition: opacity .4s ease;
}
.drm-dept-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--dept); }
.drm-dept-card:hover::before { transform: scaleX(1); }
.drm-dept-card:hover::after { opacity: 1; }
/* Une couleur par département */
.drm-depts .drm-dept-card:nth-child(8n+1) { --dept: #1663d1; --dept-2: #0d4fae; }
.drm-depts .drm-dept-card:nth-child(8n+2) { --dept: #0e8f6f; --dept-2: #0a6b53; }
.drm-depts .drm-dept-card:nth-child(8n+3) { --dept: #7c3aed; --dept-2: #5b21b6; }
.drm-depts .drm-dept-card:nth-child(8n+4) { --dept: #ea580c; --dept-2: #c2410c; }
.drm-depts .drm-dept-card:nth-child(8n+5) { --dept: #0891b2; --dept-2: #0e7490; }
.drm-depts .drm-dept-card:nth-child(8n+6) { --dept: #db2777; --dept-2: #9d174d; }
.drm-depts .drm-dept-card:nth-child(8n+7) { --dept: #ca8a04; --dept-2: #a16207; }
.drm-depts .drm-dept-card:nth-child(8n+8) { --dept: #dc2626; --dept-2: #991b1b; }
.drm-dept-code {
    display: inline-flex; align-items: center; justify-content: center; min-width: 56px; height: 56px;
    margin: 0 auto; border-radius: 14px; color: #fff; font-weight: 900; font-size: 21px; padding: 0 12px;
    background: linear-gradient(135deg, var(--dept), var(--dept-2));
    box-shadow: 0 8px 20px color-mix(in srgb, var(--dept) 35%, transparent);
    transition: transform .35s ease;
}
.drm-dept-card:hover .drm-dept-code { transform: rotate(-6deg) scale(1.12); }
.drm-dept-card h3 { font-size: 19px; margin: 16px 0 4px; }
.drm-dept-card .drm-dept-meta {
    display: inline-block; color: var(--dept); font-size: 13.5px; font-weight: 700;
    background: color-mix(in srgb, var(--dept) 10%, #fff); border-radius: 999px; padding: 4px 14px; margin-top: 4px;
}
.drm-dept-card .drm-dept-go { display: inline-flex; align-items: center; justify-content: center; gap: 6px; color: var(--dept); font-weight: 700; font-size: 14.5px; margin-top: 14px; }
.drm-dept-card .drm-dept-go svg { width: 15px; height: 15px; transition: transform .3s ease; }
.drm-dept-card:hover .drm-dept-go svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   Prestations (accueil)
   -------------------------------------------------------------------------- */
.drm-presta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.drm-presta {
    --pa: var(--blue); --pa2: var(--blue-2);
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 0 26px 26px; text-align: center; position: relative; overflow: hidden;
    display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.drm-presta:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--pa); }
/* Une couleur par service */
.drm-presta-grid .drm-presta:nth-child(1) { --pa: #1663d1; --pa2: #0d4fae; }
.drm-presta-grid .drm-presta:nth-child(2) { --pa: #14666e; --pa2: #0c3a3f; }
.drm-presta-grid .drm-presta:nth-child(3) { --pa: #8e1f2c; --pa2: #4a0e16; }
.drm-presta-grid .drm-presta:nth-child(4) { --pa: #135a8e; --pa2: #0b3050; }
.drm-presta-head {
    margin: 0 -26px 18px; padding: 26px 20px 20px;
    background: linear-gradient(135deg, var(--pa), var(--pa2));
}
.drm-presta-icon {
    width: 54px; height: 54px; border-radius: 14px; margin: 0 auto 12px;
    background: rgba(255,255,255,.16); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: transform .3s ease;
}
.drm-presta:hover .drm-presta-icon { transform: rotate(-6deg) scale(1.1); }
.drm-presta-icon svg { width: 28px; height: 28px; }
.drm-presta-head h3 { font-size: 18.5px; margin: 0; }
.drm-presta-head h3 a { color: #fff; }
.drm-presta-price {
    display: inline-flex; align-items: baseline; gap: 8px; margin: -34px auto 14px;
    background: #fff; border: 2px solid var(--pa); border-radius: 999px; padding: 7px 20px;
    box-shadow: var(--shadow); position: relative;
}
.drm-presta-price-label { color: var(--gray); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.drm-presta-price-value { color: var(--pa); font-size: 21px; font-weight: 900; }
.drm-presta ul { list-style: none; padding: 0; margin: 0 0 18px; flex: 1; }
.drm-presta li { display: flex; gap: 9px; align-items: center; justify-content: center; text-align: center; padding: 7px 0; font-size: 14.5px; color: var(--ink); border-bottom: 1px dashed var(--line); }
.drm-presta li:last-child { border-bottom: 0; }
.drm-presta li svg { width: 16px; height: 16px; color: var(--pa); flex: none; margin-top: 3px; }
.drm-presta-btn { justify-content: center; border-color: var(--pa); color: var(--pa); font-size: 14.5px; padding: 11px 18px; }
.drm-presta-btn:hover { background: var(--pa); color: #fff; }
.drm-presta-foot { text-align: center; color: var(--gray); font-size: 13.5px; max-width: 760px; margin: 26px auto 0; }

/* Engagements (accueil) */
.drm-commits { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.drm-commit {
    position: relative; text-align: center; background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 30px 24px 26px;
    overflow: hidden;
    transition: background .3s ease, transform .3s ease, border-color .3s ease;
}
.drm-commit:hover { background: rgba(255,255,255,.09); transform: translateY(-6px); border-color: rgba(249,115,22,.55); }
.drm-commit-num {
    position: absolute; top: 10px; right: 16px; font-size: 42px; font-weight: 900;
    color: rgba(255,255,255,.07); line-height: 1; pointer-events: none;
}
.drm-commit-icon {
    width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--orange), #fb923c); color: #fff; margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(249,115,22,.3);
    transition: transform .3s ease;
}
.drm-commit:hover .drm-commit-icon { transform: rotate(-6deg) scale(1.1); }
.drm-commit-icon svg { width: 25px; height: 25px; }
.drm-commit h3 { color: #fff; font-size: 16.5px; margin-bottom: 8px; }
.drm-commit p { color: #b7c8d9; font-size: 14px; margin: 0; }
.drm-commit-strip {
    margin-top: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
    background: rgba(255,255,255,.06); border: 1px dashed rgba(255,255,255,.25); border-radius: var(--radius);
    padding: 22px 28px;
}
.drm-commit-strip p { margin: 0; color: #e6eef7; font-weight: 600; font-size: 15.5px; }
.drm-commit-strip > div { display: flex; gap: 12px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Témoignages
   -------------------------------------------------------------------------- */
.drm-testis { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.drm-testi { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 30px 28px; transition: transform .3s ease, box-shadow .3s ease; display: flex; flex-direction: column; }
.drm-testi p { flex: 1; }
.drm-testi .drm-testi-author { margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line); }
.drm-testi:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.drm-testi-stars { display: flex; gap: 3px; color: #f5b301; margin-bottom: 14px; }
.drm-testi-stars svg { width: 17px; height: 17px; }
.drm-testi p { color: var(--gray); font-style: italic; font-size: 15.5px; }
.drm-testi-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.drm-testi-avatar {
    width: 44px; height: 44px; border-radius: 50%; color: #fff; font-weight: 800;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
}
.drm-testi-author strong { display: block; color: var(--navy); font-size: 15px; }
.drm-testi-author span { color: var(--gray); font-size: 13px; }

/* --------------------------------------------------------------------------
   Bande CTA + fil d'Ariane
   -------------------------------------------------------------------------- */
.drm-cta-band { background: linear-gradient(120deg, var(--orange) 0%, #fb923c 100%); color: #fff; padding: 56px 0; }
.drm-cta-band h2 { color: #fff; font-size: clamp(22px, 3vw, 32px); margin-bottom: 8px; }
.drm-cta-band p { margin: 0; opacity: .95; }
.drm-cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.drm-cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.drm-breadcrumb { background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: 13.5px; }
.drm-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 12px 0; }
.drm-breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 6px; color: var(--gray); }
.drm-breadcrumb li[aria-current] { color: var(--gray); }

/* --------------------------------------------------------------------------
   Pages service / département
   -------------------------------------------------------------------------- */
.drm-page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #123b66 100%); color: #fff;
    padding: 64px 0; position: relative; overflow: hidden;
}
.drm-page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(180deg, rgba(255,255,255,.04) 0 2px, transparent 2px 24px);
}
.drm-page-hero .container { position: relative; z-index: 2; }
.drm-page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); max-width: 860px; }
.drm-page-hero p { color: #cfdcea; font-size: 17.5px; max-width: 760px; }
.drm-page-hero .drm-hero-actions { margin-top: 24px; }

.drm-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.drm-intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }
.drm-intro-grid .drm-side {
    background: var(--bg-soft); border-radius: var(--radius); padding: 30px;
    border: 1px solid var(--line); position: sticky; top: 100px;
}
.drm-side h3 { font-size: 17px; }
.drm-side .drm-btn { width: 100%; justify-content: center; margin-top: 10px; }
.drm-side ul { list-style: none; padding: 0; margin: 0 0 8px; }
.drm-side li { display: flex; gap: 10px; padding: 7px 0; font-size: 14.5px; color: var(--gray); align-items: flex-start; }
.drm-side li svg { width: 17px; height: 17px; color: var(--blue); flex: none; margin-top: 3px; }

/* Communes */
.drm-communes-tools { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 26px; }
.drm-communes-search { position: relative; flex: 1; min-width: 260px; max-width: 460px; }
.drm-communes-search input {
    width: 100%; padding: 14px 20px; border-radius: 999px; border: 2px solid var(--line);
    font-size: 15.5px; font-family: var(--font); outline: none; transition: border-color .3s ease, box-shadow .3s ease;
}
.drm-communes-search input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(22,99,209,.12); }
.drm-communes-count { font-weight: 800; color: var(--navy); font-size: 15px; }
.drm-communes-count strong { color: var(--orange); font-size: 19px; }
.drm-communes-grid {
    columns: 4 220px; column-gap: 18px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.drm-commune {
    break-inside: avoid; display: flex; justify-content: space-between; gap: 8px;
    padding: 7px 10px; border-radius: 8px; font-size: 14.5px; color: var(--ink);
}
.drm-commune:hover { background: var(--blue-light); }
.drm-commune .cp { color: var(--gray); font-size: 13px; font-variant-numeric: tabular-nums; }
.drm-commune.is-hidden { display: none; }
.drm-communes-empty { display: none; color: var(--gray); padding: 14px 10px; font-style: italic; }
.drm-communes-empty.is-shown { display: block; }

/* Liens croisés bas de page département */
.drm-crosslinks { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.drm-crosslinks .drm-cross-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.drm-cross-box h3 { font-size: 17.5px; }
.drm-cross-box ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.drm-cross-box li a {
    display: inline-block; padding: 7px 14px; border-radius: 999px; background: var(--bg-soft);
    border: 1px solid var(--line); color: var(--ink); font-size: 13.5px; font-weight: 600;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.drm-cross-box li a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* FAQ */
.drm-faq { max-width: 860px; margin: 0 auto; }
.drm-faq details {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 0 24px; margin-bottom: 14px; transition: box-shadow .3s ease;
}
.drm-faq details[open] { box-shadow: var(--shadow); border-color: var(--blue); }
.drm-faq summary {
    cursor: pointer; font-weight: 700; color: var(--navy); font-size: 16.5px; padding: 20px 30px 20px 0;
    list-style: none; position: relative;
}
.drm-faq summary::-webkit-details-marker { display: none; }
.drm-faq summary::after {
    content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 28px; height: 28px; border-radius: 50%; background: var(--blue-light); color: var(--blue);
    display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 700; transition: transform .3s ease, background .3s ease;
}
.drm-faq details[open] summary::after { content: '–'; background: var(--blue); color: #fff; }
.drm-faq details p { color: var(--gray); padding-bottom: 20px; margin: 0; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.drm-contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: start; }
.drm-form-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 38px; box-shadow: var(--shadow); }
.drm-form-card h2 { font-size: 23px; margin-bottom: 24px; }
.drm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.drm-field { margin-bottom: 16px; }
.drm-field label { display: block; font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.drm-field input, .drm-field select, .drm-field textarea {
    width: 100%; padding: 13px 16px; border: 2px solid var(--line); border-radius: 10px;
    font-size: 15px; font-family: var(--font); outline: none; background: #fff;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.drm-field input:focus, .drm-field select:focus, .drm-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(22,99,209,.10); }
.drm-field textarea { min-height: 130px; resize: vertical; }
.drm-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--gray); margin: 6px 0 20px; }
.drm-consent input { margin-top: 3px; }
.drm-alert { padding: 15px 20px; border-radius: 10px; font-weight: 600; margin-bottom: 22px; }
.drm-alert-ok { background: #e7f8ee; color: #14683a; border: 1px solid #b5e8cb; }
.drm-alert-err { background: #fdecec; color: #99231f; border: 1px solid #f5c6c4; }
.drm-contact-aside > div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 22px; }
.drm-contact-aside h3 { font-size: 17px; display: flex; align-items: center; gap: 9px; }
.drm-contact-aside h3 svg { width: 19px; height: 19px; color: var(--orange); }
.drm-contact-aside p, .drm-contact-aside li { color: var(--gray); font-size: 14.5px; }
.drm-contact-aside ul { padding-left: 18px; margin: 0; }
.drm-contact-aside li { margin-bottom: 8px; }
.drm-contact-quick { display: flex; flex-direction: column; gap: 12px; }
.drm-contact-quick .drm-btn { justify-content: center; }
.drm-btn-green { background: #25d366; color: #fff; }
.drm-btn-green:hover { background: #1eb457; color: #fff; }

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.drm-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.drm-blog-card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden; color: var(--ink);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.drm-blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.drm-blog-card-visual {
    height: 130px; display: flex; align-items: center; justify-content: center;
    background:
        repeating-linear-gradient(180deg, rgba(255,255,255,.06) 0 3px, transparent 3px 26px),
        linear-gradient(135deg, var(--navy) 0%, #14406e 70%, var(--blue) 100%);
    color: rgba(255,255,255,.85);
}
.drm-blog-card-visual svg { width: 54px; height: 54px; }
.drm-blog-card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.drm-blog-card-body h2 { font-size: 18px; margin: 0; line-height: 1.35; }
.drm-blog-card-body p { color: var(--gray); font-size: 14.5px; margin: 0; flex: 1; }
.drm-blog-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.drm-blog-tag {
    display: inline-block; background: var(--blue-light); color: var(--blue-2);
    font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px;
    padding: 4px 12px; border-radius: 999px;
}
.drm-blog-date { color: var(--gray); font-size: 13px; }
.drm-blog-meta-hero { margin-bottom: 16px; }
.drm-blog-meta-hero .drm-blog-tag { background: rgba(255,255,255,.14); color: #ffd7ab; }
.drm-blog-meta-hero .drm-blog-date { color: #b7c8d9; }

/* Scènes illustrées des pages services (images uniques) */
.drm-scene { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 30px; line-height: 0; }
.drm-scene svg { width: 100%; height: auto; display: block; }

/* Sections de contenu long (SEO) */
.drm-long { max-width: 860px; }
.drm-long-sec { margin-bottom: 44px; }
.drm-long-sec h2 { font-size: clamp(21px, 2.6vw, 27px); margin-bottom: 14px; position: relative; padding-left: 18px; }
.drm-long-sec h2::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 5px; border-radius: 4px; background: linear-gradient(180deg, var(--blue), var(--orange)); }
.drm-long-sec p { color: #3d4e5e; font-size: 16px; }
.drm-long-sec ul { color: #3d4e5e; padding-left: 22px; }
.drm-long-sec li { margin-bottom: 7px; }
.drm-long-sec strong { color: var(--navy); }
.drm-long-sec a { font-weight: 600; }

/* Tableau des tarifs */
.drm-pricing { max-width: 860px; margin: 0 auto; }
.drm-pricing table { width: 100%; border-collapse: separate; border-spacing: 0; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; }
.drm-pricing th { text-align: left; padding: 15px 22px; background: rgba(255,255,255,.10); color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .8px; }
.drm-pricing td { padding: 13px 22px; border-top: 1px solid rgba(255,255,255,.08); color: #d5e2ee; font-size: 15.5px; }
.drm-pricing tbody tr { transition: background .25s ease; }
.drm-pricing tbody tr:hover { background: rgba(255,255,255,.06); }
.drm-price { white-space: nowrap; }
.drm-price strong { color: #ffb26b; font-size: 17px; }
.drm-pricing-note { color: #9fb4c8; font-size: 13.5px; margin-top: 16px; text-align: center; }
@media (max-width: 560px) {
    .drm-pricing th, .drm-pricing td { padding: 11px 12px; font-size: 14px; }
}

/* Filtres du blog */
.drm-blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.drm-filter {
    padding: 9px 18px; border-radius: 999px; border: 2px solid var(--line); background: #fff;
    font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--gray); cursor: pointer;
    transition: all .25s ease;
}
.drm-filter:hover { border-color: var(--blue); color: var(--blue); }
.drm-filter.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }
.drm-blog-card.is-filtered { display: none; }

/* Illustrations thématiques (remplacement des images) */
.drm-blog-card-visual svg, .drm-article-visual svg { width: 54px; height: 54px; }
.drm-article-visual {
    height: 190px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.9); margin-bottom: 30px;
}
.drm-article-visual svg { width: 74px; height: 74px; }
.drm-blog-card-visual, .drm-article-visual {
    background:
        repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px),
        linear-gradient(135deg, var(--navy) 0%, #14406e 70%, var(--blue) 100%);
}
.drm-viz-roller   { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #0c3a3f 0%, #14666e 70%, #22a3ad 100%) !important; }
.drm-viz-motor    { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #4a1d05 0%, #9a3d0c 70%, #f97316 100%) !important; }
.drm-viz-remote   { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #2a1454 0%, #4c2a94 70%, #7c53d6 100%) !important; }
.drm-viz-garage   { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #22303c 0%, #40566b 70%, #6b8aa6 100%) !important; }
.drm-viz-gate     { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #12331c 0%, #1f6234 70%, #34a457 100%) !important; }
.drm-viz-lock     { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #4a0e16 0%, #8e1f2c 70%, #d84353 100%) !important; }
.drm-viz-key      { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #4a3305 0%, #96690c 70%, #e0a418 100%) !important; }
.drm-viz-door     { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #1a1e4e 0%, #333b96 70%, #5a64d8 100%) !important; }
.drm-viz-window   { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #0b3050 0%, #135a8e 70%, #2f95d8 100%) !important; }
.drm-viz-tools    { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #2e2a26 0%, #57504a 70%, #8a7f74 100%) !important; }
.drm-viz-training { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #083344 0%, #0e6377 70%, #14a3c0 100%) !important; }
.drm-viz-shield   { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #0e3327 0%, #17614a 70%, #23a37c 100%) !important; }
.drm-viz-pin      { background: repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 3px, transparent 3px 26px), linear-gradient(135deg, #3c1147 0%, #6e2382 70%, #ad46c9 100%) !important; }

.drm-article { max-width: 780px; font-size: 16.5px; color: #2c3a48; }
.drm-article h2 { font-size: 24px; margin: 36px 0 14px; }
.drm-article h3 { font-size: 19px; margin: 26px 0 10px; }
.drm-article p { margin: 0 0 16px; }
.drm-article ul, .drm-article ol { margin: 0 0 18px; padding-left: 24px; }
.drm-article li { margin-bottom: 8px; }
.drm-article strong { color: var(--navy); }

/* --------------------------------------------------------------------------
   Pages légales / footer
   -------------------------------------------------------------------------- */
.drm-legal { max-width: 820px; }
.drm-legal h2 { font-size: 21px; margin-top: 34px; }
.drm-legal p, .drm-legal li { color: var(--gray); }

.drm-footer { background: var(--navy); color: #b7c8d9; padding-top: 64px; font-size: 14.5px; }
.drm-footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; }
.drm-footer h3 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.drm-footer ul { list-style: none; padding: 0; margin: 0; }
.drm-footer li { margin-bottom: 9px; }
.drm-footer a { color: #b7c8d9; transition: color .25s ease; }
.drm-footer a:hover { color: #fff; }
.drm-footer-zones { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 14px; }
.drm-footer-zones li { margin-bottom: 5px; white-space: nowrap; font-size: 14px; }
.drm-footer-contact li a, .drm-footer-contact li span { display: inline-flex; gap: 9px; align-items: flex-start; }
.drm-footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--orange); }
.drm-logo-footer { color: #fff; margin-bottom: 14px; }
.drm-logo-footer .drm-logo-text strong { color: #6db1ff; }
.drm-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.drm-footer-bottom-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.drm-footer-bottom p { margin: 0; font-size: 13.5px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1020px) {
    .drm-about, .drm-intro-grid, .drm-contact-grid { grid-template-columns: 1fr; }
    .drm-intro-grid .drm-side { position: static; }
    .drm-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .drm-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff;
        flex-direction: column; gap: 0; padding: 12px 22px 20px; border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 30px rgba(11,28,46,.12);
    }
    .drm-nav.is-open { display: flex; }
    .drm-nav a { padding: 13px 0; border-bottom: 1px solid var(--bg-soft); }
    .drm-burger { display: flex; }
    .drm-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .drm-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .drm-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    /* Numéro toujours visible sur mobile */
    .drm-btn-phone { padding: 10px 14px; font-size: 14px; gap: 7px; }
    .drm-btn-phone svg { width: 16px; height: 16px; }
    .drm-logo-text { font-size: 14px; }
    .drm-topbar-right .drm-topbar-item { display: none; }
    .drm-hero { padding: 64px 0 84px; }
    .drm-section { padding: 60px 0; }
    .drm-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .drm-footer-grid { grid-template-columns: 1fr; }
    .drm-communes-grid { columns: 2 140px; padding: 18px; }
    .drm-cta-band-inner { flex-direction: column; align-items: flex-start; }
}
