/* Bateau.click — Design system v3 (modern edition)
   ──────────────────────────────────────────────
    Navy deep + coral accent. Fonts : Bricolage Grotesque + Plus Jakarta Sans.
    Modern, clean, airy — with depth and polish. */

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

:root {
    /* COULEURS PRIMAIRES — deep navy */
    --navy:        #0E2A4E;
    --navy-mid:    #1A3D6B;
    --navy-hover:  #234D80;
    --navy-soft:   rgba(14,42,78,0.055);

    /* COULEUR ACCENT — warm coral */
    --coral:       #BF4B22;
    --coral-text:  #BF4B22;
    --coral-hover: #A83A18;
    --coral-soft:  #FFF0ED;
    --coral-mid:   #EBB8A4;

    /* COULEUR SECONDAIRE — teal-ocean */
    --teal:        #1A9E8E;
    --teal-soft:   #E6F7F5;

    /* FONDS & NEUTRES — warm off-white */
    --white:       #FFFFFF;
    --bg:          #FBF9F6;
    --bg-warm:     #F5EFE7;
    --bg-card:     #FFFFFF;
    --gray-50:     #F5F3EF;
    --gray-100:    #E8E2D9;
    --gray-200:    #C9BFAD;
    --gray-400:    #7C7160;
    --gray-600:    #4A4035;

    /* TEXTE */
    --text-main:   #1A2233;
    --text-sec:    #3E4A5C;
    --text-muted:  #8492A4;

    /* ÉTATS */
    --success:     #1A7F5A;
    --success-bg:  #E2F5EC;
    --error:       #C0392B;
    --error-bg:    #FDE2DD;

    /* OMBRES — layered, soft */
    --shadow-sm:   0 1px 3px rgba(14,42,78,0.04), 0 1px 2px rgba(14,42,78,0.06);
    --shadow-md:   0 4px 16px rgba(14,42,78,0.07), 0 1px 4px rgba(14,42,78,0.05);
    --shadow-lg:   0 12px 40px rgba(14,42,78,0.10), 0 4px 12px rgba(14,42,78,0.06);
    --shadow-xl:   0 24px 60px rgba(14,42,78,0.12), 0 8px 20px rgba(14,42,78,0.08);
    --shadow-coral: 0 6px 20px rgba(232,98,58,0.22);
    --shadow-coral-lg: 0 10px 36px rgba(232,98,58,0.30);

    /* RADIUS */
    --r-sm:  8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 26px;

    /* TRANSITIONS */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }

/* ── DISPLAY (titres très grands, peps) ── */
.display, h1, h2, h3 {
    font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-main);
}

/* ── ACCESSIBILITÉ ── */
.skip-link { position:absolute; top:-9999px; left:16px; background:var(--coral); color:white; padding:12px 20px; font-size:14px; z-index:9999; border-radius:0 0 14px 0; font-weight:600; text-decoration:none; box-shadow: var(--shadow-coral); }
.skip-link:focus { top:0; }
.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; }

/* ── HEADER ── */
header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--navy);
    border-bottom: none;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
header::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--teal) 50%, var(--coral) 100%);
    opacity: 0.9;
}
.header-inner {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo { display:flex; align-items:center; gap:10px; text-decoration:none; color:white; flex-shrink:0; }
.logo-anchor { color: white; flex-shrink:0; transition: transform 0.4s var(--ease-bounce); }
.logo:hover .logo-anchor { transform: rotate(-15deg) scale(1.1); }
.logo-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.03em; color: white;
}
.logo-text em { color: var(--coral); font-style:normal; font-weight: 700; }

.nav-menu { display:flex; align-items:center; gap:2px; flex:1; min-width:0; justify-content:center; }
.nav-link {
    padding: 8px 14px;
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s var(--ease-out);
    white-space: nowrap;
}
.nav-link:hover { color:white; background: rgba(255,255,255,0.08); }
.nav-link[aria-current="page"] { color: var(--coral); background: rgba(232,98,58,0.1); }

.btn-publish {
    padding: 10px 20px;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: var(--shadow-coral);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.btn-publish::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}
.btn-publish:hover { background: var(--coral-hover); transform: translateY(-1px); box-shadow: var(--shadow-coral-lg); }
.btn-publish:active { transform: translateY(0); }

.btn-logout-sm {
    padding: 8px 16px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 999px;
    font-size: 13px; font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer; transition: all 0.2s var(--ease-out);
    text-decoration: none; white-space: nowrap;
    display: inline-flex; align-items: center;
    flex-shrink: 0;
}
.btn-logout-sm:hover { background: rgba(232,98,58,0.18); border-color: var(--coral); color: white; }
#navAuthState { flex-shrink: 0; }

.user-menu-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.btn-user-account {
    padding: 8px 14px 8px 12px;
    background: var(--coral);
    color: white;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    transition: all 0.2s var(--ease-out);
    box-shadow: 0 2px 8px rgba(191,75,34,0.25);
    cursor: pointer;
}
.btn-user-account svg { flex-shrink: 0; }
.btn-user-account:hover { background: var(--coral-hover); transform: translateY(-1px); color: white; }
.btn-user-account:active { transform: translateY(0); }

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: #132f54;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--r-lg);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 10000;
}
.user-menu-wrap:hover .user-dropdown,
.user-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.user-dropdown a,
.user-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    text-align: left;
}
.user-dropdown a:hover,
.user-dropdown button:hover {
    background: rgba(255,255,255,0.08);
    color: white;
}
.user-dropdown svg { flex-shrink: 0; opacity: 0.6; }
.user-dropdown a:hover svg,
.user-dropdown button:hover svg { opacity: 1; }
.user-dropdown-sep {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 4px 12px;
}

.nav-auth-mobile { display: none; }
.nav-guest-mobile { display: none; }

.burger-btn {
    display: none;
    background: transparent; border: none;
    width: 40px; height: 40px;
    flex-direction: column; justify-content: center;
    gap: 5px; cursor: pointer; padding: 0;
    border-radius: 8px;
    transition: background 0.2s;
}
.burger-btn:hover { background: rgba(255,255,255,0.08); }
.burger-btn span { display:block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; margin: 0 auto; }
.burger-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
    background: linear-gradient(160deg, #0d2f55 0%, #1a4580 45%, #1e4f8a 100%);
    position: relative;
    overflow: hidden;
    padding: 28px 0 0;
}
.hero::before {
    content: '';
    position: absolute;
    top: -150px; right: -100px;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(232,98,58,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -150px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(26,158,142,0.14) 0%, transparent 60%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px 32px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}
.hero-content { display: flex; flex-direction: column; }

/* ── HERO VISUAL ── */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 0;
    width: 100%;
}
.hero-boat-wrap {
    position: relative;
    animation: heroRock 5s ease-in-out infinite;
    transform-origin: center bottom;
    flex-shrink: 0;
    margin-top: 0;
    width: 100%;
    max-width: 360px;
    display: flex;
    justify-content: center;
}
@keyframes heroRock {
    0%, 100% { transform: rotate(-1.5deg) translateY(0px); }
    50% { transform: rotate(1.5deg) translateY(-8px); }
}
.hero-boat-svg {
    width: 100px; height: 92px;
    display: block;
    object-fit: contain;
    animation: sailDrift 14s ease-in-out infinite;
}
@keyframes sailDrift {
    0%   { transform: translateX(-36px); }
    50%  { transform: translateX(36px); }
    100% { transform: translateX(-36px); }
}
.hero-water-shine { display: none; }

/* Panneau régions hero */
.hero-regions-panel {
    width: min(100%, 420px);
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: center;
}
.hero-regions-header {
    font-size: 17px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: white;
    padding: 0 4px;
}
.hero-regions-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hero-region-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    padding: 8px 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.hero-region-card:hover {
    background: rgba(255,255,255,0.17);
    transform: translateX(-3px);
}
.hero-region-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hero-region-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.hero-region-name {
    font-size: 14px; font-weight: 700;
    color: white;
    font-family: 'Bricolage Grotesque', sans-serif;
}
.hero-region-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-region-arrow {
    font-size: 18px; font-weight: 700;
    color: #E8623A;
    flex-shrink: 0;
}

/* ── CARTE FRANCE HERO ── */
.fmap-title { margin:0 0 10px; font-size:22px; font-weight:800; letter-spacing:-0.02em; text-transform:none; font-family:'Bricolage Grotesque','Plus Jakarta Sans',sans-serif; color:#ffffff; text-align:center; width:100%; }
.hero-map-wrap { position:relative; display:flex; flex-direction:column; align-items:center; gap:12px; width:100%; max-width:270px; margin:0 auto; }
.france-map { width:100%; max-width:270px; height:auto; filter:drop-shadow(0 4px 12px rgba(0,0,0,0.5)) drop-shadow(0 0 1px rgba(255,255,255,0.3)); overflow:visible; }
/* ── Wrapper carte + panneau gauche ── */
.hero-map-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
}

/* ── Panneau info région (à gauche de la carte) ── */
.fmap-region-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}
.fmap-region-slot {
    position: relative;
    height: 22px;
    width: 100%;
    text-align: center;
}
.fmap-region-hint {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.38);
    line-height: 1;
    transition: opacity 0.22s;
    text-align: center;
}
.fmap-region-info.is-visible .fmap-region-hint { opacity: 0; }
.fmap-region-name-wrap {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.22s, transform 0.22s;
}
.fmap-region-info.is-visible .fmap-region-name-wrap {
    opacity: 1;
    transform: translate(-50%, -50%);
}
.fmap-tooltip-bar { display: none; }
.fmap-tooltip-name {
    font-size: 15px;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}
.fmap-region-go {
    display: none;
}
/* Régions intérieures (non côtières) */
.fmap-int { fill:rgba(255,255,255,0.06); pointer-events:none; }
/* Zones côtières cliquables */
.fmap-zone { fill: rgba(80,160,220,0.22); transition: fill 0.22s; }
.fmap-nor .fmap-zone { fill: rgba(90,170,230,0.28); }
.fmap-bre .fmap-zone { fill: rgba(60,140,210,0.20); }
.fmap-atl .fmap-zone { fill: rgba(80,165,225,0.30); }
.fmap-med .fmap-zone { fill: rgba(70,155,215,0.24); }
.fmap-hdf .fmap-zone { fill: rgba(100,175,235,0.26); }
.fmap-ges .fmap-zone { fill: rgba(65,145,205,0.20); }
.fmap-idf .fmap-zone { fill: rgba(110,180,240,0.32); }
.fmap-cvl .fmap-zone { fill: rgba(75,158,218,0.22); }
.fmap-bfc .fmap-zone { fill: rgba(55,135,200,0.18); }
.fmap-ara .fmap-zone { fill: rgba(85,162,222,0.26); }
.fmap-link:hover .fmap-zone,
.fmap-link--active .fmap-zone { fill: rgba(232,98,58,0.55) !important; }
/* Bordures des régions */
.fmap-border { fill:none; stroke:rgba(255,255,255,0.55); stroke-width:1.2; pointer-events:none; }
.fmap-link { cursor:pointer; text-decoration:none; }
.fmap-link:focus { outline:none; }
.fmap-link:focus .fmap-zone { fill: rgba(232,98,58,0.55); stroke:white; stroke-width:2px; }
.fmap-leg:focus { outline:2px solid white; outline-offset:2px; }
/* Navigation pills sous la carte */
.fmap-legend { display:grid; grid-template-columns:1fr 1fr; gap:5px; width:100%; max-width:260px; }
.fmap-leg {
    display:flex; align-items:center; gap:6px;
    padding:6px 8px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.14);
    border-radius:9px;
    font-size:11px; font-weight:700; line-height:1;
    color:rgba(255,255,255,0.85);
    text-decoration:none;
    transition:background 0.18s, border-color 0.18s, color 0.18s;
    white-space:nowrap;
}
.fmap-leg:hover,
.fmap-leg--active { background:rgba(255,255,255,0.17); border-color:rgba(255,255,255,0.3); color:white; }
.fmap-leg-bar { width:3px; height:18px; border-radius:2px; flex-shrink:0; }
.fmap-leg-nor .fmap-leg-bar { background:#5BA4CF; }
.fmap-leg-bre .fmap-leg-bar { background:#1A9E8E; }
.fmap-leg-atl .fmap-leg-bar { background:#4A8AB5; }
.fmap-leg-med .fmap-leg-bar { background:#E8623A; }
.fmap-leg-hdf .fmap-leg-bar { background:#3A8FC4; }
.fmap-leg-ges .fmap-leg-bar { background:#C88040; }
.fmap-leg-idf .fmap-leg-bar { background:#7B9FBF; }
.fmap-leg-cvl .fmap-leg-bar { background:#5DAF78; }
.fmap-leg-bfc .fmap-leg-bar { background:#8A7BC8; }
.fmap-leg-ara .fmap-leg-bar { background:#6BC79A; }
.fmap-leg-name { flex:1; }
.fmap-leg-arrow { font-size:12px; opacity:0.5; transition:opacity 0.18s, transform 0.18s; }
.fmap-leg:hover .fmap-leg-arrow,
.fmap-leg--active .fmap-leg-arrow { opacity:1; transform:translateX(2px); }

.hero-eyebrow {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.90);
    margin-bottom: 28px;
    background: rgba(255,255,255,0.10);
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
}
.hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(30px, 4.4vw, 54px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: white;
    margin-bottom: 22px;
    max-width: 900px;
}
.hero h1 strong { font-weight: 800; color: #E8623A; font-style: italic; }

/* ── HERO pages catégories ── */
.hero-cat .hero-inner {
    grid-template-columns: 1fr 1fr;
    max-width: 1360px;
}
.hero-cat .hero-inner h1 {
    font-size: clamp(42px, 5.5vw, 76px);
    line-height: 1.0;
    margin-bottom: 28px;
}
.hero-cat .hero-eyebrow {}
.hero-cat-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
    width: 100%;
}
.hero-cat .hero-boat-wrap {
    max-width: none;
    justify-content: center;
    animation: heroCategoryFloat 5s ease-in-out infinite;
}
.hero-cat .hero-boat-svg {
    width: clamp(170px, 20vw, 225px);
    height: auto;
    aspect-ratio: 1 / 1;
    animation: none;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.16));
}
.hero-cat .hero-boat-svg[src*="jet-ski.svg"] {
    width: clamp(210px, 25vw, 300px);
    aspect-ratio: 16 / 9;
}
.hero-cat-visual .hero-visual-stats {
    max-width: 100%;
    width: min(100%, 420px);
    margin-top: 0;
}
@keyframes heroCategoryFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Ligne carte + ports côte à côte */
.region-visual-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: min(100%, 420px);
    margin: 0 auto;
}
.hero-region-outline {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    transform-origin: center center;
    filter:
        drop-shadow(0 4px 10px rgba(0,0,0,0.40))
        drop-shadow(0 0 1px rgba(255,255,255,0.20));
}
.hero-region-outline rect {
    fill: rgba(80,160,220,0.06) !important;
}
.hero-region-outline g:first-of-type path {
    fill: rgba(105,185,245,0.34) !important;
}
.hero-region-outline g:nth-of-type(2) path {
    stroke: rgba(255,255,255,0.62) !important;
    stroke-width: 1.8;
}
.hero-region-outline g:nth-of-type(2) {
    filter: none !important;
}
.hero-region-outline g:nth-of-type(3) path {
    stroke: rgba(232,98,58,0.42) !important;
    stroke-width: 0.6;
}

/* Liste des ports en texte */
.region-ports-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.region-port-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    line-height: 1.2;
}
.region-port-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #E8623A !important;
    color: #E8623A !important;
    box-shadow: 0 0 7px rgba(232,98,58,0.65);
}
.region-port-name {
    font-size: 14px;
}
.region-port-sub {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-top: 1px;
}

.hero-sub {
    font-size: 17px; font-weight: 400;
    color: rgba(255,255,255,0.70);
    line-height: 1.65;
    max-width: 580px;
    margin-bottom: 28px;
}
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
    padding: 15px 32px;
    background: var(--coral); color: white;
    border-radius: 999px; font-size: 15px; font-weight: 700;
    text-decoration: none; border:none; cursor:pointer;
    transition: all 0.25s var(--ease-out);
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: var(--shadow-coral);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transition: left 0.5s var(--ease-out);
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--coral-hover); transform: translateY(-2px); box-shadow: var(--shadow-coral-lg); }
.btn-ghost {
    padding: 15px 32px;
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 999px; font-size: 15px; font-weight: 600;
    text-decoration: none; cursor: pointer;
    transition: all 0.25s var(--ease-out);
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }

.hero-stats {
    display: flex;
    gap: 0;
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 24px;
    flex-wrap: wrap;
    row-gap: 8px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid rgba(255,255,255,0.10);
}
.hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-stat .num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px; font-weight: 800;
    color: var(--coral); line-height: 1;
    letter-spacing: -0.02em;
}
.hero-stat .label {
    font-size: 11px; font-weight: 500;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
}

/* Stats visuelles (colonne droite hero) */
.hero-visual-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 420px);
    margin-top: 4px;
}
.hero:not(.hero-cat) .hero-visual > .hero-visual-stats {
    transform: translateX(0.5cm);
}
.hero-vstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
    padding: 8px 4px;
    border-right: 1px solid rgba(255,255,255,0.18);
}
.hero-vstat:last-child { border-right: none; }
.hero-vstat .num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px; font-weight: 800;
    color: white; line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.hero-vstat .label {
    font-size: 12px; font-weight: 500;
    color: rgba(255,255,255,0.70);
    text-align: center;
    line-height: 1.3;
}

/* ── VAGUES / DÉCO ── */
.wave-container {
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 120px;
    z-index: 1; overflow: hidden;
}
.wave-svg { position:absolute; bottom:0; left:0; width:200%; height:100%; }
.wave-1 { animation: waveSlide 12s linear infinite; opacity:0.55; }
.wave-2 { animation: waveSlide 18s linear infinite reverse; opacity:0.25; }
.wave-3 { animation: waveSlide 8s linear infinite; opacity:0.12; }
@keyframes waveSlide { 0%{ transform:translateX(0) } 100%{ transform:translateX(-50%) } }
@media (prefers-reduced-motion: reduce) {
    .wave-1, .wave-2, .wave-3, .logo-anchor { animation: none !important; transition: none !important; }
}

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--navy); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.breadcrumb-inner { max-width:1360px; margin:0 auto; padding:0 32px; }
.breadcrumb ol { display:flex; flex-wrap:wrap; gap:8px; list-style:none; font-size:14px; }
.breadcrumb li { color:rgba(255,255,255,0.55); }
.breadcrumb a { color:rgba(255,255,255,0.75); text-decoration:none; transition: color 0.2s; font-weight: 500; }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb li + li::before { content:'/'; margin-right:8px; color: rgba(255,255,255,0.3); }
.breadcrumb li[aria-current="page"] { color: var(--coral); font-weight: 500; }

/* ── DERNIÈRES ANNONCES STRIP ── */
.latest-strip {
    background: #071e38;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.latest-strip-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
}
.latest-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 16px 12px;
    text-decoration: none;
    position: relative;
    transition: background 0.18s;
    min-width: 0;
}
.latest-card:hover { background: rgba(255,255,255,0.05); }
.latest-new {
    position: absolute;
    top: 10px; right: 10px;
    background: var(--coral);
    color: white;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 999px;
}
.latest-emoji { font-size: 22px; line-height: 1; }
.latest-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.38);
}
.latest-prix {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--coral-text);
    letter-spacing: -0.5px;
}
.latest-loc {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}
.latest-divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
    align-self: stretch;
    margin: 12px 0;
}
@media (max-width: 640px) { .latest-strip { display: none; } }

/* ── FILTERS ── */
.filters-wrap {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky; top: 66px; z-index: 90;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.filters-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex; align-items: center;
    gap: 8px; height: 58px;
    overflow-x: auto;
    scrollbar-width: none;
}
.filters-inner::-webkit-scrollbar { display:none; }
.filter-chip {
    white-space: nowrap;
    padding: 8px 16px;
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.72);
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    display: flex; align-items: center; gap: 5px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.filter-chip:hover { border-color: rgba(232,98,58,0.55); color: white; background: rgba(232,98,58,0.12); transform: translateY(-1px); }
.filter-chip.active { background: var(--coral); color: white; border-color: var(--coral); box-shadow: var(--shadow-coral); }
.filter-sep { width:1px; height:20px; background:rgba(255,255,255,0.10); flex-shrink:0; }
.filter-prix-wrap { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.filter-prix-wrap label { font-size:12px; font-weight:600; color:rgba(255,255,255,0.50); white-space:nowrap; }
.filter-prix-wrap input {
    width: 120px;
    padding: 7px 14px;
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    font-size: 13px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: white;
    background: rgba(255,255,255,0.06);
    transition: all 0.2s var(--ease-out);
    font-weight: 500;
}
.filter-prix-wrap input::placeholder { color: rgba(255,255,255,0.30); }
.filter-prix-wrap input:focus { outline: none; border-color: var(--coral); background: rgba(232,98,58,0.10); box-shadow: 0 0 0 3px rgba(232,98,58,0.15); }

/* ── PAGE BODY ── */
.page-body {
    max-width: 1360px;
    margin: 0 auto;
    padding: 56px 32px 72px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}
.page-body.no-sidebar { grid-template-columns: 1fr; max-width: 1200px; }
.section-header { display:flex; align-items:center; justify-content:space-between; margin-bottom: 28px; flex-wrap: wrap; gap:12px; }
.section-title {
    font-size: 26px; font-weight: 800;
    letter-spacing: -0.03em;
    font-family: 'Bricolage Grotesque', sans-serif;
    position: relative;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 36px; height: 3px;
    background: var(--coral);
    border-radius: 999px;
}
.section-count { font-size:13px; font-weight:600; color: var(--coral); padding: 5px 14px; background: var(--coral-soft); border-radius: 999px; border: 1px solid var(--coral-mid); }

/* ── CARTES ANNONCES ── */
.annonce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.annonce-grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
/* ── CARTES ANNONCES ── */
.annonce-card {
    background: var(--white);
    border-radius: var(--r-xl);
    border: 1px solid rgba(14,42,78,0.08);
    overflow: hidden;
    transition: all 0.35s var(--ease-out);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    box-shadow: 0 10px 28px rgba(14,42,78,0.06);
}
.annonce-card:hover {
    box-shadow: 0 24px 64px rgba(14,42,78,0.14), 0 6px 18px rgba(14,42,78,0.08);
    transform: translateY(-6px);
    border-color: rgba(26,158,142,0.2);
}
.annonce-card:focus-visible { outline: 2.5px solid var(--coral); outline-offset: 3px; border-radius: var(--r-xl); }
.card-image {
    width: 100%; aspect-ratio: 4/3;
    background: var(--bg-warm);
    overflow: hidden; position: relative; flex-shrink: 0;
}
.card-image img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s var(--ease-out); }
.annonce-card:hover .card-image img { transform: scale(1.06); }
.card-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,42,78,0.42) 0%, rgba(14,42,78,0.08) 45%, transparent 68%);
    pointer-events: none;
}
.card-placeholder {
    width:100%; height:100%;
    display:flex; align-items:center; justify-content:center;
    color: rgba(14,42,78,0.84);
    background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.92) 0%, rgba(232,240,248,0.96) 32%, rgba(245,239,231,0.95) 100%);
}
.card-placeholder svg {
    width: 74px;
    height: 74px;
    filter: drop-shadow(0 10px 22px rgba(14,42,78,0.16));
}
.card-badge {
    position: absolute; top:14px; left:14px;
    background: rgba(255,255,255,0.9);
    color: var(--navy);
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(14,42,78,0.08);
    z-index: 2;
}
.card-body { padding: 22px 22px 20px; flex:1; display:flex; flex-direction:column; }
.card-top { display:flex; justify-content:space-between; align-items:flex-start; gap:14px; margin-bottom:12px; }
.card-titre {
    font-size: 17px; font-weight: 800;
    color: var(--text-main); line-height: 1.28;
    letter-spacing: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
}
.card-prix {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px; font-weight: 800;
    color: var(--coral-text); white-space: nowrap;
    letter-spacing: 0;
    flex-shrink: 0;
}
.card-meta { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:12px; }
.card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(14,42,78,0.04);
    border: 1px solid rgba(14,42,78,0.08);
    color: var(--text-sec);
    font-size: 11px; font-weight: 700;
    padding: 5px 10px;
    border-radius: 999px;
}
.card-meta-item svg {
    width: 13px;
    height: 13px;
    color: var(--navy-mid);
    flex-shrink: 0;
}
.card-loc {
    font-size: 12px; font-weight: 600;
    color: var(--text-sec); margin-bottom: 10px;
    display: flex; align-items: center; gap: 6px;
}
.card-loc svg {
    width: 14px;
    height: 14px;
    color: var(--navy-mid);
    flex-shrink: 0;
}
.card-desc {
    font-size: 13px; color: var(--text-sec);
    line-height: 1.65; flex: 1; margin-bottom: 16px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}
.card-date { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.card-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(14,42,78,0.06); color: var(--navy);
    border-radius: 999px;
    font-size: 12px; font-weight: 800;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.2s var(--ease-out);
    letter-spacing: 0.2px;
}
.card-contact svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.annonce-card:hover .card-contact {
    background: var(--navy);
    color: white;
    transform: translateY(-1px);
}

/* ── PUBLISH CTA PANEL ── */
.publish-cta-panel { text-align: center; padding: 0; overflow: hidden; }
.publish-cta-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3d6b 100%);
    padding: 32px 24px 28px;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    margin-bottom: 28px;
}
.publish-cta-hero-icon { font-size: 64px; line-height: 1; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3)); }
.publish-cta-pill {
    display: inline-block;
    background: var(--coral); color: white;
    font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
    padding: 5px 14px; border-radius: 999px;
    text-transform: uppercase;
}
.publish-cta-panel h2 {
    font-size: 30px !important;
    margin-bottom: 8px !important;
}
.publish-cta-panel .form-lead {
    font-size: 14px !important; line-height: 1.6;
    padding: 0 8px; margin-bottom: 4px !important;
}
.publish-cta-list {
    list-style: none; padding: 0 24px; margin: 20px 0 28px;
    text-align: left; display: flex; flex-direction: column; gap: 11px;
}
.publish-cta-list li {
    font-size: 14px; color: var(--text-sec); font-weight: 500;
    display: flex; align-items: center; gap: 10px;
}
.publish-cta-list li::before {
    content: '✓';
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--coral-soft); color: var(--coral);
    font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.publish-cta-btn {
    display: block; text-align: center; text-decoration: none;
    margin: 0 24px;
    background: var(--coral); color: white;
    font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
    padding: 16px 24px; border-radius: 14px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(232,98,58,0.35);
}
.publish-cta-btn:hover { background: var(--coral-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,98,58,0.45); }
.publish-cta-note {
    margin: 14px 0 24px; font-size: 12px; color: var(--text-muted);
}

/* ── FORM PANEL ── */
.form-panel {
    position: sticky;
    top: calc(66px + 58px + 20px);
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--r-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    z-index: 20;
    max-height: calc(100vh - calc(66px + 58px + 20px) - 24px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--coral-mid) transparent;
}
.form-panel::-webkit-scrollbar { width: 5px; }
.form-panel::-webkit-scrollbar-thumb { background: var(--coral-mid); border-radius: 999px; }
.form-panel::before {
    content: '';
    position: absolute; top:0; left:0; right:0; height:4px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--teal) 100%);
}
.form-panel h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 26px; font-weight:800;
    color: var(--text-main);
    margin-bottom: 4px; letter-spacing:-0.02em;
}
.form-panel .form-lead { font-size:13px; font-weight:500; color:var(--text-muted); margin-bottom:22px; }
.form-group { margin-bottom:16px; }
.form-group label {
    display:block; font-size:12.5px; font-weight:600;
    color:var(--text-sec); margin-bottom:6px;
}
.required-mark { color:var(--coral); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-100);
    border-radius: 11px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; font-weight:500;
    color: var(--text-main);
    background: var(--bg-card);
    transition: all 0.2s var(--ease-out);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); font-weight: 400; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(232,98,58,0.10);
}
.form-group textarea { resize:vertical; min-height:100px; line-height:1.6; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:11px; }
.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--coral); color:white;
    border:none; border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px; font-weight:700;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    margin-top: 8px;
    box-shadow: var(--shadow-coral);
}
.form-submit:hover { background: var(--coral-hover); transform:translateY(-2px); box-shadow: var(--shadow-coral-lg); }
.form-submit:active { transform:translateY(0); }
.form-hint { font-size:11px; font-weight:500; color:var(--text-sec); background:var(--bg); border:1px solid var(--gray-100); border-radius:4px; padding:1px 6px; margin-left:4px; }
.photo-drop {
    border: 2px dashed var(--gray-200);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: var(--bg);
    position: relative;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.photo-drop:hover, .photo-drop.drag-over {
    border-color: var(--coral);
    background: #fff5f3;
}
.photo-drop.zone-full { cursor: default; }
.photo-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    width: 100%;
    margin-bottom: 8px;
}
.photo-thumb {
    position: relative;
    width: 68px; height: 68px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--gray-100);
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-thumb-del {
    position: absolute;
    top: 2px; right: 2px;
    width: 20px; height: 20px;
    background: rgba(0,0,0,0.65);
    color: white;
    border: none; border-radius: 50%;
    font-size: 13px; line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    padding: 0;
}
.photo-thumb-del:hover { background: var(--coral); }
.photo-drop-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    position: relative;
}
.photo-drop-hint {
    font-size: 11px;
    color: var(--text-sec);
    position: relative;
}
.msg { padding:13px 16px; border-radius:11px; font-size:13px; font-weight:500; margin-bottom:14px; animation:fadeDown 0.3s ease; }
@keyframes fadeDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.msg.success { background:var(--success-bg); color:var(--success); border:1px solid #a3cfbb; }
.msg.error   { background:var(--error-bg); color:var(--error); border:1px solid #f1aeb5; }

/* ── ÉTATS ── */
.loading { text-align:center; padding:72px 20px; color:var(--text-muted); grid-column:1/-1; }
.spinner { display:inline-block; width:30px; height:30px; border:3px solid var(--gray-100); border-top-color:var(--coral); border-radius:50%; animation:spin 0.7s linear infinite; margin-bottom:18px; }
@keyframes spin { to{transform:rotate(360deg)} }
.empty-state { text-align:center; padding:72px 36px; color:var(--text-sec); grid-column:1/-1; }
.empty-icon { font-size:56px; margin-bottom:22px; animation: floatY 2.5s ease-in-out infinite; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.empty-state h3 { font-family:'Bricolage Grotesque',sans-serif; font-size:24px; font-weight:800; margin-bottom:8px; color:var(--text-main); letter-spacing:-0.02em; }
.empty-state p { font-size:15px; font-weight:500; color:var(--text-muted); max-width:280px; margin:0 auto; }

/* ── CARTE INTERACTIVE ── */
.map-header-wrap {
    background: var(--bg);
    padding: 52px 0 28px;
    border-top: 2px solid var(--gray-100);
}
.map-section { background: var(--bg); border-bottom: 1px solid var(--gray-100); }
.map-header-inner {
    max-width: 1360px; margin: 0 auto; padding: 0 32px;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    text-align: center;
}
.map-header-inner h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(26px, 3vw, 38px); font-weight: 800;
    color: var(--text-main); letter-spacing: -0.03em; margin: 0;
    line-height: 1.15;
}
.map-header-inner h2 em {
    font-style: italic; color: var(--coral);
}
.map-header-sub {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    font-size: 14px; font-weight: 500; line-height: 1.45;
    color: var(--text-sec); margin: 0;
}
.map-legend-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
    background: #2F9AE0;
    box-shadow: 0 0 0 4px rgba(47,154,224,0.20);
    display: inline-block;
}
.map-container {
    width: 100%; height: 480px;
    position: relative;
}

/* Marqueurs personnalisés */
.map-marker {
    position: relative; width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
}
.map-marker-inner {
    width: 10px; height: 10px;
    background: #2F9AE0;
    border-radius: 50%;
    box-shadow:
        0 0 0 3px rgba(47,154,224,0.22),
        0 4px 12px rgba(14,42,78,0.24);
    border: 1.5px solid rgba(255,255,255,0.92);
    transition: transform 0.16s var(--ease-out), background 0.16s var(--ease-out), box-shadow 0.16s var(--ease-out);
}
.map-marker:hover .map-marker-inner {
    transform: scale(1.22);
    background: #56B4EE;
    box-shadow:
        0 0 0 5px rgba(47,154,224,0.24),
        0 6px 16px rgba(14,42,78,0.26);
}
.map-marker-pulse {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: rgba(47,154,224,0.18);
    animation: markerPulse 2.6s ease-out infinite;
}
@keyframes markerPulse {
    0% { transform: scale(0.55); opacity: 0.85; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* Popup carte */
.map-popup-wrap .leaflet-popup-content-wrapper {
    background: rgba(14,42,78,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    padding: 0;
    overflow: hidden;
}
.map-popup-wrap .leaflet-popup-tip-container { display: none; }
.map-popup-wrap .leaflet-popup-content { margin: 0; width: auto !important; }
.map-popup-wrap .leaflet-popup-close-button {
    color: rgba(255,255,255,0.5) !important;
    font-size: 18px !important;
    top: 10px !important; right: 12px !important;
}
.map-popup-wrap .leaflet-popup-close-button:hover { color: white !important; }
.map-popup {
    padding: 20px;
    min-width: 200px;
}
.map-popup-type {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.2px; color: var(--coral); margin-bottom: 6px;
}
.map-popup-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px; font-weight: 700; color: white;
    line-height: 1.3; margin-bottom: 6px;
}
.map-popup-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px; font-weight: 800;
    color: var(--coral); letter-spacing: -0.02em; margin-bottom: 8px;
}
.map-popup-loc {
    font-size: 12px; color: rgba(255,255,255,0.5);
    margin-bottom: 14px; font-weight: 500;
}
.map-popup-btn {
    display: block; text-align: center;
    background: white; color: var(--navy);
    padding: 10px 16px; border-radius: 999px;
    font-size: 13px; font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.map-popup-btn:hover { background: var(--coral); color: white; }

/* Override leaflet attribution */
.map-container .leaflet-control-attribution {
    background: rgba(255,255,255,0.85) !important;
    color: rgba(60,60,60,0.7) !important;
    font-size: 10px;
    backdrop-filter: blur(4px);
}
.map-container .leaflet-control-attribution a { color: var(--coral) !important; }
.map-container .leaflet-control-zoom a {
    background: white !important;
    color: var(--navy) !important;
    border-color: var(--gray-100) !important;
    box-shadow: var(--shadow-sm) !important;
}
.map-container .leaflet-control-zoom a:hover { background: var(--coral) !important; color: white !important; }

@media (max-width: 640px) {
    .map-container { height: 300px; }
    .map-header-wrap { padding: 24px 0 16px; }
    .map-header-inner {
        padding: 0 20px;
        gap: 10px;
    }
    .map-header-inner h2 { font-size: 22px; }
    .map-header-sub { font-size: 13px; }
}

/* ── SECTIONS SEO ── */
.seo-intro {
    background: var(--white);
    padding: 72px 0;
    border-top: 1px solid var(--gray-100);
}
.seo-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 56px;
    align-items: start;
}
.seo-lead {
    max-width: 500px;
    position: sticky;
    top: 92px;
}
.seo-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--coral-text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.seo-lead h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 18px;
}
.seo-lead p {
    color: var(--text-sec);
    font-size: 16px;
    line-height: 1.8;
}
.seo-points {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--gray-100);
}
.seo-block {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-100);
}
.seo-index {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--gray-100);
    color: var(--coral-text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    grid-row: 1 / span 2;
}
.seo-block h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    grid-column: 2;
}
.seo-block p {
    font-size: 15px;
    color: var(--text-sec);
    line-height: 1.75;
    max-width: 620px;
    grid-column: 2;
}

/* ── ARTICLE / CONTENT ── */
.content-section { background: var(--white); padding: 80px 0; }
.content-inner { max-width: 800px; margin: 0 auto; padding: 0 32px; }
.content-inner h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-main);
    margin: 56px 0 20px;
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.content-inner h2:first-child { margin-top: 0; }
.content-inner h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px; font-weight: 700;
    color: var(--text-main);
    margin: 36px 0 14px;
    letter-spacing: -0.015em;
}
.content-inner p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-sec);
    margin-bottom: 18px;
}
.content-inner ul, .content-inner ol { margin: 16px 0 24px 26px; }
.content-inner li { font-size: 17px; line-height: 1.75; color: var(--text-sec); margin-bottom: 10px; }
.content-inner li::marker { color: var(--coral-text); }
.content-inner a {
    color: var(--coral-hover);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--coral-mid);
    text-underline-offset: 4px;
    font-weight: 600;
    transition: color 0.2s;
}
.content-inner a:hover { color: var(--navy); text-decoration-color: var(--coral); }
.content-inner strong { color: var(--text-main); font-weight: 700; }

/* ── FAQ ── */
.faq-section { background: var(--bg-warm); padding: 80px 0; }
.faq-inner { max-width: 920px; margin: 0 auto; padding: 0 32px; }
.faq-section h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 40px;
    letter-spacing: -0.025em;
    text-align: center;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--r-md);
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.2s;
}
.faq-item:hover { border-color: var(--coral-mid); box-shadow: var(--shadow-sm); }
.faq-item[open] { border-color: var(--coral); }
.faq-item summary {
    list-style: none;
    padding: 22px 26px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 18px;
    font-family: 'Bricolage Grotesque', sans-serif;
    letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    color: var(--coral-text);
    font-size: 26px;
    font-weight: 400;
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    background: var(--coral-soft);
    border-radius: 50%;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-body { padding: 0 26px 24px; font-size: 16px; line-height: 1.7; color: var(--text-sec); }

/* ── CTA ── */
.cta-section { background: linear-gradient(160deg, #0d2f55 0%, #1a4580 45%, #1e4f8a 100%); padding: 80px 32px; text-align: center; color: white; position: relative; overflow: hidden; }
.cta-section h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
    color: white;
}
.cta-section h2 strong { color: var(--coral-text); font-weight: 800; font-style: italic; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.78); margin-bottom: 36px; max-width: 600px; margin-left:auto; margin-right:auto; }

/* ── CATEGORY CARDS ── */
.cat-section {
    background: white;
    padding: 72px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}
.cat-section-inner { max-width: 1360px; margin: 0 auto; padding: 0 32px; display: flex; flex-direction: column; gap: 32px; }
.cat-section-head h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.cat-section-head p { font-size: 15px; color: var(--text-muted); }

.cat-group { display: flex; flex-direction: column; gap: 12px; }
.cat-group-label {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.6px;
    color: var(--text-muted);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.cat-cards { display: grid; gap: 12px; }
.cat-cards-3 { grid-template-columns: repeat(3, 1fr); }
.cat-cards-4 { grid-template-columns: repeat(4, 1fr); }
.cat-cards-5 { grid-template-columns: repeat(5, 1fr); }
.cat-cards-6 { grid-template-columns: repeat(3, 1fr); }
.cat-cards-2 { grid-template-columns: repeat(2, 1fr); }

.cat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--r-lg);
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.22s var(--ease-out);
    box-shadow: var(--shadow-sm);
}
.cat-card:hover {
    border-color: var(--coral);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), 0 0 0 1px var(--coral);
}
.cat-card-simple {
    min-height: 84px;
    gap: 12px;
}
/* ── Grille boutons régions ── */
.cat-regions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.cat-card-region-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px 15px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(14,42,78,0.10);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
    box-shadow: 0 1px 3px rgba(14,42,78,0.05);
}
.cat-card-region-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26,158,142,0.22);
}
.cat-card-region-btn strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}
.cat-card-region-btn span {
    font-size: 11px;
    color: var(--text-sec);
    line-height: 1.3;
}
@media (max-width: 1100px) { .cat-regions-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .cat-regions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .cat-regions-grid { grid-template-columns: repeat(2, 1fr); } }

.cat-card-cta { border-color: var(--coral-mid); background: var(--coral-soft); }
.cat-card-cta:hover { background: #fde8e0; border-color: var(--coral); }
.cat-card-guide { border-color: var(--gray-100); }

.cat-card-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: white;
    border: 1.5px solid var(--gray-100);
    color: var(--navy);
}
/* Mini carte SVG région — pas de fond ni de bordure, juste la forme */
.cat-card-icon--map {
    background: transparent;
    border: none;
    overflow: visible;
    padding: 0;
}
.cat-card-icon--map svg {
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.10));
    transition: transform 0.2s;
}
.cat-card:hover .cat-card-icon--map svg { transform: scale(1.08); }
.cat-card-cta .cat-card-icon { background: var(--coral-soft); border-color: var(--coral-mid); color: var(--coral); }
.cat-card-content { flex: 1; min-width: 0; }
.cat-card-content strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-main); margin-bottom: 3px; }
.cat-card-content span { font-size: 12.5px; color: var(--text-muted); line-height: 1.4; }
.cat-card-arrow { color: var(--coral); font-size: 16px; font-weight: 700; flex-shrink: 0; transition: transform 0.2s; }
.cat-card:hover .cat-card-arrow { transform: translateX(4px); }

@media (max-width: 1100px) { .cat-cards-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1100px) { .cat-cards-6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 960px) { .cat-cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .cat-cards-3, .cat-cards-2, .cat-cards-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .cat-cards-5, .cat-cards-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
    .cat-cards-3, .cat-cards-4, .cat-cards-5, .cat-cards-2, .cat-cards-6 { grid-template-columns: 1fr; }
    .cat-section { padding: 48px 0; }
    .cat-card-region-btn span { display: none; }
}

/* ── LINKS GRID (maillage) ── */
.links-grid {
    background: linear-gradient(160deg, #0d2f55 0%, #1a4580 50%, #1e4f8a 100%);
    padding: 48px 0;
}
.links-inner { max-width: 1360px; margin:0 auto; padding: 0 32px; }
.links-inner h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 28px; font-weight: 800;
    color: white;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}
.links-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.links-col h3 {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--coral-text);
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.links-col ul { list-style: none; }
.links-col li { margin-bottom: 10px; }
.links-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: all 0.2s var(--ease-out);
    font-weight: 500;
}
.links-col a:hover { color: white; transform: translateX(4px); display: inline-block; }

/* ── CTA VENTE ── */
.cta-sell-band {
    background: linear-gradient(160deg, #0d2f55 0%, #1a4580 50%, #1e4f8a 100%);
    padding: 64px 32px;
    position: relative;
    overflow: hidden;
}
.cta-sell-orb-coral {
    position: absolute; border-radius: 50%; pointer-events: none;
    width: 600px; height: 600px; top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(232,98,58,0.18) 0%, transparent 65%);
}
.cta-sell-orb-teal {
    position: absolute; border-radius: 50%; pointer-events: none;
    width: 500px; height: 500px; bottom: -180px; left: -80px;
    background: radial-gradient(circle, rgba(26,158,142,0.13) 0%, transparent 65%);
}
.cta-sell-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.cta-sell-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
.cta-sell-free-badge {
    display: inline-block;
    background: rgba(26,158,142,0.18);
    border: 1px solid rgba(26,158,142,0.40);
    color: #1A9E8E;
    font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.6px;
    padding: 7px 20px; border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.cta-sell-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0;
}
.cta-sell-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}
.cta-sell-btn {
    display: inline-block;
    background: #E8623A;
    color: white;
    text-decoration: none;
    font-weight: 700; font-size: 16px;
    padding: 16px 38px;
    border-radius: 999px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(232,98,58,0.4);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 4px;
}
.cta-sell-btn:hover { background: #d4542f; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(232,98,58,0.5); }
.cta-sell-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-shrink: 0;
}
.cta-sell-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.cta-sell-features li svg {
    color: #1A9E8E;
    flex-shrink: 0;
    background: rgba(26,158,142,0.15);
    border-radius: 50%;
    padding: 3px;
    width: 24px; height: 24px;
}

/* ── FOOTER ── */
/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.50); }

.footer-cta-band {
    border-top: 3px solid var(--coral);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 28px 32px;
    background: linear-gradient(90deg, rgba(10,18,38,0.6) 0%, rgba(14,42,78,0) 100%);
}
.footer-cta-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-cta-text { display: flex; flex-direction: column; gap: 3px; }
.footer-cta-text strong {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: white;
    letter-spacing: -0.02em;
}
.footer-cta-text span { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }
.footer-cta-btn {
    flex-shrink: 0;
    background: var(--coral);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 50px;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 4px 16px rgba(191,75,34,0.35);
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
}
.footer-cta-btn:hover { background: var(--coral-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(191,75,34,0.5); }

.footer-inner { max-width:1360px; margin:0 auto; padding: 52px 32px 28px; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 40px; }
.footer-brand .logo-text { margin-bottom: 10px; display: inline-block; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; margin-top: 6px; }
.footer-nav-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; color: white; margin-bottom: 14px; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.18s, transform 0.18s; font-weight: 500; display: inline-block; }
.footer-col a:hover { color: var(--coral); transform: translateX(3px); }
.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom span:last-child { color: rgba(255,255,255,0.5); }
.footer-brand .logo-text { text-decoration: none; color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .page-body { grid-template-columns:1fr; gap: 32px; }
    .form-panel { position: relative !important; top: 0 !important; max-height: none !important; overflow: hidden !important; z-index: auto !important; }
    .detail-grid { grid-template-columns: 1fr; gap: 32px; }
}
/* Bannière CTA mobile/tablet (remplace le panneau sidebar) */
.cta-banner-mobile {
    display: none;
    margin-top: 28px;
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
    border-radius: var(--r-xl);
    text-decoration: none;
    color: white;
    align-items: center;
    gap: 14px;
    transition: opacity 0.18s;
}
.cta-banner-mobile:hover { opacity: 0.9; }
.cta-banner-icon { font-size: 28px; flex-shrink: 0; }
.cta-banner-text { flex: 1; }
.cta-banner-text strong { display: block; font-size: 16px; font-weight: 700; font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: -0.01em; }
.cta-banner-text small { font-size: 12px; opacity: 0.75; font-weight: 500; }
.cta-banner-arrow { font-size: 20px; flex-shrink: 0; opacity: 0.8; }

@media (max-width: 1100px) {
    #publier { display: none; }
    .page-body { padding-top: 36px; padding-bottom: 40px; }
    .cta-banner-mobile { display: flex; }
}
@media (max-width: 1180px) {
    .nav-menu { display:none !important; position: fixed !important; top: 66px !important; left: 16px !important; right: 16px !important; flex-direction: column !important; background: var(--navy) !important; padding: 12px 16px !important; gap: 4px !important; border-radius: var(--r-lg) !important; box-shadow: var(--shadow-xl) !important; z-index: 9999 !important; border: 1px solid rgba(255,255,255,0.1) !important; min-width: 220px !important; }
    .nav-menu.open { display:flex !important; animation: slideDown .22s ease-out; }
    @keyframes slideDown { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform: translateY(0); } }
    .nav-link { width: 100%; padding: 13px 16px; font-size: 15px; }
    .nav-menu > .nav-link {
        display: flex;
        align-items: center;
        gap: 11px;
    }
    .nav-menu > .nav-link::before {
        content: '';
        width: 6px;
        height: 6px;
        border-right: 1.5px solid rgba(255,255,255,0.72);
        border-bottom: 1.5px solid rgba(255,255,255,0.72);
        transform: rotate(-45deg);
        flex-shrink: 0;
        opacity: 0.82;
        transition: border-color 0.2s var(--ease-out), opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
    }
    .nav-menu > .nav-link:hover::before,
    .nav-menu > .nav-link:focus-visible::before {
        border-color: white;
        opacity: 1;
        transform: translateX(2px) rotate(-45deg);
    }
    .nav-menu > .nav-link:focus-visible {
        outline: 2px solid rgba(255,255,255,0.7);
        outline-offset: 2px;
    }
    .burger-btn { display: flex; }
    .nav-auth-mobile { display: contents; }
    .nav-auth-sep { height: 1px; background: rgba(255,255,255,0.1); margin: 6px 0; width: 100%; }
    .nav-auth-mobile .nav-link-cta { background: var(--coral); color: white !important; border-radius: 8px; text-align: center; font-weight: 700; margin-top: 4px; }
    .nav-auth-mobile .nav-link-cta:hover { background: var(--coral-hover); }
    .nav-auth-mobile button { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.72); font-family: inherit; font-size: 15px; text-align: left; padding: 13px 16px; width: 100%; border-radius: 8px; }
    .nav-auth-mobile button:hover { background: rgba(255,255,255,0.06); color: white; }
    .nav-guest-mobile { display: contents; }
    .nav-guest-mobile .nav-link-cta { background: var(--coral); color: white !important; border-radius: 8px; text-align: center; font-weight: 700; margin-top: 4px; }
    .nav-guest-mobile .nav-link-cta:hover { background: var(--coral-hover); }
    .nav-guest-mobile .nav-link-login,
    .nav-guest-mobile .nav-link-signup {
        display: flex;
        align-items: center;
        gap: 11px;
    }
    .nav-guest-mobile .nav-link-login::before,
    .nav-guest-mobile .nav-link-signup::before {
        content: '';
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        opacity: 0.76;
        transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
    }
    .nav-guest-mobile .nav-link-login::before {
        width: 18px;
        height: 18px;
        border: 1.5px solid rgba(255,255,255,0.72);
        border-left: 0;
        border-radius: 2px;
        background:
            linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)) 2px 50% / 9px 1.5px no-repeat,
            linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.82) 49% 61%, transparent 62%) 8px 4px / 7px 7px no-repeat,
            linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.82) 49% 61%, transparent 62%) 8px 7px / 7px 7px no-repeat;
    }
    .nav-guest-mobile .nav-link-signup::before {
        border: 1.5px solid rgba(255,255,255,0.72);
        border-radius: 50%;
        background:
            linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)) center / 8px 1.5px no-repeat,
            linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)) center / 1.5px 8px no-repeat;
    }
    .nav-guest-mobile .nav-link-login:hover::before,
    .nav-guest-mobile .nav-link-login:focus-visible::before {
        border-color: white;
        opacity: 1;
        transform: translateX(1px);
    }
    .nav-guest-mobile .nav-link-signup:hover::before,
    .nav-guest-mobile .nav-link-signup:focus-visible::before {
        border-color: white;
        opacity: 1;
        transform: scale(1.04);
    }
    body.is-logged-in .nav-guest-mobile { display: none; }
    .seo-inner { grid-template-columns:1fr; gap:20px; }
    .seo-lead { position: static; max-width: 680px; }
    .footer-cols { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
    .footer-cta-text strong { font-size: 17px; }
}
@media (max-width: 640px) {
    body { font-size: 15px; }
    .header-inner, .hero-inner, .filters-inner, .page-body,
    .breadcrumb-inner, .links-inner, .content-inner, .faq-inner, .detail-wrap { padding-left:20px; padding-right:20px; }
    .header-inner { height: 60px; }
    .filters-wrap { top: 60px; }
    .nav-menu { top: 60px !important; }
    .btn-auth-secondary { display: none !important; }
    .btn-user-account span { display: none; }
    .btn-user-account { padding: 8px 10px; }
    .user-menu-wrap ~ .btn-publish { display: none !important; }
    .user-dropdown { display: none !important; }
    body.is-logged-in .burger-btn { display: none !important; }
    .header-inner { gap: 12px; }
    .hero { padding: 40px 0 0; }
    .hero-inner { padding-bottom: 48px; grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    /* Hero catégorie/région : force 1 colonne sur mobile (spécificité supérieure à .hero-cat .hero-inner) */
    .hero-cat .hero-inner { grid-template-columns: 1fr !important; }
    .hero-cat-visual { display: none; }
    .hero h1 { font-size: 36px; }
    .hero-sub { font-size: 16px; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 14px; }
    .hero-boat-inline { display: none; }
    .hero-stats { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 14px; gap: 0; }
    .hero-stat .num { font-size: 20px; }
    .seo-inner { padding: 0 20px; }
    .seo-intro { padding: 48px 0; }
    .seo-lead h2 { font-size: 31px; }
    .seo-lead p { font-size: 15px; }
    .seo-block { grid-template-columns: 46px minmax(0, 1fr); column-gap: 16px; padding: 22px 0; }
    .seo-index { width: 34px; height: 34px; font-size: 11px; }
    .seo-block h3 { font-size: 20px; }
    .seo-block p { font-size: 14px; }
    .footer-cols { grid-template-columns: 1fr; gap: 24px; }
    .footer-inner { padding: 36px 20px 20px; }
    .footer-cta-band { padding: 22px 20px; }
    .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-cta-btn { width: 100%; text-align: center; }
    .form-row { grid-template-columns:1fr; }
    .annonce-grid { grid-template-columns:1fr; gap:16px; }
    .form-panel { padding:22px; border-radius:20px; }
    .page-body { padding:32px 20px; }
    .content-section { padding: 48px 0; }
    .faq-section { padding: 48px 0; }
    .cta-section { padding: 52px 20px; }
}

/* ── PAGE DÉTAIL ANNONCE ── */
.detail-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 32px 64px;
}
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.detail-image-main {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-card);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}
.detail-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-image-placeholder {
    font-size: 80px;
    opacity: 0.4;
}

/* ── Carousel photos annonce ── */
.detail-carousel {
    position: sticky;
    top: 100px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(14,42,78,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,243,239,0.95) 100%);
    aspect-ratio: 4/3;
    user-select: none;
}
.detail-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11,37,69,0.26) 0%, rgba(11,37,69,0.02) 22%, rgba(11,37,69,0) 44%),
        linear-gradient(0deg, rgba(11,37,69,0.34) 0%, rgba(11,37,69,0.04) 20%, rgba(11,37,69,0) 42%);
    pointer-events: none;
    z-index: 1;
}
.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(.22,1,.36,1);
}
.detail-carousel:hover .carousel-slide img { transform: scale(1.018); }
.carousel-slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.4;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(14,42,78,0.08);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 21px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(14,42,78,0.14);
    transition: all 0.15s;
    z-index: 2;
    color: var(--text-main);
}
.carousel-btn:hover { background: white; box-shadow: 0 14px 30px rgba(14,42,78,0.18); }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-btn:disabled { opacity: 0; pointer-events: none; }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(11,37,69,0.72);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    backdrop-filter: blur(10px);
}
.carousel-photo-count {
    width: auto;
    height: auto;
    min-width: 0;
    max-width: max-content;
    white-space: nowrap;
}
.carousel-photo-count svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}
.carousel-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.carousel-thumbs::-webkit-scrollbar { display: none; }
.carousel-thumb {
    flex: 0 0 78px;
    height: 58px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
    background: var(--bg-card);
    box-shadow: 0 6px 16px rgba(14,42,78,0.08);
}
.carousel-thumb.active {
    border-color: var(--coral);
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(14,42,78,0.12);
}
.carousel-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-fullscreen-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(11,37,69,0.58);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background 0.15s, transform 0.15s;
    color: white;
    font-size: 16px;
}
.carousel-fullscreen-btn:hover { background: rgba(11,37,69,0.78); transform: translateY(-1px); }

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lbFadeIn 0.2s ease;
}
@keyframes lbFadeIn { from { opacity:0; } to { opacity:1; } }
.lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 0 60px rgba(0,0,0,0.6);
    display: block;
}
.lightbox-close {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 9001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 26px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 9001;
}
.lightbox-btn:hover { background: rgba(255,255,255,0.22); }
.lightbox-btn:disabled { opacity: 0.2; pointer-events: none; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-counter {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    z-index: 9001;
}
@media (max-width: 640px) {
    .detail-carousel { position: static; aspect-ratio: 16/9; }
    .carousel-btn { width: 34px; height: 34px; font-size: 17px; }
    .lightbox-btn { width: 40px; height: 40px; font-size: 20px; }
    .lightbox-btn.lightbox-prev { left: 4px; }
    .lightbox-btn.lightbox-next { right: 4px; }
}
.detail-info { display: flex; flex-direction: column; gap: 24px; }
.detail-type {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--coral-text);
    background: rgba(255,107,74,0.1);
    border-radius: 20px;
    padding: 4px 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: fit-content;
}
.detail-info h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}
.detail-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--coral-text);
    letter-spacing: -0.02em;
}
.detail-specs dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 20px;
}
.detail-specs dl div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.detail-specs dt {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-sec);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.detail-specs dd {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}
.detail-description {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-sec);
    white-space: pre-line;
}
.detail-contact-card {
    background: var(--navy);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.detail-contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
}
.detail-contact-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.detail-cta {
    display: block;
    background: var(--coral);
    color: white;
    text-align: center;
    padding: 14px 24px;
    border-radius: var(--r-md);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s var(--ease-out), transform 0.15s;
}
.detail-cta:hover { background: var(--coral-dark, #e85d3a); transform: translateY(-1px); }
.detail-cta-secondary {
    display: block;
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    text-decoration: none;
    padding-top: 4px;
    transition: color 0.2s;
}
.detail-cta-secondary:hover { color: white; }

.detail-map-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border, var(--gray-100));
}
.detail-map-header {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    background: var(--bg-warm);
    color: var(--text-sec);
    font-size: 13px; font-weight: 600;
    border-bottom: 1px solid var(--gray-100);
}
.detail-map {
    width: 100%; height: 260px;
}

@media (max-width: 860px) {
    .detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .detail-image-main { position: static; aspect-ratio: 16/9; }
    .detail-wrap { padding: 32px 20px 48px; }
    .detail-specs dl { grid-template-columns: 1fr 1fr; }
    .detail-info h1 { font-size: 24px; }
    .detail-price { font-size: 26px; }
    /* Hero visual tablette */
    .hero-visual { height: auto; padding: 8px 0; }
    .hero-boat-svg { width: 180px; height: 158px; }
}

/* ── SEARCH FILTER ── */
.filter-search-wrap { display: flex; align-items: center; flex-shrink: 0; }
.filter-search-wrap input {
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 7px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: white;
    background: rgba(255,255,255,0.06);
    outline: none;
    width: 160px;
    transition: border-color 0.2s, width 0.3s var(--ease-out), background 0.2s;
}
.filter-search-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.filter-search-wrap input:focus { border-color: var(--coral); background: rgba(232,98,58,0.10); box-shadow: 0 0 0 3px rgba(232,98,58,0.15); width: 220px; }
@media (max-width: 680px) { .filter-search-wrap { display: none; } }

/* ── SHARE BUTTON ── */
.detail-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding: 12px 20px;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--r-md);
    background: transparent;
    color: var(--text-sec);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s;
}
.detail-share-btn:hover { border-color: var(--coral); color: var(--coral); background: var(--coral-soft); }

/* ── COOKIE BANNER ── */
#cookieBanner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(140%);
    width: min(700px, calc(100% - 32px));
    background: #0B1F3A;
    color: rgba(255,255,255,0.88);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
    z-index: 9999;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
#cookieBanner.visible { transform: translateX(-50%) translateY(0); }
#cookieBanner p { font-size: 13.5px; line-height: 1.55; flex: 1; margin: 0; }
#cookieBanner p a { color: var(--coral); text-decoration: none; }
#cookieBanner p a:hover { text-decoration: underline; }
#cookieBanner button {
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 9px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.18s;
}
#cookieBanner button:hover { background: var(--coral-hover); }
@media (max-width: 520px) {
    #cookieBanner { flex-direction: column; align-items: flex-start; bottom: 16px; padding: 16px; }
    #cookieBanner button { align-self: flex-end; }
}

/* ============================================================
   BOOST — Badges & Modal
   ============================================================ */

/* ── Badges sur les cartes annonces ─────────────────────────── */
.boost-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 3px 9px;
    border-radius: 999px;
    line-height: 1.4;
    white-space: nowrap;
}
.boost-badge--starter {
    background: rgba(26,158,142,0.15);
    color: #1A9E8E;
    border: 1px solid rgba(26,158,142,0.3);
}
.boost-badge--pro {
    background: rgba(212,175,55,0.15);
    color: #B8962E;
    border: 1px solid rgba(212,175,55,0.4);
}
.boost-badge--premium {
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(255,100,0,0.15));
    color: #C07000;
    border: 1px solid rgba(212,175,55,0.5);
}

/* Carte boostée : encadré subtil pour pro/premium */
.annonce-card.is-boosted-pro,
.annonce-card.is-boosted-premium {
    box-shadow: 0 0 0 2px rgba(212,175,55,0.35), 0 4px 20px rgba(0,0,0,0.1);
}
.annonce-card.is-boosted-premium {
    box-shadow: 0 0 0 2px rgba(212,175,55,0.6), 0 6px 28px rgba(0,0,0,0.13);
}

/* Badge dans la card-image (superposé à la photo) */
.card-boost-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    z-index: 2;
}

/* ── Bouton "Booster" sur mes-annonces ───────────────────────── */
.btn-boost {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #B8962E, #DAA520);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.18s, transform 0.15s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
}
.btn-boost:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-boost:active { transform: translateY(0); }

/* ── Modal overlay ──────────────────────────────────────────── */
.boost-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,37,69,0.75);
    backdrop-filter: blur(4px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}
.boost-modal {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px 32px;
    max-width: 780px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}
.boost-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #8899aa;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.15s;
}
.boost-modal-close:hover { background: #f0f4f8; color: #0B2545; }
.boost-modal h2 { font-size: 22px; font-weight: 800; color: #0B2545; margin: 0 0 4px; }
.boost-modal-sub { font-size: 14px; font-weight: 600; color: #2D6A8F; margin: 0 0 8px; }
.boost-modal-desc { font-size: 14px; color: #556677; margin: 0 0 24px; }

/* ── Grille 3 plans ─────────────────────────────────────────── */
.boost-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}
@media (max-width: 620px) { .boost-plans { grid-template-columns: 1fr; } }

.boost-plan {
    border: 2px solid #e8edf3;
    border-radius: 14px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.boost-plan:hover { border-color: #2D6A8F; box-shadow: 0 4px 16px rgba(45,106,143,0.12); }
.boost-plan--pro     { border-color: rgba(212,175,55,0.5); }
.boost-plan--premium { border-color: rgba(212,175,55,0.8); background: linear-gradient(135deg, #fffef5, #fff9ec); }

.boost-plan-header { display: flex; align-items: center; gap: 8px; }
.boost-plan-emoji  { font-size: 22px; }
.boost-plan-emoji {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef4fa;
    color: #0B2545;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}
.boost-plan--pro .boost-plan-emoji {
    background: rgba(232,98,58,0.12);
    color: #E8623A;
}
.boost-plan--premium .boost-plan-emoji {
    background: rgba(212,175,55,0.18);
    color: #9a6a00;
}
.boost-plan-label  { font-size: 16px; font-weight: 800; color: #0B2545; flex: 1; }
.boost-plan-duree  { font-size: 11px; font-weight: 600; color: #8899aa; background: #f0f4f8; padding: 2px 8px; border-radius: 999px; }
.boost-plan-prix   { font-size: 26px; font-weight: 900; color: #0B2545; line-height: 1; }
.boost-plan-desc   { font-size: 13px; color: #556677; margin: 0; line-height: 1.4; }

.boost-plan-perks  { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.boost-plan-perks li { font-size: 12.5px; color: #445566; display: flex; align-items: flex-start; gap: 6px; }
.boost-plan-perks li::before { content: '✓'; color: #1A9E8E; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

.boost-plan-btn {
    background: #0B2545;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: background 0.18s, transform 0.15s;
    margin-top: auto;
}
.boost-plan-btn:hover  { background: #1a3a5c; transform: translateY(-1px); }
.boost-plan-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.boost-plan--pro .boost-plan-btn     { background: linear-gradient(135deg, #B8962E, #DAA520); }
.boost-plan--premium .boost-plan-btn { background: linear-gradient(135deg, #C07000, #E8A000); }

.boost-modal-note {
    font-size: 12px;
    color: #8899aa;
    text-align: center;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid #f0f4f8;
}
