/* =========================================================
   Base + Header Responsive (accessible)
========================================================= */

:root {
    --primary: #E13B36;
    --primary-2: #FF6A4A;
    --sun: #FFC857;
    --teal: #1B9D96;
    --ink: #1C2B34;
    --paper: #FFF6EE;
    --stone: #EAD8C8;
    --white: #FFFFFF;

    --focus: rgba(27, 157, 150, .35);
    --shadow: 0 18px 40px rgba(28, 43, 52, .10);
    --shadow-2: 0 10px 22px rgba(28, 43, 52, .10);
    --shadow-in: inset 0 0 0 1px rgba(28, 43, 52, .10);

    --r12: 12px;
    --r16: 16px;
    --r24: 24px;

    --s1: 8px;
    --s2: 16px;
    --s3: 24px;

    --lh: 1.55;
}

* {
    box-sizing: border-box;
}

html:focus-within {
    scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: var(--lh);
    color: var(--ink);
    background:
        radial-gradient(1200px 500px at 20% -10%, rgba(255, 200, 87, .28), transparent 55%),
        radial-gradient(900px 420px at 110% 0%, rgba(255, 106, 74, .22), transparent 55%),
        radial-gradient(900px 500px at 80% 110%, rgba(27, 157, 150, .12), transparent 60%),
        var(--paper);
}

a {
    color: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(28, 43, 52, .15);
    transform: translateY(-200%);
    transition: transform .2s ease;
    z-index: 999;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(1120px, calc(100% - 2*var(--s2)));
    margin: 0 auto;
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
        animation: none !important;
    }
}

/* =======================
   Topbar
======================= */
.topbar {
    padding: 10px 0;
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(28, 43, 52, .10);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s2);
    font-size: .9rem;
    letter-spacing: .01em;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .75);
    box-shadow: var(--shadow-in);
    white-space: nowrap;
}

.pill .sep {
    opacity: .55;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 0 0 6px rgba(225, 59, 54, .12);
}

.pill .ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    opacity: .9;
}

/* Topbar responsive */
@media (max-width: 640px) {
    .topbar-inner {
        flex-direction: column;
        gap: 8px;
    }

    .pill {
        font-size: .85rem;
        padding: 6px 10px;
    }
}

/* =======================
   Header / Nav
======================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 246, 238, .70);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(28, 43, 52, .10);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: var(--s2);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-height: 44px;
}

.logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background:
        radial-gradient(18px 18px at 30% 30%, rgba(255, 255, 255, .85), rgba(255, 255, 255, 0) 60%),
        linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: var(--shadow-2);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.logo::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 200, 87, .55), transparent 55%);
    transform: rotate(20deg);
    opacity: .9;
}

.brand-txt strong {
    font-family: "Sora", system-ui, sans-serif;
    letter-spacing: -0.01em;
    display: block;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.1;
}

.brand-txt span {
    display: block;
    font-size: .85rem;
    opacity: .85;
    margin-top: 2px;
}

/* Brand responsive */
@media (max-width: 640px) {
    .brand-txt strong {
        font-size: .9rem;
    }

    .brand-txt span {
        font-size: .75rem;
    }
}

.navlinks {
    display: none;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navlinks a {
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 999px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    transition: background .2s ease, border-color .2s ease;
}

.navlinks a:hover {
    background: rgba(255, 255, 255, .7);
    border-color: rgba(28, 43, 52, .10);
}

.navlinks a:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CTA responsive */
@media (max-width: 899px) {
    .nav-cta .btn-secondary {
        display: none;
    }

    .nav-cta .btn-primary {
        display: none;
    }
}

/* =======================
   Buttons
======================= */
.btn {
    --bg: rgba(255, 255, 255, .7);
    --fg: var(--ink);
    --bd: rgba(28, 43, 52, .18);
    --sh: var(--shadow-in);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--bd);
    background: var(--bg);
    color: var(--fg);
    border-radius: 999px;
    padding: 12px 16px;
    min-height: 44px;
    box-shadow: var(--sh);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    font-weight: 600;
    letter-spacing: .01em;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-2);
}

.btn:active {
    transform: translateY(0px);
    box-shadow: var(--shadow-in);
}

.btn:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
}

.btn-primary {
    --bg: linear-gradient(135deg, var(--primary), var(--primary-2));
    --fg: #FFFFFF;
    --bd: rgba(255, 255, 255, .0);
    --sh: 0 14px 30px rgba(225, 59, 54, .22);
}

.btn-secondary {
    --bg: rgba(27, 157, 150, .14);
    --fg: var(--ink);
    --bd: rgba(27, 157, 150, .28);
    --sh: 0 12px 26px rgba(27, 157, 150, .12);
}

.btn-ico {
    display: inline-flex;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile menu button */
.menu-btn {
    min-height: 44px;
    min-width: 44px;
    border-radius: 999px;
    border: 1px solid rgba(28, 43, 52, .14);
    background: rgba(255, 255, 255, .7);
    box-shadow: var(--shadow-in);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.menu-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-2);
}

.menu-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-in);
}

.menu-btn:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
}

/* Desktop */
@media (min-width: 900px) {
    .navlinks {
        display: flex;
    }

    .menu-btn {
        display: none;
    }
}

/* =======================
   Mobile panel + overlay
======================= */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 43, 52, .35);
    backdrop-filter: blur(2px);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 130px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    z-index: 70;

    border-radius: var(--r24);
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(28, 43, 52, .12);
    box-shadow: 0 18px 40px rgba(28, 43, 52, .18);
    backdrop-filter: blur(12px);

    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;

    transition: transform .22s ease, opacity .22s ease;
}

.mobile-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 10px;
    font-family: "Sora", system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.icon-btn {
    min-height: 44px;
    min-width: 44px;
    border-radius: 14px;
    border: 1px solid rgba(28, 43, 52, .12);
    background: rgba(255, 246, 238, .75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-in);
    transition: background .2s ease;
}

.icon-btn:hover {
    background: rgba(255, 246, 238, 1);
}

.icon-btn:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
}

.mobile-links {
    padding: 0 14px 10px;
    display: grid;
    gap: 10px;
}

.mobile-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: var(--r16);
    text-decoration: none;
    border: 1px solid rgba(28, 43, 52, .10);
    background: rgba(255, 255, 255, .85);
    min-height: 44px;
    transition: background .2s ease, border-color .2s ease;
}

.mobile-links a:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(28, 43, 52, .18);
}

.mobile-links a:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
}

.mobile-cta {
    padding: 0 14px 14px;
    display: grid;
    gap: 10px;
}

.w-full {
    width: 100%;
}

/* Demo hero placeholder */
.hero {
    padding: 40px 0;
}

.hero h1 {
    font-family: "Sora", system-ui, sans-serif;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}

/* Active state pour les liens de navigation */
.navlinks a.is-active {
    background: rgba(225, 59, 54, .12);
    border-color: rgba(225, 59, 54, .25);
    color: var(--primary);
    font-weight: 700;
}

.mobile-links a.is-active {
    background: rgba(225, 59, 54, .10);
    border-color: rgba(225, 59, 54, .25);
    color: var(--primary);
    font-weight: 700;
}

.mobile-links a.is-active::before {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
    border-radius: 0 4px 4px 0;
}

.mobile-links a {
    position: relative;
}

/* ===================================================
   HERO COMPACT
=================================================== */

.hero-compact {
    padding: 28px 0 48px;
    /* BEAUCOUP plus court */
    position: relative;
    overflow: hidden;
}

/* Fond léger */
.hero-compact::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(500px 300px at 10% 10%, rgba(225, 59, 54, .08), transparent 60%),
        radial-gradient(400px 250px at 90% 20%, rgba(27, 157, 150, .08), transparent 60%);

    pointer-events: none;
}

.hero-grid {
    display: grid;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ================= TEXTE ================= */

.hero-content {
    max-width: 520px;
}

.hero-badge {
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 12px;

    background: rgba(27, 157, 150, .12);
    border: 1px solid rgba(27, 157, 150, .25);
    border-radius: 999px;

    font-size: .8rem;
    font-weight: 600;
}

.hero h1 {
    font-family: "Sora", system-ui;

    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.15;

    margin: 0 0 12px;
}

.hero-subtitle {
    font-size: 1rem;
    opacity: .9;
    margin-bottom: 6px;
}

/* ================= LIST ================= */

.hero-points {
    margin: 14px 0 18px;
    padding: 0;

    list-style: none;

    display: grid;
    gap: 6px;
}

.hero-points li {
    font-size: .9rem;
    line-height: 1.4;
}

/* ================= ACTIONS ================= */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-call {
    font-size: 1rem;
}

/* ================= IMAGE ================= */

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image réduite */
.hero-img {
    width: 100%;
    max-width: 340px;
    /* PLUS PETIT */
    height: auto;

    aspect-ratio: 4 / 5;
    object-fit: cover;

    border-radius: 22px;

    border: 1px solid rgba(28, 43, 52, .12);

    box-shadow:
        0 16px 32px rgba(28, 43, 52, .15);

    background: #f4ede7;
}

/* ================= DESKTOP ================= */

@media (min-width:900px) {

    .hero-compact {
        padding: 40px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1.15fr .85fr;
        gap: 40px;
    }

    .hero-img {
        max-width: 380px;
    }

}

/* ================= LARGE ================= */

@media (min-width:1200px) {

    .hero-img {
        max-width: 420px;
    }

}

/* ===================================================
   SERVICES SECTION - HIGH CONTRAST
=================================================== */

.services {
    position: relative;

    padding: 90px 0;

    /* Fond très différent du hero */
    background:
        linear-gradient(180deg,
            #F2F6FA 0%,
            #E7EEF4 100%);

    border-top: 1px solid rgba(28, 43, 52, .08);
    border-bottom: 1px solid rgba(28, 43, 52, .08);
}

/* Décor géométrique subtil */
.services::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(600px 350px at 85% 15%, rgba(27, 157, 150, .08), transparent 60%),
        radial-gradient(500px 300px at 15% 85%, rgba(225, 59, 54, .08), transparent 60%),
        repeating-linear-gradient(-45deg,
            rgba(28, 43, 52, .015),
            rgba(28, 43, 52, .015) 1px,
            transparent 1px,
            transparent 8px);

    pointer-events: none;
}

/* ================= HEADER ================= */

.section-head {
    text-align: center;
    max-width: 680px;

    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;

    padding: 7px 16px;
    margin-bottom: 16px;

    background: rgba(27, 157, 150, .15);
    border: 1px solid rgba(27, 157, 150, .3);

    border-radius: 999px;

    font-size: .85rem;
    font-weight: 600;

    color: var(--ink);
}

.section-head h2 {
    font-family: "Sora", system-ui;

    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.12;

    margin: 0 0 14px;
}

.section-subtitle {
    font-size: 1.05rem;
    opacity: .85;
}

/* ================= GRID ================= */

.services-grid {
    display: grid;
    gap: 28px;
}

/* ================= CARD ================= */

.service-card {
    position: relative;

    padding: 30px 28px;

    background: #FFFFFF;

    border-radius: 24px;

    border: 1px solid rgba(28, 43, 52, .10);

    box-shadow:
        0 18px 38px rgba(28, 43, 52, .14);

    transition:
        transform .4s cubic-bezier(.2, .8, .2, 1),
        box-shadow .4s ease,
        border-color .4s ease;

    overflow: hidden;
}

/* Glow dynamique */
.service-card::after {
    content: "";
    position: absolute;
    inset: -60%;

    background:
        radial-gradient(circle at 30% 30%,
            rgba(27, 157, 150, .18),
            transparent 45%);

    opacity: 0;

    transition: opacity .4s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(28, 43, 52, .20);

    border-color: rgba(27, 157, 150, .45);
}

/* ================= ICON ================= */

.service-icon {
    width: 56px;
    height: 56px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            rgba(27, 157, 150, .18),
            rgba(225, 59, 54, .18));

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    color: var(--ink);
}

/* Hover icon */
.service-card:hover .service-icon {
    transform: scale(1.12) rotate(-5deg);
    transition: transform .35s ease;
}

/* ================= TEXT ================= */

.service-card h3 {
    font-family: "Sora", system-ui;

    margin: 0 0 10px;

    font-size: 1.15rem;
}

.service-card p {
    font-size: .95rem;
    opacity: .9;
    line-height: 1.55;
}

/* ================= REVEAL ================= */

.reveal {
    opacity: 0;
    transform: translateY(28px) scale(.96);

    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ================= RESPONSIVE ================= */

@media (min-width:700px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width:1100px) {

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}


/* ===================================================
   INFO MODERN SECTION - REDESIGN
=================================================== */

.info-modern {
    position: relative;
    padding: 80px 0 90px;
    background:
        radial-gradient(900px 500px at 12% 8%, rgba(225, 59, 54, .04), transparent 65%),
        radial-gradient(800px 450px at 88% 92%, rgba(27, 157, 150, .04), transparent 65%),
        linear-gradient(to bottom, var(--paper) 0%, #F9FCFE 100%);
    overflow: hidden;
}

.info-modern::before {
    content: "";
    position: absolute;
    inset: -25%;
    background:
        conic-gradient(from 25deg at 50% 50%,
            rgba(225, 59, 54, .025),
            rgba(27, 157, 150, .025),
            rgba(255, 200, 87, .02),
            rgba(225, 59, 54, .025));
    filter: blur(100px);
    opacity: .5;
    pointer-events: none;
}

/* HEADER */
.info-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 2;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 18px;
    background: rgba(225, 59, 54, .10);
    border: 1px solid rgba(225, 59, 54, .20);
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .01em;
}

.info-head h2 {
    font-family: "Sora", system-ui;
    font-size: clamp(1.75rem, 5vw, 2.4rem);
    line-height: 1.18;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.info-lead {
    font-size: clamp(.95rem, 2vw, 1.05rem);
    opacity: .85;
    margin: 0;
    line-height: 1.65;
}

/* LAYOUT */
.info-layout {
    display: grid;
    gap: 32px;
    position: relative;
    z-index: 2;
}

@media (min-width: 1000px) {
    .info-layout {
        grid-template-columns: 1fr 380px;
        gap: 48px;
        align-items: start;
    }
}

/* MAIN GRID */
.info-main {
    display: grid;
    gap: 20px;
}

@media (min-width: 640px) {
    .info-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .info-main {
        grid-template-columns: 1fr;
    }
}

/* CARDS */
.info-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(28, 43, 52, .08);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(28, 43, 52, .08);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(28, 43, 52, .12);
    border-color: rgba(225, 59, 54, .18);
}

.info-item:hover::before {
    transform: scaleX(1);
}

@media (max-width: 639px) {
    .info-item {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
}

/* ICON */
.info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(225, 59, 54, .12), rgba(27, 157, 150, .12));
    border: 1px solid rgba(28, 43, 52, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all .3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.05) rotate(3deg);
    background: linear-gradient(135deg, rgba(225, 59, 54, .18), rgba(27, 157, 150, .18));
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

/* TEXT CONTENT */
.info-text {
    flex: 1;
}

.info-text h3 {
    font-family: "Sora", system-ui;
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.info-text p {
    margin: 0 0 10px;
    font-size: .94rem;
    line-height: 1.65;
    opacity: .88;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.info-small {
    font-size: .88rem;
    opacity: .75;
    line-height: 1.6;
}

/* SIDEBAR CTA */
.info-side {
    display: flex;
    align-items: flex-start;
}

.info-cta {
    width: 100%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .95)),
        radial-gradient(circle at top right, rgba(225, 59, 54, .04), transparent 70%);
    border: 1px solid rgba(28, 43, 52, .10);
    border-radius: 20px;
    box-shadow:
        0 24px 60px rgba(28, 43, 52, .10),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    padding: 28px;
    backdrop-filter: blur(8px);
}

@media (max-width: 999px) {
    .info-cta {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .info-cta {
        padding: 24px 20px;
    }
}

.info-cta-top {
    margin-bottom: 20px;
}

.info-cta-top strong {
    display: block;
    font-family: "Sora", system-ui;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.info-cta-top p {
    margin: 0;
    font-size: .95rem;
    opacity: .82;
    line-height: 1.6;
}

/* ACTIONS */
.info-cta-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

/* MINI LIST */
.info-mini {
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
    display: grid;
    gap: 14px;
    border-top: 1px solid rgba(28, 43, 52, .08);
}

.info-mini li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    opacity: .88;
    line-height: 1.5;
}

.mini-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
    background: rgba(27, 157, 150, .10);
    border: 1px solid rgba(27, 157, 150, .18);
    color: var(--teal);
}

.mini-ico svg {
    width: 18px;
    height: 18px;
}

/* STICKY SIDEBAR ON DESKTOP */
@media (min-width: 1000px) {
    .info-side {
        position: sticky;
        top: 100px;
    }
}

/* ===================================================
   ZONE PREMIUM - MODERNE & RESPONSIVE
=================================================== */

.zone-premium {
    position: relative;
    padding: 80px 0 90px;
    background:
        radial-gradient(800px 500px at 15% 10%, rgba(225, 59, 54, .05), transparent 60%),
        radial-gradient(700px 450px at 85% 90%, rgba(27, 157, 150, .05), transparent 60%),
        linear-gradient(135deg, #FFF6EE 0%, #F8FBFD 100%);
    overflow: hidden;
}

.zone-premium::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        conic-gradient(from 30deg at 50% 50%,
            rgba(225, 59, 54, .02),
            rgba(27, 157, 150, .02),
            rgba(255, 200, 87, .015),
            rgba(225, 59, 54, .02));
    filter: blur(100px);
    opacity: .6;
    pointer-events: none;
}

.zone-layout {
    display: grid;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 1000px) {
    .zone-layout {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* ================= LEFT CONTENT ================= */

.zone-info {
    max-width: 580px;
}

@media (max-width: 999px) {
    .zone-info {
        max-width: 100%;
        text-align: center;
    }
}

.zone-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 18px;
    background: rgba(225, 59, 54, .10);
    border: 1px solid rgba(225, 59, 54, .22);
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .01em;
}

.zone-info h2 {
    font-family: "Sora", system-ui;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.zone-lead {
    font-size: clamp(.98rem, 2vw, 1.08rem);
    opacity: .88;
    margin-bottom: 16px;
    line-height: 1.6;
}

.zone-info p {
    line-height: 1.65;
    opacity: .82;
    margin-bottom: 12px;
}

/* Features */
.zone-features {
    list-style: none;
    padding: 0;
    margin: 26px 0 32px;
    display: grid;
    gap: 12px;
}

@media (min-width: 640px) {
    .zone-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 16px;
    }
}

.zone-features li {
    position: relative;
    padding-left: 24px;
    font-size: .93rem;
    line-height: 1.4;
}

.zone-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-radius: 3px;
    box-shadow: 0 0 0 4px rgba(225, 59, 54, .10);
}

/* Actions */
.zone-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 999px) {
    .zone-actions {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .zone-actions {
        flex-direction: column;
    }

    .zone-actions .btn {
        width: 100%;
    }
}

/* ================= RIGHT MAP ================= */

.zone-map-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    margin: 0 auto;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92)),
        linear-gradient(135deg, rgba(225, 59, 54, .03), rgba(27, 157, 150, .03));
    border-radius: 24px;
    border: 1px solid rgba(28, 43, 52, .08);
    box-shadow:
        0 24px 60px rgba(28, 43, 52, .12),
        inset 0 1px 0 rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 640px) {
    .zone-map-wrap {
        max-width: 100%;
        aspect-ratio: 1/1;
    }
}

/* Center hub */
.zone-center {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow:
        0 0 0 12px rgba(225, 59, 54, .08),
        0 0 0 24px rgba(225, 59, 54, .04),
        0 20px 50px rgba(225, 59, 54, .30);
    z-index: 10;
    animation: zoneFloat 5s ease-in-out infinite;
}

@media (max-width: 640px) {
    .zone-center {
        width: 110px;
        height: 110px;
    }
}

.zone-center strong {
    font-family: "Sora", system-ui;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

@media (max-width: 640px) {
    .zone-center strong {
        font-size: .95rem;
    }
}

.zone-center span {
    font-size: .75rem;
    opacity: .9;
}

/* Cities */
.zone-city {
    position: absolute;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .98);
    border-radius: 999px;
    border: 1px solid rgba(28, 43, 52, .10);
    font-size: .82rem;
    font-weight: 600;
    box-shadow:
        0 8px 24px rgba(28, 43, 52, .10),
        inset 0 1px 0 rgba(255, 255, 255, .8);
    opacity: 0;
    animation: zonePop .5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    white-space: nowrap;
    z-index: 5;
}

@media (max-width: 640px) {
    .zone-city {
        padding: 8px 12px;
        font-size: .74rem;
    }
}

/* Positions - 8 villes réparties en cercle autour du centre */
.c1 {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: .15s;
}

.c2 {
    top: 18%;
    right: 18%;
    animation-delay: .3s;
}

.c3 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: .45s;
}

.c4 {
    bottom: 18%;
    right: 18%;
    animation-delay: .6s;
}

.c5 {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: .75s;
}

.c6 {
    bottom: 18%;
    left: 18%;
    animation-delay: .9s;
}

.c7 {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1.05s;
}

.c8 {
    top: 18%;
    left: 18%;
    animation-delay: 1.2s;
}

@media (max-width: 640px) {
    .c1 {
        top: 6%;
    }

    .c2 {
        top: 16%;
        right: 16%;
    }

    .c3 {
        top: 50%;
        right: 4%;
    }

    .c4 {
        bottom: 16%;
        right: 16%;
    }

    .c5 {
        bottom: 6%;
    }

    .c6 {
        bottom: 16%;
        left: 16%;
    }

    .c7 {
        left: 4%;
        top: 50%;
    }

    .c8 {
        top: 16%;
        left: 16%;
    }
}

/* Lines - Plus subtiles */
.zone-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: .4;
}

.zone-lines line {
    stroke: rgba(225, 59, 54, .25);
    stroke-width: 1.5;
    stroke-dasharray: 6 8;
    animation: dash 8s linear infinite;
}

/* Dots decoratifs */
.zone-map-wrap::after {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px dashed rgba(28, 43, 52, .06);
    pointer-events: none;
    z-index: 1;
}

/* ================= ANIMATIONS ================= */

@keyframes zoneFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes zonePop {
    0% {
        transform: scale(.5) translateY(10px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: -140;
    }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {

    .zone-center,
    .zone-city,
    .zone-lines line {
        animation: none !important;
    }

    .zone-city {
        opacity: 1;
    }
}

/* ===================================================
   ACCENT STRIP - HEAVY VERSION
=================================================== */

.accent-strip.heavy {
    position: relative;

    padding: 34px 0;

    background:
        linear-gradient(135deg,
            #E13B36 0%,
            #FF6A4A 100%);

    color: #FFFFFF;

    overflow: hidden;
}

/* Glow dynamique */
.accent-strip.heavy::before {
    content: "";
    position: absolute;
    inset: -60%;

    background:
        radial-gradient(circle at 25% 50%, rgba(255, 255, 255, .22), transparent 55%),
        radial-gradient(circle at 75% 50%, rgba(255, 255, 255, .18), transparent 55%);

    filter: blur(80px);
    opacity: .8;

    pointer-events: none;
}

.accent-strip.heavy .accent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    position: relative;
    z-index: 2;
}

/* TEXTE PRINCIPAL */
.accent-text {
    margin: 0;

    font-family: "Sora", system-ui;

    font-size: clamp(1.1rem, 2.6vw, 1.45rem);

    font-weight: 700;

    letter-spacing: .015em;

    line-height: 1.35;

    max-width: 720px;
}

/* BOUTON MASSIF */
.accent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 26px;

    min-height: 52px;

    background: #FFFFFF;

    color: #E13B36;

    text-decoration: none;

    font-weight: 700;

    font-size: 1rem;

    border-radius: 999px;

    box-shadow:
        0 12px 26px rgba(0, 0, 0, .25);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        color .25s ease;
}

.accent-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 36px rgba(0, 0, 0, .35);

    background: #FFF6EE;
}

.accent-btn:active {
    transform: translateY(0);
    box-shadow:
        0 8px 18px rgba(0, 0, 0, .22);
}

/* ================= MOBILE ================= */

@media (max-width:700px) {

    .accent-strip.heavy {
        padding: 28px 0;
    }

    .accent-strip.heavy .accent-inner {
        flex-direction: column;
        text-align: center;
    }

    .accent-text {
        font-size: 1.05rem;
    }

    .accent-btn {
        width: 100%;
        max-width: 320px;
    }

}

/* ===================================================
   REVIEWS PREMIUM SECTION
=================================================== */

.reviews-premium {
    position: relative;
    padding: 110px 0;

    background:
        linear-gradient(180deg,
            #0F1E2A 0%,
            #162C3A 100%);

    color: #FFFFFF;

    overflow: hidden;
}

/* Halo décoratif */
.reviews-premium::before {
    content: "";
    position: absolute;
    inset: -25%;

    background:
        radial-gradient(circle at 20% 20%, rgba(225, 59, 54, .25), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(27, 157, 150, .25), transparent 55%);

    filter: blur(140px);
    opacity: .7;

    pointer-events: none;
}

/* ================= HEADER ================= */

.reviews-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 2;
}

.reviews-badge {
    display: inline-block;

    padding: 7px 18px;
    margin-bottom: 16px;

    background: rgba(225, 59, 54, .18);
    border: 1px solid rgba(225, 59, 54, .4);

    border-radius: 999px;

    font-size: .8rem;
    font-weight: 600;

    letter-spacing: .02em;
}

.reviews-head h2 {
    font-family: "Sora", system-ui;

    font-size: clamp(1.9rem, 4vw, 2.6rem);
    line-height: 1.12;

    margin: 0 0 14px;
}

.reviews-head p {
    font-size: 1.05rem;
    opacity: .85;
}

/* ================= GRID ================= */

.reviews-grid {
    display: grid;
    gap: 28px;

    position: relative;
    z-index: 2;
}

/* ================= CARD ================= */

.review-card {
    background: rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 18px;

    padding: 26px 26px;

    box-shadow:
        0 20px 44px rgba(0, 0, 0, .35);

    backdrop-filter: blur(6px);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.review-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .45);

    border-color: rgba(225, 59, 54, .45);
}

/* ================= TOP ================= */

.review-top {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 14px;
}

/* Initiales */
.review-avatar {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-2));

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
    font-size: .95rem;

    color: #fff;

    box-shadow:
        0 8px 18px rgba(225, 59, 54, .45);
}

/* Meta */
.review-meta strong {
    display: block;
    font-size: .95rem;
}

.review-meta span {
    display: block;
    font-size: .8rem;
    opacity: .75;
}

/* Stars */
.review-stars {
    margin-top: 2px;

    color: #FFC857;

    font-size: .9rem;

    letter-spacing: 1px;
}

/* ================= TEXT ================= */

.review-text {
    margin: 0;

    font-size: .95rem;
    line-height: 1.6;

    opacity: .9;
}

/* ================= RESPONSIVE ================= */

@media (min-width:700px) {

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width:1100px) {

    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media (max-width:500px) {

    .reviews-premium {
        padding: 90px 0;
    }

    .review-card {
        padding: 22px 20px;
    }

}

/* ===================================================
   CONTACT / DEVIS - MODERNE & RESPONSIVE
=================================================== */

.pp-devis-shell {
    position: relative;
    padding: 80px 0 100px;
    background:
        radial-gradient(900px 500px at 15% 0%, rgba(225, 59, 54, .06), transparent 65%),
        radial-gradient(800px 450px at 85% 20%, rgba(27, 157, 150, .06), transparent 65%),
        var(--paper);
    overflow: hidden;
}

.pp-devis-shell::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        conic-gradient(from 25deg at 50% 50%,
            rgba(225, 59, 54, .03),
            rgba(27, 157, 150, .03),
            rgba(255, 200, 87, .02),
            rgba(225, 59, 54, .03));
    filter: blur(120px);
    opacity: .4;
    pointer-events: none;
}

.pp-devis-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--s2);
}

/* HEADER */
.pp-devis-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.pp-devis-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 18px;
    background: rgba(225, 59, 54, .10);
    border: 1px solid rgba(225, 59, 54, .20);
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .01em;
}

.pp-devis-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(225, 59, 54, .15);
}

.pp-devis-title {
    font-family: "Sora", system-ui;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.pp-devis-title-accent {
    color: var(--primary);
}

.pp-devis-subtitle {
    margin: 0;
    opacity: .82;
    line-height: 1.6;
    font-size: clamp(.95rem, 2vw, 1.05rem);
}

.pp-devis-subtitle a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

/* GRID */
.pp-devis-grid {
    display: grid;
    gap: 32px;
    align-items: start;
}

@media (min-width: 1000px) {
    .pp-devis-grid {
        grid-template-columns: 1fr 380px;
        gap: 48px;
    }
}

/* FORM CARD */
.pp-devis-form {
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(28, 43, 52, .08);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 20px 50px rgba(28, 43, 52, .10);
}

@media (max-width: 640px) {
    .pp-devis-form {
        padding: 28px 20px;
        border-radius: 16px;
    }
}

/* rows */
.pp-devis-row {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .pp-devis-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* fields */
.pp-devis-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 20px;
}

.pp-devis-field label {
    font-size: .92rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .005em;
}

.pp-devis-field input,
.pp-devis-field select,
.pp-devis-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(28, 43, 52, .14);
    background: rgba(255, 255, 255, .98);
    border-radius: 12px;
    font-size: .95rem;
    font-family: inherit;
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.pp-devis-field input::placeholder,
.pp-devis-field textarea::placeholder {
    color: rgba(28, 43, 52, .45);
}

.pp-devis-field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.pp-devis-field input:focus,
.pp-devis-field select:focus,
.pp-devis-field textarea:focus {
    outline: none;
    border-color: rgba(225, 59, 54, .45);
    box-shadow: 0 0 0 4px rgba(225, 59, 54, .08);
}

.pp-form-helper {
    font-size: .82rem;
    opacity: .7;
    margin: 0;
    line-height: 1.4;
}

.pp-form-helper.is-error {
    color: #E13B36;
    opacity: 1;
    font-weight: 500;
}

/* checkbox */
.pp-devis-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 12px 0 24px;
    font-size: .88rem;
    line-height: 1.5;
    opacity: .88;
}

.pp-devis-checkbox input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* buttons */
.pp-devis-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

@media (max-width: 500px) {
    .pp-devis-buttons {
        flex-direction: column;
    }
}

.pp-devis-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    min-height: 52px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: .96rem;
    letter-spacing: .005em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    cursor: pointer;
}

@media (max-width: 500px) {
    .pp-devis-btn {
        width: 100%;
    }
}

.pp-btn-ico svg {
    width: 19px;
    height: 19px;
}

.pp-devis-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 16px 32px rgba(225, 59, 54, .20);
}

.pp-devis-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(225, 59, 54, .28);
}

.pp-devis-btn-primary:active {
    transform: translateY(0);
}

.pp-devis-btn-secondary {
    background: rgba(27, 157, 150, .08);
    color: var(--ink);
    border: 1px solid rgba(27, 157, 150, .25);
}

.pp-devis-btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(27, 157, 150, .12);
    box-shadow: 0 16px 32px rgba(27, 157, 150, .15);
}

.pp-devis-btn-secondary:active {
    transform: translateY(0);
}

/* privacy */
.pp-devis-privacy {
    margin: 16px 0 0;
    font-size: .82rem;
    opacity: .68;
    line-height: 1.45;
}

/* feedback */
.pp-form-feedback {
    margin-top: 16px;
    font-size: .92rem;
    line-height: 1.5;
    padding: 12px 16px;
    border-radius: 10px;
    display: none;
}

.pp-form-feedback.is-success {
    display: block;
    color: #1B9D96;
    background: rgba(27, 157, 150, .10);
    border: 1px solid rgba(27, 157, 150, .25);
}

.pp-form-feedback.is-error {
    display: block;
    color: #E13B36;
    background: rgba(225, 59, 54, .08);
    border: 1px solid rgba(225, 59, 54, .22);
}

/* AUTOCOMPLETE */
.pp-address-autocomplete-wrapper {
    position: relative;
}

.pp-address-autocomplete-wrapper.is-loading::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(28, 43, 52, .18);
    border-top-color: rgba(225, 59, 54, .8);
    animation: ppSpin .65s linear infinite;
}

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

.pp-address-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid rgba(28, 43, 52, .12);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(28, 43, 52, .15);
    overflow: hidden;
    display: none;
    z-index: 30;
    max-height: 280px;
    overflow-y: auto;
}

.pp-address-suggestions.is-visible {
    display: block;
}

.address-suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: background .15s ease;
    border-bottom: 1px solid rgba(28, 43, 52, .06);
}

.address-suggestion-item:last-child {
    border-bottom: none;
}

.address-suggestion-main {
    font-weight: 600;
    font-size: .91rem;
    color: var(--ink);
}

.address-suggestion-extra {
    font-size: .82rem;
    opacity: .68;
}

.address-suggestion-item:hover,
.address-suggestion-item.is-highlighted {
    background: rgba(225, 59, 54, .08);
}

/* ASIDE */
.pp-devis-aside {
    display: grid;
    gap: 20px;
}

@media (max-width: 999px) {
    .pp-devis-aside {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.pp-devis-map-card,
.pp-devis-info-card,
.pp-devis-urgence-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(28, 43, 52, .08);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(28, 43, 52, .10);
    padding: 24px;
}

@media (max-width: 640px) {

    .pp-devis-map-card,
    .pp-devis-info-card,
    .pp-devis-urgence-card {
        padding: 20px;
    }
}

.pp-devis-map-card h3,
.pp-devis-info-card h3 {
    font-family: "Sora", system-ui;
    margin: 0 0 16px;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

/* MAP */
.pp-devis-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(28, 43, 52, .08);
    box-shadow: 0 8px 24px rgba(28, 43, 52, .08);
}

.pp-devis-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

@media (max-width: 640px) {
    .pp-devis-map iframe {
        height: 240px;
    }
}

.pp-map-caption {
    margin: 14px 0 0;
    font-size: .88rem;
    opacity: .75;
    line-height: 1.4;
}

/* INFO CARD */
.pp-devis-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(225, 59, 54, .12), rgba(27, 157, 150, .12));
    border: 1px solid rgba(28, 43, 52, .08);
    margin-bottom: 12px;
}

.pp-devis-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.pp-devis-steps {
    margin: 16px 0 0;
    padding-left: 20px;
    display: grid;
    gap: 14px;
}

.pp-devis-steps li {
    line-height: 1.5;
}

.pp-devis-steps li strong {
    display: block;
    font-size: .93rem;
    margin-bottom: 2px;
    color: var(--ink);
}

.pp-devis-steps li p {
    margin: 0;
    font-size: .85rem;
    opacity: .72;
}

/* URGENCE CARD */
.pp-devis-urgence-card {
    background: linear-gradient(135deg,
            rgba(225, 59, 54, .08) 0%,
            rgba(255, 106, 74, .06) 100%);
    border-color: rgba(225, 59, 54, .15);
}

.pp-devis-urgence-card h4 {
    font-family: "Sora", system-ui;
    margin: 0 0 10px;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.pp-devis-urgence-card p {
    margin: 0 0 16px;
    opacity: .82;
    line-height: 1.55;
    font-size: .94rem;
}

.pp-urgence-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    min-height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: .96rem;
    box-shadow: 0 16px 32px rgba(225, 59, 54, .24);
    transition: transform .2s ease, box-shadow .2s ease;
    width: 100%;
}

.pp-urgence-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(225, 59, 54, .32);
}

.pp-urgence-btn:active {
    transform: translateY(0);
}

.pp-urgence-btn svg {
    width: 20px;
    height: 20px;
}

/* ===================================================
   FAQ PREMIUM SECTION - REDESIGN
=================================================== */

.faq-premium {
    position: relative;
    padding: 80px 0 90px;
    background:
        radial-gradient(900px 500px at 15% 10%, rgba(225,59,54,.04), transparent 65%),
        radial-gradient(800px 450px at 85% 90%, rgba(27,157,150,.04), transparent 65%),
        linear-gradient(to bottom, #FFFFFF 0%, #F8FBFD 100%);
    overflow: hidden;
}

.faq-premium::before {
    content: "";
    position: absolute;
    inset: -25%;
    background:
        conic-gradient(from 25deg at 50% 50%,
            rgba(225,59,54,.02),
            rgba(27,157,150,.02),
            rgba(255,200,87,.015),
            rgba(225,59,54,.02));
    filter: blur(100px);
    opacity: .5;
    pointer-events: none;
}

/* HEADER */
.faq-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 2;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 18px;
    background: rgba(225,59,54,.10);
    border: 1px solid rgba(225,59,54,.20);
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .01em;
    animation: fadeInDown .6s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-head h2 {
    font-family: "Sora", system-ui;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    line-height: 1.18;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    animation: fadeInUp .6s ease .1s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-head p {
    font-size: clamp(.95rem, 2vw, 1.05rem);
    opacity: .85;
    line-height: 1.65;
    margin: 0;
    animation: fadeInUp .6s ease .2s backwards;
}

/* LIST */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
    position: relative;
    z-index: 2;
}

/* ITEM */
.faq-item {
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(28,43,52,.08);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(28,43,52,.06);
    overflow: hidden;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInItem .5s ease forwards;
}

@keyframes fadeInItem {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:nth-child(1) { animation-delay: .1s; }
.faq-item:nth-child(2) { animation-delay: .15s; }
.faq-item:nth-child(3) { animation-delay: .2s; }
.faq-item:nth-child(4) { animation-delay: .25s; }
.faq-item:nth-child(5) { animation-delay: .3s; }
.faq-item:nth-child(6) { animation-delay: .35s; }
.faq-item:nth-child(7) { animation-delay: .4s; }
.faq-item:nth-child(8) { animation-delay: .45s; }
.faq-item:nth-child(9) { animation-delay: .5s; }
.faq-item:nth-child(10) { animation-delay: .55s; }

.faq-item:hover {
    border-color: rgba(225,59,54,.15);
    box-shadow: 0 16px 40px rgba(28,43,52,.10);
    transform: translateY(-2px);
}

.faq-item.is-open {
    border-color: rgba(225,59,54,.20);
    box-shadow: 
        0 20px 50px rgba(28,43,52,.12),
        inset 0 1px 0 rgba(255,255,255,.9);
}

/* QUESTION BUTTON */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-family: "Sora", system-ui;
    font-size: clamp(.95rem, 2vw, 1.05rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    color: var(--ink);
    transition: all .3s ease;
    position: relative;
}

.faq-question::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
    opacity: 0;
    transition: opacity .3s ease;
}

.faq-item.is-open .faq-question::before {
    opacity: 1;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span:first-child {
    flex: 1;
}

/* ICON CONTAINER */
.faq-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(225,59,54,.08);
    border: 1px solid rgba(225,59,54,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-icon {
    background: rgba(225,59,54,.12);
    border-color: rgba(225,59,54,.20);
}

.faq-item.is-open .faq-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-color: var(--primary);
    transform: rotate(90deg);
}

/* Icon lines */
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--primary);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
    background: #fff;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    border-radius: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    border-radius: 2px;
}

.faq-item.is-open .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* ANSWER */
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-answer p {
    margin: 0 0 16px;
    line-height: 1.7;
    font-size: .94rem;
    opacity: .88;
    color: var(--ink);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ACTIVE STATE */
.faq-item.is-open .faq-answer {
    max-height: 800px;
    padding-bottom: 20px;
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .faq-question {
        padding: 18px 20px;
        font-size: .95rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .faq-icon::before {
        width: 14px;
    }

    .faq-icon::after {
        height: 14px;
    }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-badge,
    .faq-head h2,
    .faq-head p {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .faq-icon,
    .faq-answer,
    .faq-question {
        transition: none !important;
    }
}

/* ===================================================
   FOOTER PREMIUM
=================================================== */

.site-footer {
    position: relative;
    background: 
        linear-gradient(135deg, #0D1B2A 0%, #1B2838 100%);
    color: #fff;
    padding: 80px 0 0;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(225,59,54,.4), 
        rgba(27,157,150,.4), 
        transparent);
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(225,59,54,.08), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(27,157,150,.08), transparent 50%);
    pointer-events: none;
    opacity: .6;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 40px;
    padding-bottom: 60px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1.3fr .9fr .9fr 1fr;
        gap: 48px;
    }
}

/* COLUMNS */
.footer-col h3 {
    font-family: "Sora", system-ui;
    font-size: 1.35rem;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.footer-col h4 {
    font-family: "Sora", system-ui;
    font-size: 1.05rem;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,.95);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col h4::before {
    content: "";
    width: 3px;
    height: 18px;
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.7;
    opacity: .78;
    font-size: .93rem;
    margin: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

/* Links avec icônes */
.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: all .25s ease;
    font-size: .92rem;
    padding: 8px 0;
}

.footer-link-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.footer-link-icon svg {
    width: 16px;
    height: 16px;
    color: rgba(255,255,255,.7);
    transition: all .25s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-link:hover .footer-link-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-link:hover .footer-link-icon svg {
    color: #fff;
}

/* Contact items spéciaux */
.footer-contact-list {
    display: grid;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    transition: all .3s ease;
}

.footer-contact-item:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(225,59,54,.3);
    transform: translateX(4px);
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(225,59,54,.18), rgba(255,106,74,.18));
    border: 1px solid rgba(225,59,54,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-2);
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;
}

.footer-contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-label {
    font-size: .8rem;
    opacity: .6;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.footer-contact-text a,
.footer-contact-text span {
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-contact-text a:hover {
    color: var(--primary-2);
}

/* BOTTOM */
.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 26px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    margin: 0;
    font-size: .88rem;
    opacity: .65;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    opacity: .65;
}

.footer-credit svg {
    width: 16px;
    height: 16px;
    opacity: .5;
}

.footer-credit a {
    color: var(--primary-2);
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-credit a:hover {
    color: #fff;
}

/* ===================================================
   FLOATING ACTIONS PREMIUM
=================================================== */

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

@media (max-width: 640px) {
    .floating-actions {
        right: 16px;
        bottom: 24px;
        gap: 12px;
    }
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 
        0 8px 24px rgba(225,59,54,.35),
        inset 0 1px 0 rgba(255,255,255,.2);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

@media (max-width: 640px) {
    .float-btn {
        width: 56px;
        height: 56px;
    }
}

.float-btn svg {
    width: 24px;
    height: 24px;
}

.float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 16px 40px rgba(225,59,54,.45),
        inset 0 1px 0 rgba(255,255,255,.25);
    background: linear-gradient(135deg, var(--primary-2), var(--primary));
}

.float-btn:active {
    transform: translateY(-2px);
}

/* Call button avec pulse */
.float-call {
    animation: floatPulse 2.5s infinite;
}

@keyframes floatPulse {
    0%, 100% { 
        box-shadow: 
            0 0 0 0 rgba(225,59,54,.7),
            0 8px 24px rgba(225,59,54,.35),
            inset 0 1px 0 rgba(255,255,255,.2);
    }
    50% { 
        box-shadow: 
            0 0 0 18px rgba(225,59,54,0),
            0 8px 24px rgba(225,59,54,.35),
            inset 0 1px 0 rgba(255,255,255,.2);
    }
}

/* Scroll top button */
.float-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.9);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Social media section */
.footer-social {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-social-title {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .6;
    margin-bottom: 12px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: all .3s ease;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

/* ===================================================
   PAGES LÉGALES - STYLE GÉNÉRIQUE
   (Mentions légales, CGV, Confidentialité)
=================================================== */

.legal-container {
    min-height: calc(100vh - 200px);
    padding: 60px 0 80px;
    background:
        radial-gradient(900px 500px at 15% 10%, rgba(225, 59, 54, .03), transparent 65%),
        radial-gradient(800px 450px at 85% 90%, rgba(27, 157, 150, .03), transparent 65%),
        linear-gradient(to bottom, #FFFFFF 0%, #F8FBFD 100%);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--s2);
}

/* TITLE */
.legal-title {
    font-family: "Sora", system-ui;
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 48px;
    text-align: center;
    color: var(--ink);
    position: relative;
    padding-bottom: 24px;
    margin-top: 1em;
}

.legal-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    border-radius: 2px;
}

/* SECTIONS */
.legal-section {
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(28, 43, 52, .08);
    border-radius: 18px;
    padding: 32px 36px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(28, 43, 52, .06);
    transition: all .3s ease;
}

.legal-section:hover {
    box-shadow: 0 12px 32px rgba(28, 43, 52, .10);
    border-color: rgba(225, 59, 54, .12);
}

@media (max-width: 640px) {
    .legal-section {
        padding: 24px 20px;
    }
}

.legal-section h2 {
    font-family: "Sora", system-ui;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--ink);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h2::before {
    content: "";
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
    border-radius: 2px;
    flex-shrink: 0;
}

.legal-section h3 {
    font-family: "Sora", system-ui;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--ink);
}

.legal-section p {
    margin: 0 0 16px;
    line-height: 1.75;
    color: var(--ink);
    opacity: .9;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
    opacity: .9;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all .2s ease;
    border-bottom: 1px solid transparent;
}

.legal-section a:hover {
    border-bottom-color: var(--primary);
}

.legal-section strong {
    color: var(--ink);
    font-weight: 700;
}

/* BOUTON RETOUR */
.legal-btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    box-shadow: 0 12px 28px rgba(225, 59, 54, .22);
    transition: all .3s ease;
}

.legal-btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(225, 59, 54, .28);
}

.legal-btn-home:active {
    transform: translateY(0);
}

.legal-btn-home svg {
    width: 18px;
    height: 18px;
}

/* FOOTER MINIMAL */
.legal-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .8);
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.legal-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .legal-footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.legal-footer-content p {
    margin: 0;
    font-size: .88rem;
}

.legal-footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .88rem;
}

.legal-footer-links a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: color .2s ease;
}

.legal-footer-links a:hover {
    color: var(--primary-2);
}

.legal-footer-links span {
    opacity: .4;
}

/* TABLES (pour CGV) */
.legal-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, .5);
    border-radius: 12px;
    overflow: hidden;
}

.legal-section th,
.legal-section td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(28, 43, 52, .08);
}

.legal-section th {
    background: rgba(225, 59, 54, .08);
    font-weight: 700;
    color: var(--ink);
}

.legal-section tr:last-child td {
    border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .legal-container {
        padding: 40px 0 60px;
    }

    .legal-title {
        margin-bottom: 32px;
        padding-bottom: 20px;
    }

    .legal-section {
        margin-bottom: 20px;
    }

    .legal-btn-home {
        width: 100%;
        margin-top: 32px;
    }
}