/* ═══════════════════════════════════════════════════════════════
   SERRURIER IVRY-SUR-SEINE — styles.css v3
   Direction: Éditorial brutaliste organique
   Fonts: Unbounded (display, ultra-bold) + Outfit (body)
   Palette: Jade sombre / Corail chaud / Crème organique / Viridian
   ═══════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

/* ── TOKENS ── */
:root {
    --coral: #E53935;
    --coral-l: #FF6B6B;
    --coral-pale: #FFF0EE;
    --jade: #0D2B2B;
    --jade-mid: #122222;
    --jade-l: #1a3535;
    --viridian: #1B7A5E;
    --vir-l: #2aaa82;
    --cream: #F5EFE6;
    --cream-d: #EDE4D7;
    --ink: #171210;
    --gold: #F0B429;

    --f-display: 'Unbounded', sans-serif;
    --f-body: 'Outfit', sans-serif;

    --max-w: 1160px;
    --sn-w: 72px;
}

/* ── FIX IOS SAFARI SVG ──
   Safari/iOS ne rend pas correctement les SVG sans dimensions explicites
   dans certains contextes flex/grid. On force le rendu ici.
*/
svg {
    display: inline-block;
    flex-shrink: 0;
    overflow: visible;
}

/* ── SCROLL REVEAL ── */
.js-r {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
}

.js-r.in {
    opacity: 1;
    transform: none;
}

.js-d1 { transition-delay: .1s; }
.js-d2 { transition-delay: .2s; }
.js-d3 { transition-delay: .32s; }
.js-d4 { transition-delay: .44s; }

/* ── SIDENAV ── */
.sidenav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sn-w);
    background: var(--jade);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 24px;
    z-index: 200;
    border-right: 1px solid rgba(255, 255, 255, .05);
}

.sn-logo {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral);
    border-radius: 12px;
    color: white;
    padding: 10px;
    margin-bottom: 36px;
    transition: transform .2s;
}

.sn-logo:hover {
    transform: rotate(-8deg) scale(1.05);
}

.sn-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.sn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: rgba(255, 255, 255, .38);
    padding: 11px;
    position: relative;
    transition: color .2s, background .2s;
}

.sn-link:hover {
    color: white;
    background: rgba(255, 255, 255, .08);
}

.sn-link::after {
    content: attr(data-label);
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--jade-l);
    color: white;
    font-family: var(--f-body);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s;
}

.sn-link:hover::after {
    opacity: 1;
}

.sn-call {
    width: 44px;
    height: 44px;
    background: var(--coral);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 12px;
    transition: background .2s, transform .2s;
}

.sn-call:hover {
    background: var(--coral-l);
    transform: scale(1.05);
}

/* ── MOBILE BAR ── */
.mob-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--jade);
    z-index: 200;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mob-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.mob-logo span {
    font-family: var(--f-display);
    font-size: 0.82rem;
    font-weight: 700;
}

.mob-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mob-tel {
    color: var(--coral-l);
    font-family: var(--f-display);
    font-size: 0.82rem;
    font-weight: 700;
}

.mob-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mob-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, .7);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.mob-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mob-burger.open span:nth-child(2) {
    opacity: 0;
}

.mob-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mob-drawer {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--jade-mid);
    z-index: 199;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mob-drawer ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mob-drawer a {
    display: block;
    padding: 12px 16px;
    color: rgba(255, 255, 255, .7);
    font-size: 0.95rem;
    border-radius: 8px;
    transition: color .2s, background .2s;
}

.mob-drawer a:hover {
    color: white;
    background: rgba(255, 255, 255, .07);
}

/* ── CANVAS ── */
.canvas {
    margin-left: var(--sn-w);
}

/* ── SHARED TYPOGRAPHY ── */
.sec-h2 {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 24px;
}

.sec-h2.light { color: white; }

.sec-h2 em {
    font-style: normal;
    color: var(--coral);
}

.sec-h2.light em { color: var(--vir-l); }

.sec-sub {
    font-size: 1.05rem;
    color: rgba(23, 18, 16, .6);
    max-width: 540px;
    margin-bottom: 0;
}

.sec-sub.light { color: rgba(255, 255, 255, .6); }
.sec-sub strong { color: rgba(23, 18, 16, .85); }
.sec-sub.light strong { color: rgba(255, 255, 255, .9); }

.sec-marker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.smark-num {
    font-family: var(--f-display);
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--coral);
    background: var(--coral-pale);
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: .04em;
}

.sec-marker.light .smark-num {
    background: rgba(229, 57, 53, .2);
    color: #FF8A80;
}

.smark-label {
    font-family: var(--f-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(23, 18, 16, .4);
}

.sec-marker.light .smark-label { color: rgba(255, 255, 255, .38); }

/* ── BUTTONS ── */
.btn-pill-coral {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--coral);
    color: white;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 50px;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(229, 57, 53, .3);
}

.btn-pill-coral:hover {
    background: var(--coral-l);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(229, 57, 53, .4);
}

.btn-pill-coral.sm {
    padding: 12px 22px;
    font-size: 0.82rem;
}

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

.btn-ghost-w {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: white;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 50px;
    transition: background .2s, border-color .2s;
}

.btn-ghost-w:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .4);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid rgba(23, 18, 16, .22);
    color: var(--ink);
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 50px;
    transition: border-color .2s, background .2s;
}

.btn-outline-dark:hover {
    border-color: var(--coral);
    background: var(--coral-pale);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .28);
    color: white;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 50px;
    transition: border-color .2s, background .2s;
}

.btn-outline-light:hover {
    border-color: white;
    background: rgba(255, 255, 255, .08);
}

/* ── LIVE DOT ── */
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--vir-l);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

.live-dot.sm {
    width: 6px;
    height: 6px;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.7); }
}

/* ═══════════════════════════════════
   SPLASH
═══════════════════════════════════ */
.splash {
    position: relative;
    background: var(--jade);
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    will-change: transform;
}

.orb-a {
    width: 600px;
    height: 600px;
    top: -180px;
    right: -100px;
    background: radial-gradient(circle, rgba(229, 57, 53, .28) 0%, transparent 70%);
    animation: drift 20s ease-in-out infinite alternate;
}

.orb-b {
    width: 480px;
    height: 480px;
    bottom: -140px;
    left: 5%;
    background: radial-gradient(circle, rgba(27, 122, 94, .32) 0%, transparent 70%);
    animation: drift 26s ease-in-out infinite alternate-reverse;
}

.orb-c {
    width: 320px;
    height: 320px;
    top: 35%;
    left: 28%;
    background: radial-gradient(circle, rgba(240, 180, 41, .18) 0%, transparent 70%);
    animation: drift 18s ease-in-out infinite alternate;
    animation-delay: -8s;
}

.orb-d {
    width: 260px;
    height: 260px;
    top: 10%;
    left: 55%;
    background: radial-gradient(circle, rgba(42, 170, 130, .2) 0%, transparent 70%);
    animation: drift 22s ease-in-out infinite alternate-reverse;
    animation-delay: -4s;
}

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(35px, 25px) scale(1.1); }
}

.noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.splash-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 100px 60px 120px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.splash-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50px;
    color: rgba(255, 255, 255, .65);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: .06em;
    margin-bottom: 36px;
}

.splash-h1 {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1;
    letter-spacing: -.03em;
    color: white;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.splash-h1 em {
    font-style: normal;
    background: linear-gradient(110deg, var(--coral-l) 0%, var(--gold) 50%, var(--vir-l) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.splash-foot {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.splash-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .58);
    max-width: 440px;
    line-height: 1.65;
}

.splash-sub strong { color: rgba(255, 255, 255, .88); }

.splash-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
    margin-top: 4px;
}

.trust-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    color: rgba(255, 255, 255, .6);
    font-size: 0.82rem;
    font-weight: 500;
}

.trust-pill svg { flex-shrink: 0; color: var(--vir-l); }

.wave-sep {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.wave-sep svg {
    width: 100%;
    display: block;
}

/* ── SERVICES ── */
.services {
    padding: 100px 60px 80px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.sec-marker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    opacity: .5;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.smark-num {
    font-family: var(--f-display);
    font-size: .85rem;
    font-weight: 700;
}

.sec-h2 {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 52px;
}

.sec-h2 em {
    font-style: normal;
    color: var(--coral);
}

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bc {
    background: white;
    border-radius: 20px;
    padding: 32px 28px 28px;
    border: 1px solid rgba(23, 18, 16, .07);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .28s cubic-bezier(.22, .68, 0, 1.2), box-shadow .28s;
    box-shadow: 0 2px 12px rgba(23, 18, 16, .05);
}

.bc:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(23, 18, 16, .11);
}

.bc-hot {
    background: var(--jade);
    border-color: var(--jade);
}

.bc-n {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--f-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: rgba(23, 18, 16, .05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.bc-hot .bc-n { color: rgba(255, 255, 255, .05); }

.bc-ico {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    padding: 11px;
    flex-shrink: 0;
    transition: background .2s;
}

.bc:not(.bc-hot):hover .bc-ico { background: var(--coral-pale); }

.bc-hot .bc-ico {
    background: rgba(255, 255, 255, .08);
    color: var(--vir-l);
}

.bc h3 {
    font-family: var(--f-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
    margin-top: 4px;
}

.bc-hot h3 { color: white; }

.bc p {
    font-size: .875rem;
    color: rgba(23, 18, 16, .55);
    line-height: 1.65;
    flex: 1;
}

.bc-hot p { color: rgba(255, 255, 255, .55); }

.bc-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--f-display);
    font-size: .8rem;
    font-weight: 700;
    color: var(--coral);
    text-decoration: none;
    margin-top: 4px;
    transition: gap .2s;
}

.bc-cta:hover { gap: 11px; }
.bc-hot .bc-cta { color: var(--vir-l); }

@media (max-width: 900px) {
    .bento { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .services { padding: 60px 20px 60px; }
    .bento { grid-template-columns: 1fr; }
}

/* ── CTA BAND ── */
.cta-band {
    background: #0e2b28;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 2em;
}

.cta-band-text {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.cta-band-text em {
    font-style: normal;
    color: var(--vir-l);
}

.cta-band-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--coral);
    color: white;
    font-family: var(--f-display);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .2s, gap .2s;
}

.cta-band-btn:hover {
    opacity: .85;
    gap: 13px;
}

@media (max-width: 640px) {
    .cta-band {
        flex-direction: column;
        text-align: center;
        padding: 48px 24px;
        border-radius: 30px 30px 0 0;
        margin-top: 0.1em;
    }
}

/* ═══════════════════════════════════
   ZONES — cream
═══════════════════════════════════ */
.zones {
    background: var(--cream);
    padding: 100px 0;
}

.zones-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 80px;
    align-items: start;
}

.zones-left .sec-sub { margin-bottom: 0; }

.ztags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 36px;
}

.zt {
    padding: 8px 16px;
    background: white;
    border: 1px solid rgba(23, 18, 16, .1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink);
    transition: background .2s, border-color .2s, transform .2s, color .2s;
}

.zt:hover {
    background: var(--jade);
    border-color: var(--jade);
    color: white;
    transform: translateY(-2px);
}

.zt-main {
    background: var(--coral);
    border-color: var(--coral);
    color: white;
    font-weight: 700;
}

.zones-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.zmap-shell {
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(23, 18, 16, .08);
    box-shadow: 0 8px 40px rgba(23, 18, 16, .1);
    overflow: hidden;
}

.zmap-badge {
    padding: 14px 20px;
    font-family: var(--f-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(23, 18, 16, .4);
    border-bottom: 1px solid rgba(23, 18, 16, .06);
}

.zmap-svg {
    display: block;
    width: 100%;
}

.zmap-foot {
    padding: 10px 16px;
    font-size: 0.75rem;
    color: rgba(23, 18, 16, .35);
    border-top: 1px solid rgba(23, 18, 16, .05);
}

.pin-pulse {
    animation: pinP 3s ease-in-out infinite;
}

@keyframes pinP {
    0%, 100% { opacity: .5; transform: scale(.85); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ═══════════════════════════════════
   TARIFS — jade
═══════════════════════════════════ */
.tarifs {
    background: var(--jade);
    position: relative;
}

.wave-in-tarifs, .wave-out-tarifs { line-height: 0; }
.wave-in-tarifs svg, .wave-out-tarifs svg { width: 100%; display: block; }

.tarifs-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px 60px 80px;
}

.tarifs-inner .sec-marker { margin-bottom: 20px; }

.tarif-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.titem {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, .045);
    border-radius: 16px;
    transition: background .2s;
}

.titem:hover { background: rgba(255, 255, 255, .08); }

.titem.titem-feat {
    background: rgba(229, 57, 53, .15);
    border: 1px solid rgba(229, 57, 53, .25);
}

.titem.titem-feat:hover { background: rgba(229, 57, 53, .22); }

.titem-ico {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vir-l);
    padding: 9px;
    flex-shrink: 0;
}

.titem-feat .titem-ico {
    color: var(--coral-l);
    background: rgba(229, 57, 53, .15);
}

.titem-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.titem-name {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.titem-detail {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, .42);
}

.titem-price {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
    white-space: nowrap;
}

.tarif-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 24px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    color: rgba(255, 255, 255, .48);
    font-size: 0.86rem;
    line-height: 1.6;
}

.tarif-note svg {
    color: rgba(255, 255, 255, .3);
    flex-shrink: 0;
    margin-top: 2px;
}

.tarif-note strong { color: rgba(255, 255, 255, .75); }

.tarif-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ═══════════════════════════════════
   CONTACT — cream
═══════════════════════════════════ */
.contact {
    background: var(--cream);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.contact-blob {
    position: absolute;
    top: -10%;
    right: -8%;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(229, 57, 53, .06) 0%, transparent 60%);
    pointer-events: none;
}

.contact-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left .sec-sub { margin-bottom: 0; }

.big-tel {
    margin-top: 36px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.big-tel a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.02em;
    transition: color .2s;
}

.big-tel a:hover { color: var(--coral); }
.big-tel a svg { color: var(--coral); flex-shrink: 0; }

.big-tel span {
    font-size: 0.85rem;
    color: rgba(23, 18, 16, .5);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.contact-osm {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(23, 18, 16, .09);
    box-shadow: 0 4px 24px rgba(23, 18, 16, .08);
}

.contact-osm iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

@media (max-width: 640px) {
    .contact-osm iframe { height: 260px; }
}

/* ── CONTACT FORM ── */
.contact-form {
    background: white;
    border-radius: 28px;
    padding: 44px 40px;
    border: 1px solid rgba(23, 18, 16, .08);
    box-shadow: 0 8px 40px rgba(23, 18, 16, .1);
}

.form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(23, 18, 16, .07);
    font-family: var(--f-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(23, 18, 16, .35);
}

.form-top svg { color: var(--coral); }

.fg { margin-bottom: 18px; }

.fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fg label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(23, 18, 16, .55);
}

.fg label sup { color: var(--coral); }

.fg input,
.fg textarea,
.fg select {
    width: 100%;
    padding: 13px 16px;
    background: var(--cream);
    border: 1.5px solid transparent;
    border-radius: 12px;
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 0.92rem;
    outline: none;
    transition: border-color .2s, background .2s;
}

.fg input::placeholder,
.fg textarea::placeholder { color: rgba(23, 18, 16, .28); }

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--coral);
    background: white;
}

.fg input[readonly] {
    opacity: .5;
    cursor: not-allowed;
}

.fg textarea {
    resize: vertical;
    min-height: 96px;
}

.sel-wrap { position: relative; }

.sel-wrap select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 44px;
}

.sel-wrap select option {
    background: white;
    color: var(--ink);
}

.sel-arr {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    color: rgba(23, 18, 16, .4);
    pointer-events: none;
}

/* ── Autocomplete adresse ── */
.addr-wrap { position: relative; }

.addr-wrap.is-loading::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border: 2px solid rgba(23, 18, 16, .12);
    border-top-color: var(--coral);
    border-radius: 50%;
    animation: addr-spin .6s linear infinite;
    pointer-events: none;
}

@keyframes addr-spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

.addr-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: white;
    border: 1.5px solid rgba(23, 18, 16, .09);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(23, 18, 16, .12);
    overflow: hidden;
    z-index: 99;
    list-style: none;
    padding: 6px;
    margin: 0;
}

.addr-suggestions.is-visible { display: block; }

.addr-suggestions li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 10px;
    cursor: pointer;
    gap: 10px;
    transition: background .15s;
}

.addr-suggestions li:hover,
.addr-suggestions li.is-highlighted { background: var(--cream); }

.sug-main {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
}

.sug-extra {
    display: block;
    font-size: 0.78rem;
    color: rgba(23, 18, 16, .45);
    margin-top: 2px;
}

.sug-dept {
    font-family: var(--f-display);
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--coral-pale);
    color: var(--coral);
    padding: 3px 8px;
    border-radius: 20px;
    flex-shrink: 0;
    white-space: nowrap;
}

.field-hint {
    margin-top: 6px;
    font-size: 0.76rem;
    color: rgba(23, 18, 16, .38);
    line-height: 1.5;
}

.field-hint.is-error {
    color: var(--coral);
    font-weight: 600;
}

.check-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 22px;
}

.check-row input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--coral);
}

.check-row span {
    font-size: 0.8rem;
    color: rgba(23, 18, 16, .48);
    line-height: 1.5;
}

.form-fb {
    margin-top: 14px;
    font-size: 0.86rem;
    min-height: 18px;
}

.form-fb.ok { color: #1a7a4a; }
.form-fb.err { color: var(--coral); }

.form-priv {
    font-size: 0.76rem;
    color: rgba(23, 18, 16, .3);
    margin-top: 14px;
}

@media (max-width: 540px) {
    .contact-form { padding: 28px 20px; }
    .fg-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════
   FAQ — cream-dark
═══════════════════════════════════ */
.faq {
    background: var(--cream-d);
    position: relative;
}

.wave-in-faq { line-height: 0; }
.wave-in-faq svg { width: 100%; display: block; }

.faq-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 60px 100px;
}

.faq-acc {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fi {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(23, 18, 16, .07);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(23, 18, 16, .05);
}

.fi-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 22px 26px;
    text-align: left;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink);
    line-height: 1.3;
    transition: color .2s;
}

.fi-btn:hover { color: var(--coral); }
.fi-btn[aria-expanded="true"] { color: var(--coral); }

.fi-ico {
    width: 30px;
    height: 30px;
    background: var(--cream);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--coral);
    padding: 7px;
    transition: transform .3s, background .2s;
}

.fi-btn[aria-expanded="true"] .fi-ico {
    transform: rotate(180deg);
    background: var(--coral-pale);
}

.fi-panel {
    display: none;
    padding: 0 26px 22px;
}

.fi-panel.open { display: block; }

.fi-panel p {
    font-size: 0.9rem;
    color: rgba(23, 18, 16, .62);
    line-height: 1.7;
}

/* ═══════════════════════════════════
   FOOTER — jade dark
═══════════════════════════════════ */
.footer {
    background: var(--jade);
    position: relative;
}

.footer-wave-in { line-height: 0; }
.footer-wave-in svg { width: 100%; display: block; }

.footer-body {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px 60px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    margin-bottom: 18px;
}

.footer-logo svg { color: var(--coral); }

.fl-name {
    display: block;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.fl-sub {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, .38);
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
    margin-bottom: 22px;
}

.footer-desc strong { color: rgba(255, 255, 255, .75); }

.footer-tel-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    background: var(--coral);
    color: white;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 24px;
    transition: background .2s;
}

.footer-tel-cta:hover { background: var(--coral-l); }

.footer-nap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nap div {
    display: flex;
    gap: 12px;
    font-size: 0.84rem;
}

.footer-nap dt {
    color: rgba(255, 255, 255, .4);
    min-width: 65px;
}

.footer-nap dd { color: rgba(255, 255, 255, .55); }

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.fcol-t {
    font-family: var(--f-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 14px;
}

.fcol ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fcol a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, .48);
    transition: color .2s;
}

.fcol a:hover { color: white; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, .28);
}

.footer-bottom nav { display: flex; gap: 20px; }

.footer-bottom nav a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, .28);
    transition: color .2s;
}

.footer-bottom nav a:hover { color: rgba(255, 255, 255, .6); }

.footer-credit {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, .2);
}

.footer-credit a {
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    transition: color .2s;
}

.footer-credit a:hover { color: white; }

/* ═══════════════════════════════════
   FLOAT CLUSTER
═══════════════════════════════════ */
.float-cluster {
    position: fixed;
    right: 22px;
    bottom: 26px;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s, transform .4s;
    pointer-events: none;
}

.float-cluster.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.f-call {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    background: var(--coral);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    /* iOS Safari : forcer le rendu SVG dans un lien flex */
    -webkit-box-align: center;
    padding: 14px;
    box-shadow: 0 4px 24px rgba(229, 57, 53, .45);
    position: relative;
    transition: transform .2s, box-shadow .2s;
}

.f-call:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(229, 57, 53, .6);
}

.f-pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: var(--vir-l);
    border-radius: 50%;
    border: 2px solid white;
    animation: dotPulse 2s infinite;
}

.f-top {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    background: rgba(23, 18, 16, .75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    /* iOS Safari : forcer le rendu SVG dans un bouton flex */
    -webkit-box-align: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    transition: transform .2s;
}

.f-top:hover { transform: scale(1.08); }

/* ═══════════════════════════════════
   FOCUS & A11Y
═══════════════════════════════════ */
:focus-visible {
    outline: 2.5px solid var(--coral);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ═══════════════════════════════════
   WAVE HELPERS
═══════════════════════════════════ */
.wave-to-dark, .wave-to-cream, .wave-in-tarifs,
.wave-out-tarifs, .wave-in-faq, .footer-wave-in {
    position: relative;
    z-index: 1;
}

.services { padding-bottom: 0; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

/* ── 1280px ── */
@media (max-width: 1280px) {
    :root { --max-w: 100%; }

    .splash-inner,
    .services,
    .zones-wrap,
    .tarifs-inner,
    .contact-wrap,
    .faq-inner,
    .footer-body {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
    .sidenav { display: none; }
    .mob-bar { display: flex; }

    .canvas {
        margin-left: 0;
        padding-top: 60px;
    }

    .splash-h1 { font-size: clamp(3rem, 7vw, 5rem); }

    .splash-foot {
        flex-direction: column;
        gap: 28px;
    }

    .bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .bc-wide { grid-column: 1 / 3; grid-row: 1; }
    .bc-hot { grid-column: 1; grid-row: 2; }
    .bc-sm:nth-child(3) { grid-column: 2; grid-row: 2; }
    .bc-sm:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }

    .zones-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .zones-right { max-width: 520px; }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-left { max-width: 560px; }

    .footer-top { grid-template-columns: 1fr; gap: 48px; }
    .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* ── 768px ── */
@media (max-width: 768px) {

    .splash-inner,
    .services,
    .zones-wrap,
    .tarifs-inner,
    .contact-wrap,
    .faq-inner,
    .footer-body {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* ── CORRECTION ESPACE MOBILE HERO ──
       Réduit l'espace entre la navbar et le titre sur mobile
    */
    .splash-inner {
        padding-top: 40px;      /* était 80px */
        padding-bottom: 80px;   /* était 100px */
    }

    .splash-h1 {
        font-size: clamp(2.6rem, 9vw, 4rem);
        gap: 2px;
    }

    .splash-sub { font-size: 0.95rem; }

    .splash-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-row { gap: 8px; }

    .trust-pill {
        font-size: 0.78rem;
        padding: 6px 12px;
    }

    .services { padding: 80px 24px 100px; }

    .svc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 36px;
    }

    .bento {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .bc-wide,
    .bc-hot,
    .bc-sm:nth-child(3),
    .bc-sm:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
    }

    .bc { padding: 28px 24px; }

    .zones { padding: 80px 0; }
    .zones-wrap { gap: 36px; }
    .zones-right { max-width: 100%; }

    .ztags { gap: 8px; }
    .zt { font-size: 0.8rem; padding: 6px 13px; }
    .zones-ctas { flex-wrap: wrap; }

    .tarifs-inner {
        padding-top: 48px;
        padding-bottom: 60px;
    }

    .titem { padding: 16px 18px; gap: 14px; }
    .titem-ico { width: 34px; height: 34px; padding: 8px; }
    .titem-name { font-size: 0.88rem; }
    .titem-price { font-size: 0.92rem; }

    .tarif-ctas { flex-direction: column; }

    .tarif-ctas .btn-outline-light,
    .tarif-ctas .btn-pill-coral {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .contact { padding: 80px 0; }

    .contact-form {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .fg-row { grid-template-columns: 1fr; }
    .big-tel a { font-size: 1.2rem; }

    .faq-inner { padding: 48px 24px 80px; }

    .fi-btn {
        font-size: 0.85rem;
        padding: 18px 20px;
    }

    .footer-body { padding: 48px 24px 32px; }

    .footer-top {
        gap: 36px;
        margin-bottom: 36px;
        padding-bottom: 36px;
    }

    .footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .float-cluster {
        right: 16px;
        bottom: 20px;
    }
}

/* ── 480px ── */
@media (max-width: 480px) {

    .mob-bar { padding: 0 16px; }
    .mob-tel { display: none; }

    .splash-h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }

    .splash-eyebrow {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .btn-pill-coral, .btn-ghost-w {
        width: 100%;
        justify-content: center;
    }

    .bc-n { font-size: 3rem; }
    .bc-ico { width: 46px; height: 46px; }

    .zt { font-size: 0.76rem; padding: 5px 11px; }

    .titem { flex-wrap: wrap; }

    .titem-price {
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, .06);
        font-size: 1rem;
    }

    .form-top { font-size: 0.7rem; }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fl-name { font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════════
   LEGAL — Pages légales communes
═══════════════════════════════════════════════════ */

.legal-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #0D2B2B;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.legal-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.legal-logo svg { color: #E53935; flex-shrink: 0; }

.legal-logo span {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.legal-back {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}

.legal-back:hover { color: white; }
.legal-back svg { flex-shrink: 0; }

.legal-main {
    min-height: calc(100vh - 64px);
    padding: 60px 24px 80px;
}

.legal-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.legal-hero {
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(23, 18, 16, .1);
}

.legal-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: rgba(229, 57, 53, .1);
    color: #E53935;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
}

.legal-hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #0D2B2B;
    margin-bottom: 12px;
}

.legal-date {
    font-size: 0.82rem;
    color: rgba(23, 18, 16, .4);
    font-weight: 500;
}

.legal-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.legal-section h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0D2B2B;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(23, 18, 16, .07);
    letter-spacing: -.01em;
}

.legal-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legal-block p {
    font-size: 0.92rem;
    color: rgba(23, 18, 16, .68);
    line-height: 1.75;
}

.legal-block strong {
    color: #171210;
    font-weight: 700;
}

.legal-block a {
    color: #E53935;
    font-weight: 600;
    border-bottom: 1px solid rgba(229, 57, 53, .3);
    transition: border-color .2s;
}

.legal-block a:hover { border-color: #E53935; }

.legal-block ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 4px;
}

.legal-block ul li {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(23, 18, 16, .65);
    line-height: 1.6;
}

.legal-block ul li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #E53935;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.legal-footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(23, 18, 16, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-btn-home {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 24px;
    background: #0D2B2B;
    color: white;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    transition: background .2s, transform .2s;
}

.legal-btn-home:hover {
    background: #1a3535;
    transform: translateX(-3px);
}

.legal-btn-home svg { flex-shrink: 0; }

.legal-other-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-other-links a {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(23, 18, 16, .4);
    transition: color .2s;
}

.legal-other-links a:hover { color: #E53935; }

@media (max-width: 768px) {
    .legal-nav { padding: 0 20px; height: 58px; }
    .legal-logo span { display: none; }
    .legal-main { padding: 40px 20px 60px; }
    .legal-hero { margin-bottom: 40px; padding-bottom: 32px; }
    .legal-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
    .legal-body { gap: 32px; }
    .legal-section h2 { font-size: 0.92rem; }
    .legal-footer { flex-direction: column; align-items: flex-start; }
    .legal-other-links { gap: 14px; }
}

@media (max-width: 480px) {
    .legal-nav { padding: 0 16px; }
    .legal-back span { display: none; }
    .legal-main { padding: 32px 16px 48px; }
    .legal-block p, .legal-block ul li { font-size: 0.88rem; }
    .legal-btn-home { width: 100%; justify-content: center; }
    .legal-other-links { width: 100%; justify-content: space-between; }
}