/* ─── TOKENS ─── */
        :root {
            --g-900: #052e16;
            --g-800: #0e5233;
            --g-600: #1a7a4a;
            --g-400: #34a868;
            --g-200: #bbf7d0;
            --g-50:  #f0fdf4;
            --lime:  #84cc16;
            --sand:  #faf7f2;
            --stone: #e8e0d4;
            --ink:   #18181b;
            --body:  #3f3f46;
            --muted: #71717a;
            --white: #ffffff;
            --radius-md: 1rem;
            --radius-lg: 1.5rem;
            --radius-xl: 2.25rem;
            --shadow-card: 0 4px 24px rgba(0,0,0,.07);
            --shadow-lift: 0 16px 48px rgba(0,0,0,.13);
        }

        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--body);
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, .serif { font-family: 'Fraunces', serif; }

        /* ─── HELPERS ─── */
        .label-eyebrow {
            display: inline-flex; align-items: center; gap: .4rem;
            font-size: .72rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: .12em;
            color: var(--g-600);
        }
        .label-eyebrow::before {
            content: '';
            display: inline-block;
            width: 18px; height: 2px;
            background: var(--lime);
            border-radius: 1px;
        }

        .section-title {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 900;
            color: var(--ink);
            line-height: 1.1;
            letter-spacing: -.02em;
        }
        .section-title em { font-style: italic; color: var(--g-600); }

        .chip {
            display: inline-flex; align-items: center; gap: .35rem;
            background: var(--g-50); color: var(--g-800);
            border: 1px solid var(--g-200);
            padding: .3rem .85rem;
            border-radius: 2rem;
            font-size: .78rem; font-weight: 600;
        }

        /* ─── NAVBAR ─── */
        .kk-nav {
            background: rgba(255,255,255,.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(26,122,74,.1);
            padding: .7rem 0;
            position: sticky; top: 0; z-index: 1050;
        }
        .kk-nav .brand {
            display: flex; align-items: center; gap: .6rem;
            text-decoration: none;
        }
        .kk-nav .brand-icon {
            width: 38px; height: 38px;
            background: var(--g-600);
            border-radius: .75rem;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .kk-nav .brand-icon i { color: #fff; font-size: 1.15rem; }
        .kk-nav .brand-name {
            font-family: 'Fraunces', serif;
            font-size: 1.45rem; font-weight: 900;
            color: var(--g-900); letter-spacing: -.03em;
        }
        .kk-nav .btn-cta-nav {
            color: #fff !important;
        }
        .kk-nav .nav-link {
            font-size: .88rem; font-weight: 500;
            color: var(--body) !important;
            padding: .45rem .8rem !important;
            border-radius: .6rem;
            transition: background .18s, color .18s;
        }
        .kk-nav .nav-link:hover { background: var(--g-50); color: var(--g-800) !important; }
        .btn-cta-nav {
            background: var(--g-600); color: #fff !important;
            border-radius: 2rem; padding: .45rem 1.3rem !important;
            font-weight: 600; font-size: .88rem;
            transition: background .2s;
        }
        .btn-cta-nav:hover { background: var(--g-800); }

        /* ─── HERO ─── */
        .hero-wrap { position: relative; overflow: hidden; }
        .hero-slide {
            min-height: 94vh;
            display: flex; align-items: center;
            position: relative;
        }
        .hero-slide .bg-img {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            z-index: 0;
            transition: transform 9s ease;
        }
        #heroCarousel .carousel-item.active .bg-img { transform: scale(1.07); }
        .hero-slide .scrim {
            position: absolute; inset: 0; z-index: 1;
            background: linear-gradient(
                110deg,
                rgba(5,46,22,.88) 0%,
                rgba(5,46,22,.55) 50%,
                rgba(5,46,22,.15) 100%
            );
        }
        .hero-content { position: relative; z-index: 2; padding: 5rem 0 4rem; }

        .hero-badge {
            display: inline-flex; align-items: center; gap: .5rem;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.25);
            backdrop-filter: blur(8px);
            color: #fff; font-size: .78rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: .08em;
            padding: .35rem 1rem;
            border-radius: 2rem;
            margin-bottom: 1.75rem;
        }
        .hero-badge i { color: var(--lime); }

        .hero-title {
            font-size: clamp(2.8rem, 5.5vw, 5rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.02;
            letter-spacing: -.03em;
            margin-bottom: 1.5rem;
        }
        .hero-title .accent { color: var(--lime); font-style: italic; }

        .hero-sub {
            color: rgba(255,255,255,.78);
            font-size: 1.1rem; font-weight: 300;
            line-height: 1.75;
            max-width: 500px;
            margin-bottom: 2.75rem;
        }

        .hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }

        .btn-lime {
            display: inline-flex; align-items: center; gap: .5rem;
            background: var(--lime); color: var(--ink);
            border: none; padding: .85rem 1.85rem;
            border-radius: 3rem; font-weight: 700; font-size: .95rem;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
            text-decoration: none;
        }
        .btn-lime:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(132,204,22,.45);
            color: var(--ink);
        }

        .btn-ghost {
            display: inline-flex; align-items: center; gap: .5rem;
            background: transparent; color: #fff;
            border: 1.5px solid rgba(255,255,255,.45);
            padding: .85rem 1.85rem;
            border-radius: 3rem; font-weight: 600; font-size: .95rem;
            cursor: pointer;
            transition: background .2s, border-color .2s;
            text-decoration: none;
        }
        .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

        /* Hero stats bar */
        .hero-stats {
            display: flex; gap: 2.5rem; flex-wrap: wrap;
            margin-top: 4rem; padding-top: 2.5rem;
            border-top: 1px solid rgba(255,255,255,.15);
        }
        .hstat-num {
            font-family: 'Fraunces', serif;
            font-size: 2.4rem; font-weight: 900;
            color: var(--lime); line-height: 1;
        }
        .hstat-lbl { color: rgba(255,255,255,.65); font-size: .8rem; margin-top: .25rem; }

        /* Carousel controls */
        .carousel-indicators { bottom: 2rem; }
        .carousel-indicators [data-bs-target] {
            width: 8px; height: 8px; border-radius: 50%;
            background: rgba(255,255,255,.4); border: none; margin: 0 3px;
            transition: background .3s, transform .3s;
        }
        .carousel-indicators .active { background: var(--lime); transform: scale(1.3); }
        .carousel-control-prev, .carousel-control-next { width: 5%; }

        /* ─── SERVICES ─── */
        #services { background: var(--sand); padding: 5rem 0; }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.25rem;
        }

        .svc-card {
            background: var(--white);
            border: 1px solid var(--stone);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform .22s, box-shadow .22s, border-color .22s;
        }
        .svc-card::after {
            content: '';
            position: absolute; left: 0; top: 0; bottom: 0;
            width: 3px;
            background: var(--g-600);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform .25s;
        }
        .svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--g-200); }
        .svc-card:hover::after { transform: scaleY(1); }

        .svc-icon {
            width: 52px; height: 52px;
            border-radius: .9rem;
            background: var(--g-50);
            border: 1px solid var(--g-200);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; color: var(--g-600);
            margin-bottom: 1.1rem;
            transition: background .2s, color .2s;
        }
        .svc-card:hover .svc-icon { background: var(--g-600); color: #fff; border-color: transparent; }

        .svc-title {
            font-family: 'Fraunces', serif;
            font-size: 1.05rem; font-weight: 700;
            color: var(--ink); margin-bottom: .4rem;
        }
        .svc-desc { color: var(--muted); font-size: .86rem; line-height: 1.6; }

        .svc-link {
            display: inline-flex; align-items: center; gap: .35rem;
            color: var(--g-600); font-weight: 600; font-size: .82rem;
            margin-top: .9rem; transition: gap .2s;
        }
        .svc-card:hover .svc-link { gap: .6rem; }

        /* ─── TRACKING ─── */
        #tracking { background: var(--white); padding: 5rem 0; }

        .tracking-card {
            background: var(--g-900);
            border-radius: var(--radius-xl);
            padding: 3.5rem;
            position: relative;
            overflow: hidden;
        }
        .tracking-card::before {
            content: '';
            position: absolute; top: -60px; right: -60px;
            width: 280px; height: 280px;
            border-radius: 50%;
            background: rgba(132,204,22,.07);
        }
        .tracking-card::after {
            content: '';
            position: absolute; bottom: -80px; left: -40px;
            width: 220px; height: 220px;
            border-radius: 50%;
            background: rgba(26,122,74,.1);
        }
        .tracking-card .label-eyebrow { color: var(--lime); }
        .tracking-card .label-eyebrow::before { background: var(--lime); }
        .tracking-card .section-title em { color: var(--lime); }
        .tracking-card .section-title { color: #fff; }
        .tracking-card p { color: rgba(255,255,255,.65); }

        .tracking-form-row {
            display: flex; gap: .75rem; flex-wrap: wrap;
            position: relative; z-index: 2;
        }
        .tracking-form-row .form-select,
        .tracking-form-row .form-control {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.15);
            color: #fff; border-radius: .85rem;
            padding: .8rem 1.1rem;
            font-size: .9rem;
        }
        .tracking-form-row .form-select option { background: var(--g-900); }
        .tracking-form-row .form-control::placeholder { color: rgba(255,255,255,.4); }
        .tracking-form-row .form-select:focus,
        .tracking-form-row .form-control:focus {
            background: rgba(255,255,255,.12);
            border-color: var(--lime);
            box-shadow: 0 0 0 3px rgba(132,204,22,.2);
            color: #fff;
        }
        .btn-track {
            background: var(--lime); color: var(--ink);
            border: none; border-radius: .85rem;
            padding: .8rem 1.75rem;
            font-weight: 700; font-size: .9rem;
            white-space: nowrap; cursor: pointer;
            display: flex; align-items: center; gap: .45rem;
            transition: transform .15s, box-shadow .15s;
        }
        .btn-track:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(132,204,22,.4); }

        /* Result panel */
        .track-result {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: var(--radius-md);
            padding: 1.75rem;
            margin-top: 1.5rem;
            display: none;
            position: relative; z-index: 2;
        }
        .track-result.visible { display: block; }
        .track-meta-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.45); }
        .track-meta-val { color: #fff; font-weight: 600; font-size: .95rem; margin-top: .2rem; }
        .status-pill {
            display: inline-flex; align-items: center; gap: .35rem;
            padding: .3rem .9rem; border-radius: 2rem;
            font-weight: 700; font-size: .8rem;
        }
        .status-pill.paid { background: rgba(132,204,22,.2); color: var(--lime); }
        .status-pill.unpaid { background: rgba(239,68,68,.2); color: #fca5a5; }
        .track-timeline { padding-left: 1.5rem; border-left: 2px solid rgba(255,255,255,.1); margin-top: 1.25rem; }
        .track-tl-item { position: relative; padding-bottom: 1.2rem; }
        .track-tl-dot {
            position: absolute; left: -1.6rem; top: .25rem;
            width: 10px; height: 10px; border-radius: 50%;
            background: var(--lime);
            border: 2px solid var(--g-900);
        }
        .track-tl-date { font-size: .74rem; color: rgba(255,255,255,.45); }
        .track-tl-text { font-size: .88rem; color: rgba(255,255,255,.8); font-weight: 500; }

        /* ─── HOW IT WORKS ─── */
        #how { background: var(--sand); padding: 5.5rem 0; }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
        }
        .steps-grid::before {
            content: '';
            position: absolute;
            top: 2.6rem; left: 12%; right: 12%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--g-200) 20%, var(--g-200) 80%, transparent);
            z-index: 0;
        }

        .step-item {
            text-align: center;
            padding: 0 1.5rem;
            position: relative; z-index: 1;
        }
        .step-bubble {
            width: 56px; height: 56px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--g-200);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; color: var(--g-600);
            margin: 0 auto 1.5rem;
            position: relative;
            transition: background .2s, border-color .2s, color .2s;
            box-shadow: 0 0 0 6px var(--sand);
        }
        .step-item:hover .step-bubble { background: var(--g-600); border-color: var(--g-600); color: #fff; }
        .step-num-badge {
            position: absolute; top: -6px; right: -6px;
            width: 20px; height: 20px; border-radius: 50%;
            background: var(--lime); color: var(--ink);
            font-size: .65rem; font-weight: 900;
            display: flex; align-items: center; justify-content: center;
        }
        .step-title {
            font-family: 'Fraunces', serif;
            font-size: 1rem; font-weight: 700; color: var(--ink);
            margin-bottom: .4rem;
        }
        .step-desc { font-size: .84rem; color: var(--muted); line-height: 1.65; }

        @media (max-width: 767px) {
            .steps-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
            .steps-grid::before { display: none; }
        }
        @media (max-width: 480px) {
            .steps-grid { grid-template-columns: 1fr; }
        }

        /* ─── STATS ─── */
        #stats {
            background: var(--g-600);
            padding: 4rem 0;
            position: relative; overflow: hidden;
        }
        #stats::before {
            content: '';
            position: absolute; inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .stat-block { text-align: center; padding: 1rem; position: relative; z-index: 1; }
        .stat-num {
            font-family: 'Fraunces', serif;
            font-size: clamp(2.8rem, 4vw, 4rem);
            font-weight: 900; color: #fff; line-height: 1;
            letter-spacing: -.03em;
        }
        .stat-num span { color: var(--lime); }
        .stat-lbl { color: rgba(255,255,255,.7); font-size: .85rem; margin-top: .4rem; }
        .stat-divider {
            width: 1px; background: rgba(255,255,255,.15);
            align-self: stretch; margin: 0 .5rem;
        }

        /* ─── TÉMOIGNAGES ─── */
        #temoignages { background: var(--white); padding: 5.5rem 0; }

        .temo-carousel .carousel-item { padding: 0 .5rem; }

        .temo-card {
            background: var(--sand);
            border-radius: var(--radius-lg);
            padding: 2.25rem;
            border: 1px solid var(--stone);
            height: 100%;
        }
        .temo-quote-mark {
            font-family: 'Fraunces', serif;
            font-size: 5rem; line-height: .7;
            color: var(--g-200);
            user-select: none;
            margin-bottom: .25rem;
        }
        .temo-stars { color: #f59e0b; font-size: .82rem; letter-spacing: 2px; margin-bottom: .9rem; }
        .temo-text { font-size: .93rem; color: var(--body); line-height: 1.75; margin-bottom: 1.5rem; }
        .temo-avatar {
            width: 42px; height: 42px; border-radius: 50%;
            background: var(--g-600); color: #fff;
            display: flex; align-items: center; justify-content: center;
            font-family: 'Fraunces', serif; font-weight: 900; font-size: .95rem;
            flex-shrink: 0;
        }
        .temo-name { font-weight: 700; font-size: .88rem; color: var(--ink); }
        .temo-role { font-size: .76rem; color: var(--muted); }

        /* Carousel nav */
        .temo-nav { display: flex; gap: .5rem; justify-content: center; margin-top: 2rem; }
        .temo-nav button {
            width: 10px; height: 10px; border-radius: 50%;
            background: var(--stone); border: none; padding: 0;
            transition: background .2s, transform .2s; cursor: pointer;
        }
        .temo-nav button.active { background: var(--g-600); transform: scale(1.3); }

        /* ── Section Partenaires ── */
        #partenaires::before {
            content:'';position:absolute;inset:0;
            background:radial-gradient(ellipse 60% 80% at 10% 50%, rgba(26,122,74,.18), transparent),
                    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(132,204,22,.07), transparent);
        }
        
        .prt-header { position:relative;z-index:1;text-align:center;margin-bottom:3rem; }
        .prt-eyebrow {
            display:inline-flex;align-items:center;gap:.4rem;
            font-size:.7rem;font-weight:700;text-transform:uppercase;
            letter-spacing:.12em;color:var(--lime);margin-bottom:.65rem;
        }
        .prt-eyebrow::before { content:'';display:inline-block;width:16px;height:2px;background:var(--lime);border-radius:1px; }
        .prt-title {
            font-family:'Fraunces',serif;
            font-size:clamp(1.6rem,2.5vw,2.2rem);
            font-weight:900;color:#fff;letter-spacing:-.03em;margin-bottom:.5rem;
        }
        .prt-title em { color:var(--lime);font-style:italic; }
        .prt-sub { color:rgba(255,255,255,.45);font-size:.88rem; }
        
        /* ── Slider infiniment défilant ── */
        .prt-slider-wrap {
            position:relative;z-index:1;
            overflow:hidden;
            /* masques sur les côtés */
            -webkit-mask:linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
            mask:linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
        }
        
        .prt-track {
            display:flex;
            gap:1.25rem;
            width:max-content;
            animation: prtScroll 32s linear infinite;
        }
        .prt-track:hover { animation-play-state:paused; }
        
        @keyframes prtScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* ── Card partenaire ── */
        .prt-card {
            display:flex;
            flex-direction:column;
            align-items:center;
            gap:.65rem;
            background:rgba(255,255,255,.05);
            border:1px solid rgba(255,255,255,.09);
            border-radius:1.25rem;
            padding:1.25rem 1.5rem;
            width:180px;
            flex-shrink:0;
            transition:background .2s,border-color .2s,transform .2s;
            text-decoration:none;
            cursor:default;
        }
        .prt-card:hover {
            background:rgba(255,255,255,.1);
            border-color:rgba(132,204,22,.3);
            transform:translateY(-4px);
        }
        
        /* Logo / avatar */
        .prt-logo {
            width:60px;height:60px;
            border-radius:1rem;
            display:flex;align-items:center;justify-content:center;
            font-size:1.5rem;
            flex-shrink:0;
            overflow:hidden;
        }
        .prt-logo img {
            width:100%;height:100%;
            object-fit:contain;
            filter:brightness(0) invert(1);
            opacity:.8;
        }
        .prt-logo-icon {
            width:60px;height:60px;
            border-radius:1rem;
            display:flex;align-items:center;justify-content:center;
            font-size:1.4rem;
        }
        
        .prt-name {
            font-size:.82rem;font-weight:700;
            color:rgba(255,255,255,.85);
            text-align:center;line-height:1.3;
        }
        .prt-role {
            font-size:.7rem;color:rgba(255,255,255,.35);
            text-align:center;
        }
        
        /* ── Bas de section ── */
        .prt-footer {
            position:relative;z-index:1;
            margin-top:2.5rem;
            display:flex;
            align-items:center;
            justify-content:center;
            gap:1rem;
            flex-wrap:wrap;
        }
        .prt-cta-link {
            display:inline-flex;align-items:center;gap:.4rem;
            color:rgba(255,255,255,.6);font-size:.82rem;font-weight:600;
            text-decoration:none;border:1px solid rgba(255,255,255,.15);
            padding:.45rem 1.1rem;border-radius:2rem;
            transition:background .18s,border-color .18s,color .18s;
        }
        .prt-cta-link:hover { background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.3);color:#fff; }
        .prt-cta-link i { color:var(--lime); }

        /* ─── FOOTER ─── */
        footer {
            background: var(--g-900);
            padding: 3.5rem 0 2rem;
        }
        .footer-brand-name {
            font-family: 'Fraunces', serif;
            color: #fff; font-size: 1.5rem; font-weight: 900;
        }
        .footer-tagline { color: rgba(255,255,255,.4); font-size: .82rem; margin-top: .25rem; max-width: 240px; line-height: 1.5; }
        footer h6 { color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
        footer ul { list-style: none; padding: 0; margin: 0; }
        footer ul li { margin-bottom: .45rem; }
        footer ul li a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .85rem; transition: color .2s; }
        footer ul li a:hover { color: var(--lime); }
        .footer-social a {
            display: inline-flex; align-items: center; justify-content: center;
            width: 36px; height: 36px; border-radius: 50%;
            background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
            text-decoration: none; margin-right: .4rem;
            transition: background .2s, color .2s;
        }
        .footer-social a:hover { background: var(--g-600); color: #fff; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,.07); margin-top: 2.5rem; padding-top: 1.5rem; }
        .footer-bottom p { color: rgba(255,255,255,.3); font-size: .78rem; margin: 0; }

        /* ─── MODALS ─── */
        .modal-content { border: none; border-radius: var(--radius-xl); overflow: hidden; }
        .modal-header { border: none; padding: 1.5rem 2rem 1rem; }
        .modal-header .modal-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.35rem; }
        .modal-header .btn-close { opacity: .7; }
        .modal-body { padding: 0 2rem 2rem; }
        .form-label { font-size: .83rem; font-weight: 600; color: var(--body); margin-bottom: .35rem; }
        .form-control, .form-select {
            border: 1.5px solid #e4e4e7;
            border-radius: .8rem;
            padding: .7rem 1rem;
            font-size: .9rem;
            transition: border-color .2s, box-shadow .2s;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--g-600);
            box-shadow: 0 0 0 3px rgba(26,122,74,.1);
        }
        .btn-modal-submit {
            background: var(--g-600); color: #fff;
            border: none; border-radius: 2rem;
            padding: .8rem 2rem; font-weight: 700;
            font-size: .9rem; cursor: pointer;
            display: inline-flex; align-items: center; gap: .5rem;
            transition: background .2s, transform .15s;
        }
        .btn-modal-submit:hover { background: var(--g-800); transform: translateY(-1px); }
        .modal-accent-green { background: var(--g-600); }
        .modal-accent-red { background: #dc2626; }
        .modal-accent-amber { background: #b45309; }
        .modal-accent-slate { background: #475569; }

        /* ─── FLOATING ─── */
        .fab-stack {
            position: fixed; bottom: 5.5rem; right: 1.25rem;
            display: flex; flex-direction: column; gap: .45rem;
            z-index: 990;
        }
        .fab {
            display: flex; align-items: center; gap: .5rem;
            padding: .55rem 1.1rem;
            border-radius: 2rem; border: none; cursor: pointer;
            font-weight: 700; font-size: .78rem;
            box-shadow: 0 4px 16px rgba(0,0,0,.18);
            transition: transform .18s;
            white-space: nowrap;
            text-decoration: none;
        }
        .fab:hover { transform: scale(1.05); }
        .fab-green { background: var(--g-600); color: #fff; }
        .fab-green:hover { color: #fff; }
        .fab-lime { background: var(--lime); color: var(--ink); }
        .fab-lime:hover { color: var(--ink); }

        .back-top {
            position: fixed; bottom: 1.25rem; right: 1.25rem;
            width: 42px; height: 42px; border-radius: 50%;
            background: var(--g-600); color: #fff;
            display: flex; align-items: center; justify-content: center;
            text-decoration: none; z-index: 989;
            opacity: 0; pointer-events: none;
            transition: opacity .3s, transform .3s;
            box-shadow: 0 4px 16px rgba(0,0,0,.2);
        }
        .back-top.on { opacity: 1; pointer-events: auto; }
        .back-top:hover { transform: translateY(-3px); color: #fff; }

        @media (max-width: 767px) {
            .fab-stack { display: none; }
            .tracking-card { padding: 2rem 1.5rem; }
            .tracking-form-row { flex-direction: column; }
            .contact-band-inner { flex-direction: column; }
            .hero-stats { gap: 1.5rem; }
        }

        /* AOS custom */
        [data-aos] { transition-timing-function: cubic-bezier(.16,1,.3,1) !important; }


/* FAQ */
:root{
  --g-900:#052e16;--g-800:#0e5233;--g-600:#1a7a4a;--g-400:#34a868;
  --g-200:#bbf7d0;--g-50:#f0fdf4;
  --lime:#84cc16;--sand:#faf7f2;--stone:#e8e0d4;
  --ink:#18181b;--body:#3f3f46;--muted:#71717a;
  --rmd:1rem;--rlg:1.5rem;--rxl:2.25rem;
}
*,*::before,*::after{box-sizing:border-box;}
body{font-family:'Plus Jakarta Sans',sans-serif;color:var(--body);background:#fff;-webkit-font-smoothing:antialiased;}
h1,h2,h3{font-family:'Fraunces',serif;}

/* HERO + RECHERCHE */
.page-hero{background:var(--g-900);padding:3.5rem 0 0;position:relative;overflow:hidden;}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 60% 50%,rgba(26,122,74,.35),transparent);}
.eyebrow{display:inline-flex;align-items:center;gap:.4rem;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--lime);margin-bottom:.6rem;}
.eyebrow::before{content:'';display:inline-block;width:18px;height:2px;background:var(--lime);border-radius:1px;}
.hero-h1{font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:900;color:#fff;letter-spacing:-.03em;line-height:1.1;margin-bottom:.6rem;}
.hero-h1 em{color:var(--lime);font-style:italic;}
.bc a{color:rgba(255,255,255,.45);text-decoration:none;font-size:.8rem;}
.bc span{color:rgba(255,255,255,.25);font-size:.8rem;margin:0 .4rem;}

/* Search */
.srch-wrap{max-width:600px;margin:2rem auto 0;position:relative;padding-bottom:2.5rem;}
.srch-wrap input{width:100%;background:rgba(255,255,255,.1);border:1.5px solid rgba(255,255,255,.2);border-radius:3rem;padding:.9rem 3rem .9rem 3rem;font-size:1rem;font-family:'Plus Jakarta Sans',sans-serif;color:#fff;}
.srch-wrap input::placeholder{color:rgba(255,255,255,.4);}
.srch-wrap input:focus{outline:none;background:rgba(255,255,255,.15);border-color:var(--lime);box-shadow:0 0 0 4px rgba(132,204,22,.2);}
.srch-icon{position:absolute;left:1.1rem;top:50%;transform:translateY(-60%);color:rgba(255,255,255,.45);font-size:1rem;pointer-events:none;}
.srch-clear{position:absolute;right:1.1rem;top:50%;transform:translateY(-60%);color:rgba(255,255,255,.4);font-size:1rem;cursor:pointer;background:none;border:none;padding:0;display:none;}
.srch-count{text-align:center;color:rgba(255,255,255,.5);font-size:.8rem;margin-top:.6rem;display:none;}
.srch-count strong{color:var(--lime);}

/* LAYOUT */
.faq-layout{display:grid;grid-template-columns:230px 1fr;gap:2.5rem;padding:3rem 0 5rem;align-items:start;}

/* SIDEBAR */
.cat-sidebar{position:sticky;top:80px;}
.cat-lbl{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--muted);margin-bottom:.7rem;}
.cat-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.2rem;}
.cat-btn{display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding:.5rem .85rem;border-radius:.75rem;cursor:pointer;font-size:.86rem;font-weight:500;color:var(--body);transition:.18s;border:none;background:transparent;width:100%;text-align:left;font-family:'Plus Jakarta Sans',sans-serif;}
.cat-btn:hover{background:var(--g-50);color:var(--g-800);}
.cat-btn.active{background:var(--g-600);color:#fff;font-weight:600;}
.cat-btn .cc{background:rgba(0,0,0,.1);border-radius:2rem;padding:.05rem .45rem;font-size:.7rem;font-weight:700;}
.cat-btn.active .cc{background:rgba(255,255,255,.2);}

/* FAQ ITEMS */
.cat-section{margin-bottom:2.75rem;}
.sec-head{display:flex;align-items:center;gap:.75rem;margin-bottom:1.1rem;}
.sec-icon{width:38px;height:38px;border-radius:.7rem;background:var(--g-50);border:1px solid var(--g-200);display:flex;align-items:center;justify-content:center;font-size:1rem;color:var(--g-600);flex-shrink:0;}
.sec-title{font-family:'Fraunces',serif;font-size:1.2rem;font-weight:700;color:var(--ink);}
.sec-count{font-size:.76rem;color:var(--muted);}

.faq-acc{display:flex;flex-direction:column;gap:.55rem;}
.fi{border:1.5px solid var(--stone);border-radius:var(--rmd);overflow:hidden;transition:border-color .2s;}
.fi.open,.fi:hover{border-color:var(--g-200);}
.fi.fhide{display:none;}

.fq{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.2rem;cursor:pointer;background:#fff;font-weight:600;font-size:.9rem;color:var(--ink);border:none;width:100%;text-align:left;font-family:'Plus Jakarta Sans',sans-serif;transition:background .15s;}
.fq:hover{background:var(--g-50);}
.fi.open .fq{background:var(--g-50);color:var(--g-800);}
.chev{font-size:.88rem;color:var(--muted);flex-shrink:0;transition:transform .25s;}
.fi.open .chev{transform:rotate(180deg);color:var(--g-600);}

.fa{max-height:0;overflow:hidden;transition:max-height .35s cubic-bezier(.16,1,.3,1),padding .25s;background:#fff;padding:0 1.2rem;font-size:.88rem;color:var(--muted);line-height:1.8;}
.fi.open .fa{padding:.2rem 1.2rem 1.1rem;max-height:600px;}

.pop-tag{display:inline-flex;align-items:center;gap:.2rem;background:rgba(132,204,22,.15);color:#3d6b07;font-size:.62rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;padding:.12rem .45rem;border-radius:2rem;margin-left:.4rem;flex-shrink:0;}
mark{background:rgba(132,204,22,.3);color:var(--g-900);border-radius:.2rem;padding:.04rem .14rem;}

.empty-faq{text-align:center;padding:3.5rem 1rem;color:var(--muted);}
.empty-faq i{font-size:2.5rem;opacity:.25;display:block;margin-bottom:.75rem;}

/* CTA */
.cta-band{background:var(--g-900);border-radius:var(--rxl);padding:3rem;text-align:center;position:relative;overflow:hidden;}
.cta-band::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 50% 50%,rgba(26,122,74,.4),transparent);}
.cta-band h3{font-family:'Fraunces',serif;font-size:1.7rem;font-weight:900;color:#fff;position:relative;z-index:1;}
.cta-band h3 em{color:var(--lime);font-style:italic;}
.cta-band p{color:rgba(255,255,255,.6);font-size:.88rem;position:relative;z-index:1;margin-bottom:1.75rem;}
.cta-pill{display:inline-flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);color:#fff;padding:.6rem 1.2rem;border-radius:3rem;font-size:.86rem;font-weight:600;text-decoration:none;transition:background .2s;position:relative;z-index:1;}
.cta-pill:hover{background:rgba(255,255,255,.18);color:#fff;}
.cta-pill i{color:var(--lime);}
.btn-lime{display:inline-flex;align-items:center;gap:.5rem;background:var(--lime);color:var(--ink);padding:.7rem 1.75rem;border-radius:3rem;font-weight:700;font-size:.88rem;text-decoration:none;transition:transform .15s,box-shadow .15s;position:relative;z-index:1;}
.btn-lime:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(132,204,22,.35);color:var(--ink);}

/* FOOTER */
.footer-mini{background:var(--g-900);padding:2rem 0;margin-top:3rem;}
.footer-mini p,.footer-mini a{color:rgba(255,255,255,.3);font-size:.8rem;margin:0;text-decoration:none;}
.footer-mini a:hover{color:var(--lime);}

@media(max-width:991px){
  .faq-layout{grid-template-columns:1fr;}
  .cat-sidebar{position:static;}
  .cat-list{flex-direction:row;flex-wrap:wrap;gap:.3rem;}
  .cat-btn{width:auto;}
}
@media(max-width:767px){.cta-band{padding:2rem 1.5rem;}}


/* PME */

/* ── HERO ── */
.page-hero{background:var(--g-900);padding:3.5rem 0 3rem;position:relative;overflow:hidden;flex-shrink:0;}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 70% 50%,rgba(26,122,74,.35),transparent);}
.eyebrow{display:inline-flex;align-items:center;gap:.4rem;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--lime);margin-bottom:.6rem;}
.eyebrow::before{content:'';display:inline-block;width:18px;height:2px;background:var(--lime);border-radius:1px;}
.hero-h1{font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:900;color:#fff;letter-spacing:-.03em;line-height:1.1;margin-bottom:.6rem;}
.hero-h1 em{color:var(--lime);font-style:italic;}
.hero-sub{color:rgba(255,255,255,.65);font-size:.9rem;max-width:480px;line-height:1.7;margin:0;}
.bc a{color:rgba(255,255,255,.45);text-decoration:none;font-size:.8rem;}
.bc span{color:rgba(255,255,255,.25);font-size:.8rem;margin:0 .4rem;}

/* ── FILTRE BAR ── */
.filter-bar{
    background:#fff;
    border-bottom:1px solid var(--stone);
    padding:.85rem 0;
    position:sticky;top:61px;z-index:1050;flex-shrink:0;
}

.filter-form{
    display:flex;
    align-items:center;
    gap:.6rem;
    flex-wrap:wrap;
}

.filter-label{
    font-size:.72rem;font-weight:700;
    text-transform:uppercase;letter-spacing:.08em;
    color:var(--muted);white-space:nowrap;
    flex-shrink:0;
}

.filter-select{
    border:1.5px solid var(--stone);
    border-radius:.75rem;
    padding:.42rem 2rem .42rem .85rem;
    font-size:.84rem;
    font-family:'Plus Jakarta Sans',sans-serif;
    color:var(--body);
    background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2371717a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat calc(100% - .65rem) center;
    -webkit-appearance:none;
    appearance:none;
    cursor:pointer;
    transition:border-color .2s,box-shadow .2s,opacity .2s;
    min-width:160px;
}

.filter-select:focus{
    outline:none;
    border-color:var(--g-600);
    box-shadow:0 0 0 3px rgba(26,122,74,.1);
}

.filter-select:disabled{
    opacity:.45;
    cursor:not-allowed;
    background-color:var(--sand);
}

/* Séparateur chevron entre selects */
.filter-sep{
    color:var(--stone);
    font-size:.9rem;
    flex-shrink:0;
}

.btn-reset{
    display:inline-flex;align-items:center;gap:.35rem;
    padding:.4rem .9rem;
    border:1.5px solid var(--stone);
    border-radius:2rem;
    font-size:.78rem;font-weight:600;
    color:var(--muted);
    background:#fff;
    cursor:pointer;
    transition:.18s;
    font-family:'Plus Jakarta Sans',sans-serif;
    white-space:nowrap;
}
.btn-reset:hover{border-color:var(--g-600);color:var(--g-600);background:var(--g-50);}

.filter-count{
    margin-left:auto;
    font-size:.78rem;
    color:var(--muted);
    white-space:nowrap;
    font-weight:600;
}
.filter-count strong{color:var(--g-600);}

/* ── SPLIT LAYOUT ── */
.split-wrap{display:flex;flex:1;overflow:hidden;min-height:0;}

/* Liste gauche */
.list-pane{width:480px;flex-shrink:0;overflow-y:auto;padding:1.5rem;background:var(--sand);}
.list-pane::-webkit-scrollbar{width:5px;}
.list-pane::-webkit-scrollbar-track{background:transparent;}
.list-pane::-webkit-scrollbar-thumb{background:var(--stone);border-radius:3px;}

.result-count{font-size:.78rem;color:var(--muted);margin-bottom:1rem;}
.result-count strong{color:var(--g-600);}

/* Carte PME */
.pme-card{background:#fff;border:1.5px solid var(--stone);border-radius:var(--rlg);padding:1.25rem;margin-bottom:.85rem;cursor:pointer;position:relative;overflow:hidden;transition:transform .2s,box-shadow .2s,border-color .2s;}
.pme-card::before{content:'';position:absolute;top:0;left:0;bottom:0;width:3px;background:var(--lime);transform:scaleY(0);transform-origin:bottom;transition:transform .22s;}
.pme-card:hover,.pme-card.selected{transform:translateX(3px);box-shadow:0 4px 20px rgba(0,0,0,.1);border-color:var(--g-200);}
.pme-card.selected{border-color:var(--g-600);background:var(--g-50);}
.pme-card:hover::before,.pme-card.selected::before{transform:scaleY(1);}
.pme-card.hidden{display:none;}

.av{width:44px;height:44px;border-radius:.8rem;background:var(--g-600);color:#fff;display:flex;align-items:center;justify-content:center;font-family:'Fraunces',serif;font-weight:900;font-size:1.1rem;flex-shrink:0;}
.pme-name{font-family:'Fraunces',serif;font-weight:700;font-size:.98rem;color:var(--ink);}
.pme-loc{font-size:.75rem;color:var(--g-600);font-weight:600;}
.pme-meta{font-size:.78rem;color:var(--muted);margin-top:.6rem;display:flex;flex-direction:column;gap:.25rem;}
.pme-meta span{display:flex;align-items:center;gap:.35rem;}
.pme-meta i{color:var(--g-400);font-size:.8rem;flex-shrink:0;}
.pme-btns{display:flex;gap:.4rem;margin-top:.85rem;flex-wrap:wrap;}
.pb{display:inline-flex;align-items:center;gap:.3rem;padding:.3rem .75rem;border-radius:2rem;font-size:.75rem;font-weight:600;border:1.5px solid;text-decoration:none;transition:.18s;cursor:pointer;}
.pb-call{border-color:var(--g-200);color:var(--g-600);background:var(--g-50);}
.pb-call:hover{background:var(--g-600);border-color:var(--g-600);color:#fff;}
.pb-wa{border-color:#dcfce7;color:#16a34a;background:#f0fdf4;}
.pb-wa:hover{background:#16a34a;border-color:#16a34a;color:#fff;}
.pb-mail{border-color:var(--stone);color:var(--muted);background:var(--sand);}
.pb-mail:hover{background:var(--ink);border-color:var(--ink);color:#fff;}
.stat-badge{position:absolute;top:.85rem;right:.85rem;display:inline-flex;align-items:center;gap:.25rem;font-size:.68rem;font-weight:700;padding:.2rem .55rem;border-radius:2rem;}
.s-on{background:#dcfce7;color:#15803d;}
.s-off{background:#fef9c3;color:#854d0e;}

/* Secteurs tags sur les cartes */
.secteurs-tags{display:flex;gap:.3rem;flex-wrap:wrap;margin-top:.55rem;}
.sec-tag{background:var(--g-50);border:1px solid var(--g-200);color:var(--g-800);font-size:.65rem;font-weight:700;padding:.18rem .5rem;border-radius:.4rem;display:inline-flex;align-items:center;gap:.25rem;}
.sec-tag i{font-size:.6rem;}

.empty-list{text-align:center;padding:3rem 1rem;color:var(--muted);}
.empty-list i{font-size:2.5rem;opacity:.25;display:block;margin-bottom:.75rem;}

/* Carte droite */
.map-pane{flex:1;position:relative;overflow:hidden;}
#map{width:100%;height:100%;}

/* Info carte vide */
.map-hint{
    position:absolute;
    bottom:5rem;left:50%;transform:translateX(-50%);
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(8px);
    border:1.5px solid var(--g-200);
    border-radius:1rem;
    padding:.65rem 1.2rem;
    font-size:.8rem;color:var(--g-800);
    font-weight:600;
    z-index:500;
    display:flex;align-items:center;gap:.5rem;
    box-shadow:0 4px 16px rgba(0,0,0,.1);
    white-space:nowrap;
    pointer-events:none;
    transition:opacity .3s;
}
.map-hint.hidden{opacity:0;}
.map-hint i{color:var(--g-600);}

/* Légende */
.map-legend{
    position:absolute;bottom:1.25rem;left:1.25rem;
    background:rgba(255,255,255,.95);backdrop-filter:blur(8px);
    border-radius:.85rem;padding:.7rem 1rem;
    z-index:400;font-size:.75rem;
    box-shadow:0 2px 12px rgba(0,0,0,.12);
}
.leg-item{display:flex;align-items:center;gap:.4rem;margin-bottom:.3rem;}
.leg-item:last-child{margin:0;}
.leg-dot{width:10px;height:10px;border-radius:2px;flex-shrink:0;}

/* Label secteur sur la carte */
.secteur-label{
    background:rgba(255,255,255,.88);
    border-radius:.4rem;
    padding:.15rem .45rem;
    font-size:.68rem;font-weight:700;
    color:var(--ink);
    white-space:nowrap;
    box-shadow:0 1px 4px rgba(0,0,0,.12);
    transform:translate(-50%,-50%);
    display:inline-block;
}

/* Leaflet popup */
.lf-popup .leaflet-popup-content-wrapper{border-radius:1rem;border:none;box-shadow:0 8px 32px rgba(0,0,0,.15);padding:0;overflow:hidden;}
.lf-popup .leaflet-popup-content{margin:0;width:220px!important;}
.popup-inner{padding:1rem;}
.popup-name{font-family:'Fraunces',serif;font-weight:700;font-size:.98rem;color:var(--ink);margin-bottom:.25rem;}
.popup-loc{font-size:.75rem;color:var(--g-600);font-weight:600;margin-bottom:.6rem;}
.popup-info{font-size:.78rem;color:var(--muted);display:flex;flex-direction:column;gap:.2rem;}
.popup-info span{display:flex;align-items:center;gap:.35rem;}
.popup-actions{display:flex;gap:.4rem;padding:.75rem 1rem;background:var(--g-50);border-top:1px solid var(--g-200);}
.popup-btn{flex:1;display:flex;align-items:center;justify-content:center;gap:.3rem;padding:.4rem;border-radius:.6rem;font-size:.75rem;font-weight:700;text-decoration:none;transition:opacity .15s;}
.popup-btn:hover{opacity:.85;}
.popup-btn-call{background:var(--g-600);color:#fff;}
.popup-btn-wa{background:#16a34a;color:#fff;}

/* Mobile */
@media(max-width:991px){
    body{padding-bottom:72px;}
    .split-wrap{flex-direction:column;overflow:visible;}
    .list-pane{width:100%;overflow:visible;max-height:none;}
    .map-pane{width:100%;height:400px;}
    #map{height:400px;}
    .filter-bar{top:0;}
}
@media(max-width:575px){
    .filter-form{gap:.4rem;}
    .filter-select{min-width:0;flex:1;}
    .filter-count{width:100%;margin-left:0;}
}


/* DETAIL PME */
/* ─── TOKENS LOCAUX ─── */
.pme-page {
    --p-900:#052e16;--p-800:#0e5233;--p-600:#1a7a4a;--p-400:#34a868;
    --p-200:#bbf7d0;--p-50:#f0fdf4;
    --lime:#84cc16;--sand:#faf7f2;--stone:#e8e0d4;
    --ink:#18181b;--body:#3f3f46;--muted:#71717a;
    font-family:'Plus Jakarta Sans',sans-serif;color:var(--body);
}
.pme-page h1,.pme-page h2,.pme-page h3,.pme-page h4{font-family:'Fraunces',serif;}

/* ─── HERO ─── */
.pmep-hero{
    background:var(--p-900);padding:4.5rem 0 0;
    position:relative;overflow:hidden;
}
.pmep-hero::before{
    content:'';position:absolute;inset:0;
    background:radial-gradient(ellipse 70% 60% at 80% 30%,rgba(26,122,74,.35),transparent);
}
.pmep-hero__inner{position:relative;z-index:1;padding-bottom:4.5rem;}
.pmep-bc a{color:rgba(255,255,255,.4);text-decoration:none;font-size:.8rem;}
.pmep-bc span{color:rgba(255,255,255,.2);font-size:.8rem;margin:0 .4rem;}
.pmep-eyebrow{
    display:inline-flex;align-items:center;gap:.4rem;
    font-size:.72rem;font-weight:700;text-transform:uppercase;
    letter-spacing:.12em;color:var(--lime);margin-bottom:.7rem;
}
.pmep-eyebrow::before{content:'';display:inline-block;width:16px;height:2px;background:var(--lime);border-radius:1px;}
.pmep-h1{font-size:clamp(2rem,4.5vw,3.5rem);font-weight:900;color:#fff;letter-spacing:-.04em;line-height:1.05;margin-bottom:1.1rem;}
.pmep-h1 em{color:var(--lime);font-style:italic;}
.pmep-lead{color:rgba(255,255,255,.7);font-size:1rem;line-height:1.8;max-width:500px;margin-bottom:2rem;}

/* Alerte "via mairie" dans le hero */
.pmep-via-alert{
    display:inline-flex;align-items:flex-start;gap:.85rem;
    background:rgba(132,204,22,.1);
    border:1.5px solid rgba(132,204,22,.25);
    border-radius:1rem;padding:1rem 1.25rem;
    max-width:520px;margin-bottom:2rem;
}
.pmep-via-alert i{color:var(--lime);font-size:1.1rem;flex-shrink:0;margin-top:.1rem;}
.pmep-via-alert p{color:rgba(255,255,255,.75);font-size:.86rem;line-height:1.6;margin:0;}
.pmep-via-alert strong{color:var(--lime);}

.pmep-btn-lime{
    display:inline-flex;align-items:center;gap:.5rem;
    background:var(--lime);color:var(--ink);
    padding:.8rem 1.75rem;border-radius:3rem;
    font-weight:700;font-size:.92rem;text-decoration:none;
    transition:transform .2s,box-shadow .2s;
}
.pmep-btn-lime:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(132,204,22,.4);color:var(--ink);}
.pmep-btn-ghost{
    display:inline-flex;align-items:center;gap:.5rem;
    background:transparent;color:rgba(255,255,255,.75);
    border:1.5px solid rgba(255,255,255,.25);
    padding:.8rem 1.75rem;border-radius:3rem;
    font-weight:600;font-size:.92rem;text-decoration:none;
    transition:background .2s,border-color .2s;
}
.pmep-btn-ghost:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.5);color:#fff;}

/* Image hero */
.pmep-hero__img{
    position:relative;z-index:1;
}
.pmep-hero__img img{
    width:100%;border-radius:1.5rem 1.5rem 0 0;
    object-fit:cover;height:400px;display:block;
}
.pmep-hero__img-overlay{
    position:absolute;bottom:1.25rem;left:1.25rem;right:1.25rem;
    background:rgba(5,46,22,.85);backdrop-filter:blur(8px);
    border-radius:.85rem;padding:1rem 1.25rem;
    display:flex;align-items:center;justify-content:space-between;
    gap:1rem;flex-wrap:wrap;
}
.pmep-stat{text-align:center;}
.pmep-stat-num{font-family:'Fraunces',serif;font-size:1.6rem;font-weight:900;color:var(--lime);}
.pmep-stat-lbl{font-size:.7rem;color:rgba(255,255,255,.5);margin-top:.1rem;}

/* ─── SCHEMA FONCTIONNEMENT ─── */
.pmep-schema{padding:5rem 0;background:#fff;}
.pmep-section-tag{
    display:inline-flex;align-items:center;gap:.4rem;
    font-size:.7rem;font-weight:700;text-transform:uppercase;
    letter-spacing:.12em;color:var(--p-600);margin-bottom:.5rem;
}
.pmep-section-tag::before{content:'';display:inline-block;width:14px;height:2px;background:var(--lime);border-radius:1px;}
.pmep-section-title{font-size:clamp(1.6rem,2.8vw,2.3rem);font-weight:900;color:var(--ink);letter-spacing:-.03em;line-height:1.15;}
.pmep-section-title em{color:var(--p-600);font-style:italic;}

/* Flow mairie → pme */
.pmep-flow{
    display:grid;
    grid-template-columns:1fr auto 1fr auto 1fr;
    align-items:center;
    gap:1rem;
    margin-top:2.5rem;
}
.pmep-flow-node{
    background:var(--sand);border:1.5px solid var(--stone);
    border-radius:1.25rem;padding:1.5rem 1.25rem;text-align:center;
}
.pmep-flow-node--main{
    background:var(--p-900);border-color:rgba(255,255,255,.06);
}
.pmep-flow-node__icon{
    width:52px;height:52px;border-radius:1rem;
    display:flex;align-items:center;justify-content:center;
    font-size:1.2rem;margin:0 auto .85rem;
}
.pmep-flow-node__label{
    font-family:'Fraunces',serif;font-size:.95rem;font-weight:700;
    color:var(--ink);margin-bottom:.3rem;
}
.pmep-flow-node--main .pmep-flow-node__label{color:#fff;}
.pmep-flow-node__sub{font-size:.76rem;color:var(--muted);}
.pmep-flow-node--main .pmep-flow-node__sub{color:rgba(255,255,255,.5);}

.pmep-flow-arrow{
    display:flex;flex-direction:column;align-items:center;gap:.3rem;
    color:var(--p-400);
}
.pmep-flow-arrow i{font-size:1.3rem;}
.pmep-flow-arrow span{font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--muted);}

@media(max-width:767px){
    .pmep-flow{grid-template-columns:1fr;grid-template-rows:auto;}
    .pmep-flow-arrow{flex-direction:row;}
    .pmep-flow-arrow i{transform:rotate(90deg);}
}

/* ─── FONCTIONNALITÉS ─── */
.pmep-features{padding:5rem 0;background:var(--sand);}
.pmep-feat-card{
    background:#fff;border:1.5px solid var(--stone);
    border-radius:1.25rem;padding:1.75rem;height:100%;
    transition:box-shadow .2s,transform .2s,border-color .2s;
}
.pmep-feat-card:hover{
    box-shadow:0 8px 28px rgba(0,0,0,.08);
    transform:translateY(-3px);border-color:var(--p-200);
}
.pmep-feat-icon{
    width:48px;height:48px;border-radius:.9rem;
    background:var(--p-50);border:1px solid var(--p-200);
    display:flex;align-items:center;justify-content:center;
    font-size:1.15rem;color:var(--p-600);margin-bottom:1rem;
    transition:background .2s,color .2s;
}
.pmep-feat-card:hover .pmep-feat-icon{background:var(--p-600);color:#fff;border-color:transparent;}
.pmep-feat-title{font-family:'Fraunces',serif;font-size:1rem;font-weight:700;color:var(--ink);margin-bottom:.4rem;}
.pmep-feat-text{font-size:.86rem;color:var(--muted);line-height:1.7;margin:0;}

/* ─── ÉTAPES D'ACCÈS ─── */
.pmep-steps{padding:5rem 0;background:#fff;}
.pmep-step-item{
    display:flex;gap:1.25rem;padding:1.5rem;
    background:var(--sand);border:1.5px solid var(--stone);
    border-radius:1.25rem;height:100%;
}
.pmep-step-num{
    width:36px;height:36px;border-radius:50%;
    background:var(--p-600);color:#fff;
    display:flex;align-items:center;justify-content:center;
    font-family:'Fraunces',serif;font-size:.95rem;font-weight:900;
    flex-shrink:0;
}
.pmep-step-title{font-family:'Fraunces',serif;font-size:.95rem;font-weight:700;color:var(--ink);margin-bottom:.3rem;}
.pmep-step-text{font-size:.84rem;color:var(--muted);line-height:1.65;margin:0;}

/* ─── CTA ─── */
.pmep-cta{
    background:var(--p-900);padding:5rem 0;
    text-align:center;position:relative;overflow:hidden;
}
.pmep-cta::before{
    content:'';position:absolute;inset:0;
    background:radial-gradient(ellipse 60% 80% at 50% 50%,rgba(26,122,74,.35),transparent);
}
.pmep-cta__inner{position:relative;z-index:1;}
.pmep-cta__title{
    font-family:'Fraunces',serif;
    font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:900;
    color:#fff;letter-spacing:-.03em;margin-bottom:.85rem;
}
.pmep-cta__title em{color:var(--lime);font-style:italic;}
.pmep-cta__sub{color:rgba(255,255,255,.6);font-size:.95rem;max-width:440px;margin:0 auto 2rem;line-height:1.75;}


/* A PROPOS */

/* ── tokens locaux (redéfinis pour isoler) ── */
.ap-page {
    --ap-900: #052e16;
    --ap-800: #0e5233;
    --ap-600: #1a7a4a;
    --ap-400: #34a868;
    --ap-200: #bbf7d0;
    --ap-50:  #f0fdf4;
    --ap-lime: #84cc16;
    --ap-sand: #faf7f2;
    --ap-stone: #e8e0d4;
    --ap-ink:  #18181b;
    --ap-body: #3f3f46;
    --ap-muted:#71717a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ap-body);
}
 
.ap-page h1,
.ap-page h2,
.ap-page h3,
.ap-page h4 { font-family: 'Fraunces', serif; }
 
/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.ap-hero {
    background: var(--ap-900);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}
 
.ap-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(26,122,74,.4), transparent);
    pointer-events: none;
}
 
.ap-hero__inner {
    position: relative;
    z-index: 1;
    padding-bottom: 5rem;
}
 
.ap-bc a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: .8rem;
}
.ap-bc span {
    color: rgba(255,255,255,.25);
    font-size: .8rem;
    margin: 0 .4rem;
}
 
.ap-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ap-lime);
    margin-bottom: .75rem;
}
.ap-eyebrow::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--ap-lime);
    border-radius: 1px;
}
 
.ap-hero__h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}
.ap-hero__h1 em { color: var(--ap-lime); font-style: italic; }
 
.ap-hero__lead {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2.5rem;
}
 
.ap-btn-lime {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--ap-lime);
    color: var(--ap-ink);
    padding: .85rem 1.85rem;
    border-radius: 3rem;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.ap-btn-lime:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(132,204,22,.4);
    color: var(--ap-ink);
}
 
.ap-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: rgba(255,255,255,.8);
    border: 1.5px solid rgba(255,255,255,.3);
    padding: .85rem 1.85rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}
.ap-btn-ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.55);
    color: #fff;
}
 
/* KPIs */
.ap-kpis {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.12);
}
.ap-kpi__num {
    font-family: 'Fraunces', serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--ap-lime);
    line-height: 1;
}
.ap-kpi__lbl {
    color: rgba(255,255,255,.6);
    font-size: .8rem;
    margin-top: .2rem;
}
 
/* Image hero */
.ap-hero__img-wrap { position: relative; z-index: 1; }
.ap-hero__img-wrap img {
    width: 100%;
    border-radius: 1.5rem 1.5rem 0 0;
    object-fit: cover;
    height: 420px;
    display: block;
}
.ap-hero__badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: .75rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.ap-hero__badge i { font-size: 1.4rem; color: var(--ap-600); }
.ap-hero__badge-val { font-weight: 700; font-size: .9rem; color: var(--ap-ink); }
.ap-hero__badge-lbl { font-size: .72rem; color: var(--ap-muted); }
 
/* ════════════════════════════════════════
   SECTION HELPER
════════════════════════════════════════ */
.ap-section-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ap-600);
    margin-bottom: .5rem;
}
.ap-section-tag::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 2px;
    background: var(--ap-lime);
    border-radius: 1px;
}
 
.ap-section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: var(--ap-ink);
    letter-spacing: -.03em;
    line-height: 1.15;
}
.ap-section-title em { color: var(--ap-600); font-style: italic; }
 
/* ════════════════════════════════════════
   MISSION
════════════════════════════════════════ */
.ap-mission { padding: 5.5rem 0; background: #fff; }
 
.ap-mission-card {
    background: var(--ap-900);
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.ap-mission-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 10% 10%, rgba(26,122,74,.4), transparent);
    pointer-events: none;
}
.ap-mission-card__body { position: relative; z-index: 1; }
 
.ap-mission-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 1rem;
    background: var(--ap-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.25rem;
}
 
.ap-mission-card__title {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: .75rem;
}
 
.ap-mission-card__text {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    line-height: 1.8;
    margin: 0;
}
 
/* variante claire */
.ap-mission-card--light {
    background: var(--ap-sand);
    border: 1.5px solid var(--ap-stone);
}
.ap-mission-card--light::before { display: none; }
.ap-mission-card--light .ap-mission-card__title { color: var(--ap-ink); }
.ap-mission-card--light .ap-mission-card__text  { color: var(--ap-muted); }
.ap-mission-card--light .ap-mission-card__icon  {
    background: var(--ap-50);
    color: var(--ap-600);
    border: 1px solid var(--ap-200);
}
 
/* ════════════════════════════════════════
   VALEURS
════════════════════════════════════════ */
.ap-values { padding: 5.5rem 0; background: var(--ap-sand); }
 
.ap-value-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    border: 1.5px solid var(--ap-stone);
    border-radius: 1.25rem;
    transition: box-shadow .2s, transform .2s;
    height: 100%;
}
.ap-value-item:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    transform: translateY(-3px);
}
.ap-value-num {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--ap-200);
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
}
.ap-value-title {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ap-ink);
    margin-bottom: .35rem;
}
.ap-value-text {
    font-size: .87rem;
    color: var(--ap-muted);
    line-height: 1.7;
    margin: 0;
}
 
/* ════════════════════════════════════════
   TIMELINE HORIZONTALE
════════════════════════════════════════ */
.ap-history {
    padding: 6rem 0;
    background: var(--ap-900);
    position: relative;
    overflow: hidden;
}
 
/* Texture bruit en arrière-plan */
.ap-history::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 0% 30%, rgba(26,122,74,.18), transparent),
        radial-gradient(ellipse 50% 40% at 100% 70%, rgba(132,204,22,.08), transparent);
    pointer-events: none;
}
 
/* Grille de points décoratifs */
.ap-history::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
 
.ap-history__header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 5rem;
}
 
.ap-history__header .ap-section-tag {
    color: var(--ap-lime);
    justify-content: center;
}
.ap-history__header .ap-section-tag::before { background: var(--ap-lime); }
.ap-history__header .ap-section-title { color: #fff; }
.ap-history__header .ap-section-title em { color: var(--ap-lime); }
.ap-history__header p { color: rgba(255,255,255,.5); font-size: .9rem; margin-top: .6rem; }
 
/* Ligne centrale verticale */
.ap-tl-v {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}
 
.ap-tl-v::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(132,204,22,.4) 8%,
        rgba(52,168,104,.6) 50%,
        rgba(132,204,22,.4) 92%,
        transparent 100%
    );
    transform: translateX(-50%);
}
 
/* Item de la timeline */
.ap-tl-v__item {
    display: grid;
    grid-template-columns: 1fr 52px 1fr;
    gap: 0 1.5rem;
    align-items: start;
    margin-bottom: 4.5rem;
    position: relative;
}
 
.ap-tl-v__item:last-child { margin-bottom: 0; }
 
/* Côté gauche (années paires → contenu à gauche) */
.ap-tl-v__item--left .ap-tl-v__content {
    grid-column: 1;
    text-align: right;
}
.ap-tl-v__item--left .ap-tl-v__spacer { grid-column: 2; }
.ap-tl-v__item--left .ap-tl-v__empty  { grid-column: 3; }
 
/* Côté droit (années impaires → contenu à droite) */
.ap-tl-v__item--right .ap-tl-v__empty   { grid-column: 1; }
.ap-tl-v__item--right .ap-tl-v__spacer  { grid-column: 2; }
.ap-tl-v__item--right .ap-tl-v__content {
    grid-column: 3;
    text-align: left;
}
 
/* Spacer = colonne du milieu qui porte le dot */
.ap-tl-v__spacer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: .25rem;
}
 
/* Dot central */
.ap-tl-v__dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 2px solid rgba(132,204,22,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--ap-lime);
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    transition: background .25s, border-color .25s, transform .25s;
    backdrop-filter: blur(6px);
}
 
.ap-tl-v__item:hover .ap-tl-v__dot {
    background: var(--ap-600);
    border-color: var(--ap-lime);
    transform: scale(1.12);
}
 
.ap-tl-v__item--current .ap-tl-v__dot {
    background: var(--ap-600);
    border-color: var(--ap-lime);
    box-shadow: 0 0 0 8px rgba(132,204,22,.12);
}
 
/* Contenu texte */
.ap-tl-v__content { padding-top: .4rem; }
 
/* Année en grand */
.ap-tl-v__year {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.06);
    letter-spacing: -.04em;
    margin-bottom: -.6rem;
    display: block;
    transition: color .25s;
}
 
.ap-tl-v__item--right .ap-tl-v__year { text-align: left; }
.ap-tl-v__item--left  .ap-tl-v__year { text-align: right; }
 
.ap-tl-v__item:hover .ap-tl-v__year { color: rgba(132,204,22,.15); }
.ap-tl-v__item--current .ap-tl-v__year { color: rgba(132,204,22,.18); }
 
/* Carte contenu */
.ap-tl-v__card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1.1rem;
    padding: 1.4rem 1.5rem;
    transition: background .25s, border-color .25s, transform .2s;
    backdrop-filter: blur(8px);
}
 
.ap-tl-v__item:hover .ap-tl-v__card {
    background: rgba(255,255,255,.07);
    border-color: rgba(132,204,22,.25);
    transform: translateY(-2px);
}
 
.ap-tl-v__item--current .ap-tl-v__card {
    background: rgba(26,122,74,.15);
    border-color: rgba(132,204,22,.3);
}
 
.ap-tl-v__now {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--ap-lime);
    color: var(--ap-ink);
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .18rem .6rem;
    border-radius: 2rem;
    margin-bottom: .6rem;
}
 
.ap-tl-v__card-title {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
    line-height: 1.25;
}
 
.ap-tl-v__card-text {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin: 0;
}
 
/* Hint mobile */
.ap-tl-hint {
    text-align: center;
    font-size: .76rem;
    color: rgba(255,255,255,.3);
    margin-top: 1.5rem;
    display: none;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 767px) {
    .ap-tl-v::before { left: 24px; transform: none; }
 
    .ap-tl-v__item {
        grid-template-columns: 52px 1fr;
        gap: 0 1rem;
        margin-bottom: 2.5rem;
    }
 
    /* Tout à droite sur mobile */
    .ap-tl-v__item--left .ap-tl-v__content,
    .ap-tl-v__item--right .ap-tl-v__content {
        grid-column: 2;
        text-align: left;
    }
    .ap-tl-v__item--left .ap-tl-v__spacer,
    .ap-tl-v__item--right .ap-tl-v__spacer  { grid-column: 1; }
    .ap-tl-v__item--left .ap-tl-v__empty,
    .ap-tl-v__item--right .ap-tl-v__empty   { display: none; }
 
    .ap-tl-v__year { font-size: 2.2rem; }
    .ap-tl-v__dot  { width: 40px; height: 40px; font-size: .9rem; }
    .ap-tl-hint    { display: block; }
}
 
/* ════════════════════════════════════════
   PARTENAIRES
════════════════════════════════════════ */
.ap-partners { padding: 5.5rem 0; background: var(--ap-sand); }
 
.ap-partner-card {
    background: #fff;
    border: 1.5px solid var(--ap-stone);
    border-radius: 1.25rem;
    padding: 1.75rem;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
    height: 100%;
}
.ap-partner-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    transform: translateY(-3px);
}
.ap-partner-logo {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: var(--ap-50);
    border: 1px solid var(--ap-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--ap-600);
    margin: 0 auto 1rem;
}
.ap-partner-name {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    color: var(--ap-ink);
    font-size: 1rem;
    margin-bottom: .3rem;
}
.ap-partner-role { font-size: .8rem; color: var(--ap-muted); }
 
/* ════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════ */
.ap-cta {
    background: var(--ap-900);
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.ap-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(26,122,74,.4), transparent);
    pointer-events: none;
}
.ap-cta__inner { position: relative; z-index: 1; }
 
.ap-cta__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.04em;
    margin-bottom: 1rem;
}
.ap-cta__title em { color: var(--ap-lime); font-style: italic; }
 
.ap-cta__sub {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}
 
/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 767px) {
    .ap-hero { padding: 3rem 0 0; }
    .ap-hero__inner { padding-bottom: 3rem; }
    .ap-hero__h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .ap-mission  { padding: 3.5rem 0; }
    .ap-values   { padding: 3.5rem 0; }
    .ap-history  { padding: 3.5rem 0; }
    .ap-partners { padding: 3.5rem 0; }
    .ap-cta      { padding: 3.5rem 0; }
    .ap-tl-item  { width: 200px; }
}


/* PROGRAMME DE TOURNEES */

/* HERO */
.page-hero{background:var(--g-900);padding:3.5rem 0 3rem;position:relative;overflow:hidden;}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 70% 50%,rgba(26,122,74,.35),transparent);}
.eyebrow{display:inline-flex;align-items:center;gap:.4rem;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--lime);margin-bottom:.6rem;}
.eyebrow::before{content:'';display:inline-block;width:18px;height:2px;background:var(--lime);border-radius:1px;}
.hero-h1{font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:900;color:#fff;letter-spacing:-.03em;line-height:1.1;margin-bottom:.6rem;}
.hero-h1 em{color:var(--lime);font-style:italic;}
.bc a{color:rgba(255,255,255,.45);text-decoration:none;font-size:.8rem;}
.bc span{color:rgba(255,255,255,.25);font-size:.8rem;margin:0 .4rem;}

/* CONTROLS */
.ctrl-bar{background:#fff;border-bottom:1px solid var(--stone);padding:1rem 0;position:sticky;top:61px;z-index:1050;}
.view-toggle{display:flex;background:var(--sand);border:1.5px solid var(--stone);border-radius:.75rem;padding:.2rem;overflow:hidden;gap:0;}
.vbtn{display:flex;align-items:center;gap:.4rem;padding:.4rem .9rem;border:none;background:transparent;font-size:.82rem;font-weight:600;color:var(--muted);border-radius:.55rem;cursor:pointer;transition:.18s;white-space:nowrap;font-family:'Plus Jakarta Sans',sans-serif;}
.vbtn.active{background:#fff;color:var(--g-600);box-shadow:0 1px 4px rgba(0,0,0,.1);}
.ctrl-sel{border:1.5px solid var(--stone);border-radius:.75rem;padding:.42rem .85rem;font-size:.84rem;font-family:'Plus Jakarta Sans',sans-serif;color:var(--body);background:#fff;cursor:pointer;}
.ctrl-sel:focus{outline:none;border-color:var(--g-600);box-shadow:0 0 0 3px rgba(26,122,74,.08);}
.srch{border:1.5px solid var(--stone);border-radius:2rem;padding:.42rem 1rem .42rem 2.2rem;font-size:.84rem;font-family:'Plus Jakarta Sans',sans-serif;min-width:200px;background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%2371717a' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zm-5.242 1.156a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E") no-repeat .75rem center;}
.srch:focus{outline:none;border-color:var(--g-600);}
.leg{display:flex;gap:1.25rem;flex-wrap:wrap;}
.leg-item{display:flex;align-items:center;gap:.35rem;font-size:.76rem;color:var(--muted);}
.leg-dot{width:8px;height:8px;border-radius:50%;}

/* TABLEAU */
.t-wrap{border-radius:1.25rem;overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,.07);border:1px solid var(--stone);}
table.t{width:100%;border-collapse:collapse;font-size:.86rem;}
table.t thead tr{background:var(--g-900);color:#fff;}
table.t thead th{padding:.85rem 1.1rem;font-weight:600;font-size:.78rem;text-transform:uppercase;letter-spacing:.05em;white-space:nowrap;border:none;}
table.t tbody tr{border-bottom:1px solid var(--stone);transition:background .15s;}
table.t tbody tr:last-child{border:none;}
table.t tbody tr:hover{background:var(--g-50);}
table.t tbody tr.hidden{display:none;}
table.t td{padding:.8rem 1.1rem;vertical-align:middle;}
.jc{display:inline-flex;align-items:center;justify-content:center;height:30px;border-radius:.45rem;background:var(--g-50);border:1px solid var(--g-200);font-size:.7rem;font-weight:700;color:var(--g-800);}
.sp{display:inline-flex;align-items:center;gap:.28rem;font-size:.72rem;font-weight:700;padding:.22rem .65rem;border-radius:2rem;}
.s-on{background:#dcfce7;color:#15803d;}
.s-off{background:#fef9c3;color:#854d0e;}
.s-pt{background:#dbeafe;color:#1d4ed8;}
.freq{background:rgba(0,0,0,.05);color:var(--muted);font-size:.74rem;font-weight:600;padding:.18rem .55rem;border-radius:2rem;}
.pme-link{color:var(--g-600);text-decoration:none;font-weight:600;font-size:.82rem;}
.pme-link:hover{text-decoration:underline;}
.hl-row{background:#fefce8!important;}
.info-bar{background:var(--g-50);border:1px solid var(--g-200);border-radius:1rem;padding:.85rem 1.2rem;font-size:.83rem;color:var(--g-800);}

/* ── PAGINATION ── */
.pagination-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
    padding: .85rem 1.1rem;
    background: var(--sand);
    border: 1px solid var(--stone);
    border-radius: 1rem;
}
.pg-info {
    font-size: .8rem;
    color: var(--muted);
    font-weight: 600;
}
.pg-controls {
    display: flex;
    align-items: center;
    gap: .35rem;
}
.pg-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 .5rem;
    border: 1.5px solid var(--stone);
    border-radius: .6rem;
    background: #fff;
    color: var(--body);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pg-btn:hover:not(:disabled):not(.active) {
    border-color: var(--g-600);
    color: var(--g-600);
    background: var(--g-50);
}
.pg-btn.active {
    background: var(--g-600);
    border-color: var(--g-600);
    color: #fff;
    cursor: default;
}
.pg-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}
.pg-btn-nav {
    gap: .3rem;
    padding: 0 .85rem;
    font-size: .8rem;
}
.pg-btn-nav i { font-size: .8rem; }
.pg-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 34px;
    color: var(--muted);
    font-size: .85rem;
    letter-spacing: .05em;
    user-select: none;
}

/* ── EMPTY ── */
        .empty-t { text-align: center; padding: 3rem 1rem; color: var(--muted); }
        .empty-t i { font-size: 2.5rem; opacity: .25; display: block; margin-bottom: .75rem; }
 
        /* ── RESPONSIVE ── */
        @media (max-width: 767px) {
            .ctrl-bar .d-flex { flex-wrap: wrap; gap: .4rem; }
            .srch { width: 100%; }
            .pagination-bar { flex-direction: column; align-items: flex-start; }
            table.t { font-size: .78rem; }
            table.t thead th, table.t td { padding: .65rem .75rem; }
        }



/* STYLES DU MODAL LOGIN */

/* ── Dialog size ── */
.login-dialog {
    max-width: 860px;
    margin: 1rem auto;
}
 
/* ── Contenu : flex 2 colonnes ── */
.login-content {
    display: flex;
    flex-direction: row;
    border: none;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.22);
    min-height: 560px;
}
 
/* ══ PANNEAU GAUCHE (décor) ══ */
.login-deco {
    width: 42%;
    flex-shrink: 0;
    background: var(--g-900, #052e16);
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
}
 
/* Bruit de texture */
.deco-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: .5;
}
 
/* Cercles décoratifs */
.deco-circles { position: absolute; inset: 0; pointer-events: none; }
.dc {
    position: absolute;
    border-radius: 50%;
    opacity: .07;
}
.dc1 {
    width: 300px; height: 300px;
    background: var(--g-600, #1a7a4a);
    top: -80px; right: -80px;
}
.dc2 {
    width: 200px; height: 200px;
    background: var(--lime, #84cc16);
    bottom: -60px; left: -60px;
}
.dc3 {
    width: 120px; height: 120px;
    background: #fff;
    bottom: 60px; right: 20px;
}
 
/* Corps déco */
.deco-body { position: relative; z-index: 1; }
 
.deco-logo {
    width: 52px; height: 52px;
    background: var(--g-600, #1a7a4a);
    border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
 
.deco-title {
    font-family: 'Fraunces', serif;
    font-size: 1.85rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: .85rem;
}
.deco-title em {
    color: var(--lime, #84cc16);
    font-style: italic;
}
 
.deco-sub {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
 
.deco-pills {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.deco-pills span {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.75);
    font-size: .78rem; font-weight: 600;
    padding: .4rem .85rem;
    border-radius: 2rem;
    width: fit-content;
}
.deco-pills span i { color: var(--lime, #84cc16); }
 
/* ══ PANNEAU DROIT (formulaire) ══ */
.login-form-pane {
    flex: 1;
    padding: 2.5rem 2.25rem 2rem;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}
 
/* Bouton fermer */
.login-close {
    position: absolute; top: 1.1rem; right: 1.1rem;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: none;
    background: #f4f4f5;
    color: #71717a;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; cursor: pointer;
    transition: background .18s, color .18s;
}
.login-close:hover { background: #e4e4e7; color: #18181b; }
 
/* En-tête formulaire */
.login-header { margin-bottom: 1.5rem; }
 
.login-avatar {
    width: 48px; height: 48px;
    border-radius: 1rem;
    background: var(--g-50, #f0fdf4);
    border: 1.5px solid var(--g-200, #bbf7d0);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--g-600, #1a7a4a);
    margin-bottom: 1rem;
}
 
.login-title {
    font-family: 'Fraunces', serif;
    font-size: 1.55rem; font-weight: 900;
    color: var(--ink, #18181b);
    letter-spacing: -.03em;
    margin: 0 0 .3rem;
}
 
.login-subtitle {
    color: var(--muted, #71717a);
    font-size: .85rem;
    margin: 0;
}
 
/* Tabs */
.login-tabs {
    display: flex;
    gap: .3rem;
    background: #f4f4f5;
    border-radius: .85rem;
    padding: .25rem;
    margin-bottom: 1.5rem;
}
.ltab {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .5rem;
    border: none; border-radius: .65rem;
    background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .82rem; font-weight: 600;
    color: var(--muted, #71717a);
    cursor: pointer;
    transition: background .18s, color .18s, box-shadow .18s;
}
.ltab:hover { color: var(--ink, #18181b); }
.ltab.active {
    background: #fff;
    color: var(--g-600, #1a7a4a);
    box-shadow: 0 1px 6px rgba(0,0,0,.1);
}
 
/* Groupes de champs */
.lf-group {
    margin-bottom: 1.1rem;
}
 
.lf-label {
    display: block;
    font-size: .8rem; font-weight: 700;
    color: var(--body, #3f3f46);
    margin-bottom: .4rem;
}
 
.lf-input-wrap {
    position: relative;
    display: flex; align-items: center;
}
 
.lf-icon {
    position: absolute; left: .9rem;
    color: var(--muted, #71717a);
    font-size: .95rem;
    pointer-events: none;
    transition: color .2s;
}
 
.lf-input {
    width: 100%;
    border: 1.5px solid #e4e4e7;
    border-radius: .85rem;
    padding: .72rem 2.75rem .72rem 2.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .9rem;
    color: var(--ink, #18181b);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.lf-input::placeholder { color: #a1a1aa; }
.lf-input:focus {
    border-color: var(--g-600, #1a7a4a);
    box-shadow: 0 0 0 3px rgba(26,122,74,.1);
}
.lf-input:focus ~ .lf-icon,
.lf-input-wrap:focus-within .lf-icon { color: var(--g-600, #1a7a4a); }
.lf-input.is-invalid { border-color: #ef4444; }
.lf-input.is-invalid:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
 
/* Bouton œil */
.lf-eye {
    position: absolute; right: .85rem;
    background: none; border: none;
    color: var(--muted, #71717a);
    font-size: .95rem; cursor: pointer;
    padding: .2rem;
    transition: color .18s;
}
.lf-eye:hover { color: var(--g-600, #1a7a4a); }
 
/* Erreur champ */
.lf-error {
    font-size: .76rem; color: #ef4444;
    margin-top: .3rem;
    min-height: 1rem;
}
 
/* Remember + Forgot */
.lf-row-between {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: 1.25rem;
}
 
.lf-remember {
    display: flex; align-items: center; gap: .45rem;
    cursor: pointer;
    font-size: .82rem; color: var(--body, #3f3f46);
}
.lf-remember input[type="checkbox"] {
    width: 15px; height: 15px;
    accent-color: var(--g-600, #1a7a4a);
    cursor: pointer;
}
 
.lf-forgot {
    font-size: .82rem;
    color: var(--g-600, #1a7a4a);
    font-weight: 600;
    text-decoration: none;
    background: none; border: none; cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 0;
    transition: color .18s;
}
.lf-forgot:hover { color: var(--g-800, #0e5233); text-decoration: underline; }
 
/* Alerte erreur globale */
.lf-alert {
    display: flex; align-items: center; gap: .5rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: .75rem;
    padding: .7rem 1rem;
    font-size: .83rem; color: #b91c1c;
    margin-bottom: 1rem;
}
.lf-alert i { flex-shrink: 0; }
 
/* Bouton soumettre */
.lf-submit {
    width: 100%;
    background: var(--g-600, #1a7a4a);
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: .85rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .95rem; font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .15s, box-shadow .2s;
    margin-bottom: 1.5rem;
}
.lf-submit:hover {
    background: var(--g-800, #0e5233);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,122,74,.3);
}
.lf-submit:active { transform: translateY(0); }
.lf-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
 
/* Pied du modal */
.login-footer {
    text-align: center;
    border-top: 1px solid #f4f4f5;
    padding-top: 1.25rem;
}
.login-footer p {
    font-size: .83rem;
    color: var(--muted, #71717a);
    margin: 0 0 .5rem;
}
.login-footer p:last-child { margin: 0; }
 
.lf-link {
    background: none; border: none; padding: 0;
    color: var(--g-600, #1a7a4a);
    font-weight: 700; font-size: .83rem;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color .18s;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.lf-link:hover { color: var(--g-800, #0e5233); }
 
.lf-secure {
    display: flex; align-items: center; justify-content: center; gap: .35rem;
    font-size: .74rem !important;
    color: #a1a1aa !important;
}
.lf-secure i { font-size: .75rem; }
 
/* ── Responsive : colonne unique sous 768px ── */
@media (max-width: 767px) {
    .login-dialog { max-width: 95vw; }
    .login-content { flex-direction: column; min-height: auto; border-radius: 1.25rem; }
    .login-deco {
        width: 100%;
        padding: 1.75rem 1.5rem;
        min-height: 0;
    }
    .deco-body { display: flex; flex-direction: column; }
    .deco-title { font-size: 1.4rem; }
    .deco-pills { flex-direction: row; flex-wrap: wrap; }
    .dc1 { width: 180px; height: 180px; top:-50px; right:-50px; }
    .dc2 { width: 120px; height: 120px; bottom:-40px; left:-40px; }
    .dc3 { display: none; }
    .login-form-pane { padding: 2rem 1.5rem 1.75rem; }
}
 
/* Animation d'ouverture */
#modalLogin .modal-dialog {
    transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .25s;
}
#modalLogin.show .modal-dialog { transform: translateY(0); opacity: 1; }


/* CONTACT */
/* HERO */
.page-hero{background:var(--g-900);padding:4rem 0 3.5rem;position:relative;overflow:hidden;}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 70% 50%,rgba(26,122,74,.35),transparent);}
.eyebrow{display:inline-flex;align-items:center;gap:.4rem;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--lime);margin-bottom:.75rem;}
.eyebrow::before{content:'';display:inline-block;width:18px;height:2px;background:var(--lime);border-radius:1px;}
.hero-h1{font-size:clamp(2rem,4vw,3.2rem);font-weight:900;color:#fff;letter-spacing:-.03em;line-height:1.1;margin-bottom:.75rem;}
.hero-h1 em{color:var(--lime);font-style:italic;}
.hero-sub{color:rgba(255,255,255,.65);font-size:.95rem;max-width:480px;line-height:1.7;margin:0;}
.bc a{color:rgba(255,255,255,.45);text-decoration:none;font-size:.8rem;}
.bc span{color:rgba(255,255,255,.25);font-size:.8rem;margin:0 .4rem;}

/* CANAUX RAPIDES */
.channels{background:var(--g-600);padding:2rem 0;}
.ch-card{display:flex;align-items:center;gap:1rem;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:1.25rem;padding:1.25rem 1.5rem;text-decoration:none;transition:.2s;color:#fff;}
.ch-card:hover{background:rgba(255,255,255,.14);transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.2);color:#fff;}
.ch-icon{width:46px;height:46px;border-radius:.85rem;background:rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;font-size:1.3rem;flex-shrink:0;}
.ch-label{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;opacity:.6;margin-bottom:.1rem;}
.ch-val{font-weight:700;font-size:.9rem;}
.ch-badge{display:inline-block;background:var(--lime);color:var(--ink);font-size:.62rem;font-weight:800;padding:.1rem .5rem;border-radius:2rem;margin-left:.4rem;vertical-align:middle;}

/* SECTION PRINCIPALE */
.contact-main{padding:5rem 0;}

/* CARTE D'INFO */
.info-card{background:var(--g-900);border-radius:var(--rxl);padding:2.5rem;height:100%;display:flex;flex-direction:column;gap:0;position:relative;overflow:hidden;}
.info-card::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 80% 20%,rgba(26,122,74,.3),transparent);}
.info-card-body{position:relative;z-index:1;}
.info-card h3{font-family:'Fraunces',serif;font-size:1.5rem;font-weight:900;color:#fff;margin-bottom:.5rem;}
.info-card p{color:rgba(255,255,255,.55);font-size:.87rem;line-height:1.7;margin-bottom:2rem;}

.info-item{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.5rem;}
.ii-icon{width:40px;height:40px;border-radius:.75rem;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;font-size:1rem;color:var(--lime);flex-shrink:0;}
.ii-lbl{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:rgba(255,255,255,.45);margin-bottom:.15rem;}
.ii-val{font-weight:600;font-size:.88rem;color:#fff;}
.ii-val a{color:rgba(255,255,255,.8);text-decoration:none;}
.ii-val a:hover{color:var(--lime);}

.hours-grid{display:grid;grid-template-columns:1fr 1fr;gap:.4rem;margin-top:.75rem;}
.hg-item{background:rgba(255,255,255,.06);border-radius:.6rem;padding:.5rem .75rem;}
.hg-day{font-size:.7rem;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:.05em;}
.hg-time{font-size:.82rem;font-weight:600;color:#fff;margin-top:.1rem;}
.hg-item.closed .hg-time{color:rgba(255,255,255,.3);}

.social-row{display:flex;gap:.5rem;margin-top:2rem;}
.soc-btn{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.6);text-decoration:none;font-size:1rem;transition:.18s;}
.soc-btn:hover{background:var(--g-600);border-color:var(--g-600);color:#fff;}

/* MAP */
.map-card{border-radius:var(--rxl);overflow:hidden;box-shadow:0 8px 32px rgba(0,0,0,.1);border:1px solid var(--stone);margin-top:1.5rem;}
#contactMap{height:220px;width:100%;}

/* FORMULAIRE */
.form-card{background:var(--sand);border-radius:var(--rxl);padding:2.5rem;}
.form-card h3{font-family:'Fraunces',serif;font-size:1.5rem;font-weight:900;color:var(--ink);margin-bottom:.4rem;}
.form-card .sub{font-size:.85rem;color:var(--muted);margin-bottom:2rem;}

.cf-label{font-size:.8rem;font-weight:700;color:var(--body);margin-bottom:.4rem;display:block;}
.cf-input,.cf-select,.cf-textarea{width:100%;border:1.5px solid #e4e4e7;border-radius:.85rem;padding:.72rem 1rem;font-family:'Plus Jakarta Sans',sans-serif;font-size:.9rem;color:var(--ink);background:#fff;transition:border-color .2s,box-shadow .2s;outline:none;}
.cf-input::placeholder,.cf-textarea::placeholder{color:#a1a1aa;}
.cf-input:focus,.cf-select:focus,.cf-textarea:focus{border-color:var(--g-600);box-shadow:0 0 0 3px rgba(26,122,74,.1);}
.cf-textarea{resize:vertical;min-height:130px;}
.cf-input.is-invalid,.cf-select.is-invalid,.cf-textarea.is-invalid{border-color:#ef4444;}

/* Champ téléphone dans le formulaire */
.cf-phone-wrap{display:flex;align-items:stretch;border:1.5px solid #e4e4e7;border-radius:.85rem;overflow:hidden;background:#fff;transition:border-color .2s,box-shadow .2s;}
.cf-phone-wrap:focus-within{border-color:var(--g-600);box-shadow:0 0 0 3px rgba(26,122,74,.1);}
.cf-phone-wrap.is-invalid{border-color:#ef4444;}
.cf-country-btn{display:flex;align-items:center;gap:.3rem;padding:0 .7rem;border-right:1.5px solid #e4e4e7;cursor:pointer;min-width:82px;flex-shrink:0;background:#fafafa;transition:background .15s;user-select:none;position:relative;}
.cf-country-btn:hover{background:var(--g-50);}
.cf-flag{font-size:1.1rem;}
.cf-dial{font-size:.82rem;font-weight:700;color:var(--ink);}
.cf-chev{font-size:.6rem;color:var(--muted);transition:transform .2s;}
.cf-chev.open{transform:rotate(180deg);}
.cf-phone-input{flex:1;border:none;background:transparent;padding:.72rem .85rem;font-family:'Plus Jakarta Sans',sans-serif;font-size:.9rem;color:var(--ink);outline:none;}

/* Dropdown (réutilise le style du modal) */
.cf-dropdown{position:absolute;top:calc(100% + 6px);left:0;width:320px;background:#fff;border:1.5px solid #e4e4e7;border-radius:1rem;box-shadow:0 12px 40px rgba(0,0,0,.13);z-index:2000;display:none;overflow:hidden;animation:ddFade .18s ease;}
.cf-dropdown.open{display:block;}
@keyframes ddFade{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
.cf-search-wrap{position:relative;padding:.6rem .7rem;border-bottom:1px solid #f4f4f5;}
.cf-search-icon{position:absolute;left:1.25rem;top:50%;transform:translateY(-50%);color:#a1a1aa;font-size:.78rem;pointer-events:none;}
.cf-search-input{width:100%;border:1.5px solid #e4e4e7;border-radius:.6rem;padding:.4rem .7rem .4rem 1.9rem;font-size:.82rem;font-family:'Plus Jakarta Sans',sans-serif;outline:none;}
.cf-search-input:focus{border-color:var(--g-600);}
.cf-country-list{max-height:210px;overflow-y:auto;padding:.25rem;}
.cf-country-list::-webkit-scrollbar{width:4px;}
.cf-country-list::-webkit-scrollbar-thumb{background:#e4e4e7;border-radius:2px;}
.cf-country-item{display:flex;align-items:center;gap:.55rem;padding:.5rem .7rem;border-radius:.6rem;cursor:pointer;font-size:.84rem;transition:background .15s;}
.cf-country-item:hover{background:var(--g-50);}
.cf-country-item.cf-selected{background:var(--g-50);}
.cf-ci-flag{font-size:1.05rem;flex-shrink:0;}
.cf-ci-name{flex:1;color:var(--ink);font-weight:500;}
.cf-ci-code{color:var(--muted);font-size:.76rem;font-weight:700;}
.cf-separator{font-size:.67rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);padding:.35rem .7rem .15rem;}

.cf-error{font-size:.75rem;color:#ef4444;margin-top:.3rem;min-height:.9rem;}

/* Sujet chips */
.subject-chips{display:flex;gap:.4rem;flex-wrap:wrap;margin-bottom:1rem;}
.sch{display:inline-flex;align-items:center;gap:.3rem;padding:.35rem .85rem;border-radius:2rem;font-size:.78rem;font-weight:600;border:1.5px solid var(--stone);color:var(--body);background:#fff;cursor:pointer;transition:.18s;}
.sch:hover{border-color:var(--g-200);background:var(--g-50);color:var(--g-800);}
.sch.active{background:var(--g-600);border-color:var(--g-600);color:#fff;}

/* Bouton submit */
.cf-submit{width:100%;background:var(--g-600);color:#fff;border:none;border-radius:2rem;padding:.85rem;font-family:'Plus Jakarta Sans',sans-serif;font-size:.95rem;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:.5rem;transition:background .2s,transform .15s,box-shadow .2s;margin-top:.5rem;}
.cf-submit:hover{background:var(--g-800);transform:translateY(-1px);box-shadow:0 6px 20px rgba(26,122,74,.3);}
.cf-submit:disabled{opacity:.7;cursor:not-allowed;transform:none;}

/* SUCCESS */
.cf-success{background:var(--g-50);border:1.5px solid var(--g-200);border-radius:1.25rem;padding:2rem;text-align:center;display:none;}
.cf-success.show{display:block;}
.cf-success-icon{width:60px;height:60px;border-radius:50%;background:var(--g-600);color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.6rem;margin:0 auto 1rem;}
.cf-success h4{font-family:'Fraunces',serif;color:var(--g-800);font-size:1.3rem;margin-bottom:.4rem;}
.cf-success p{color:var(--muted);font-size:.88rem;}

/* FAQ CTA */
.faq-cta{background:var(--ink);border-radius:var(--rxl);padding:3rem;text-align:center;margin-top:3rem;position:relative;overflow:hidden;}
.faq-cta::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 50% 50%,rgba(26,122,74,.35),transparent);}
.faq-cta h3{font-family:'Fraunces',serif;font-size:1.5rem;font-weight:900;color:#fff;position:relative;z-index:1;}
.faq-cta h3 em{color:var(--lime);font-style:italic;}
.faq-cta p{color:rgba(255,255,255,.6);font-size:.88rem;position:relative;z-index:1;margin-bottom:1.5rem;}
.faq-pill{display:inline-flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);color:#fff;padding:.6rem 1.2rem;border-radius:3rem;font-size:.85rem;font-weight:600;text-decoration:none;transition:background .2s;position:relative;z-index:1;}
.faq-pill:hover{background:rgba(255,255,255,.18);color:#fff;}
.faq-pill i{color:var(--lime);}
.btn-lime-sm{display:inline-flex;align-items:center;gap:.45rem;background:var(--lime);color:var(--ink);padding:.65rem 1.6rem;border-radius:3rem;font-weight:700;font-size:.87rem;text-decoration:none;transition:transform .15s,box-shadow .15s;position:relative;z-index:1;}
.btn-lime-sm:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(132,204,22,.35);color:var(--ink);}

/* FOOTER */
.footer-mini{background:var(--g-900);padding:2rem 0;margin-top:3rem;}
.footer-mini p,.footer-mini a{color:rgba(255,255,255,.3);font-size:.8rem;margin:0;text-decoration:none;}
.footer-mini a:hover{color:var(--lime);}

@media(max-width:991px){.contact-main .row>div:first-child{margin-bottom:2rem;}}
@media(max-width:767px){.ch-card{padding:1rem 1.1rem;}.channels .row{gap:.75rem;}.faq-cta{padding:2rem 1.5rem;}}


/* MEGA MENU */
/* ═══════════════════════════════════════════════
   MEGA MENU — KAKOULIMA
   À inclure dans landing-page.css (ou @yield css)
═══════════════════════════════════════════════ */

/* ── Trigger "Services" dans la navbar ── */
.nav-item.has-mega {
    position: static; /* nécessaire pour que le mega prenne toute la largeur du nav */
}

.nav-link.mega-trigger {
    display: flex;
    align-items: center;
    gap: .3rem;
    cursor: pointer;
    user-select: none;
}

.mega-trigger .mega-chevron {
    font-size: .72rem;
    transition: transform .25s ease;
    display: inline-block;
}

.nav-item.has-mega:hover .mega-chevron,
.nav-item.has-mega.open   .mega-chevron {
    transform: rotate(180deg);
}

/* ── Mega menu panel ── */
.mega-panel {
    position: fixed;
    top: 61px;           /* hauteur de la navbar */
    left: 0;
    right: 0;
    z-index: 1049;
    background: #fff;
    border-top: 2px solid var(--g-200);
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    padding: 2.25rem 0 2.5rem;

    /* Animation */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}

.nav-item.has-mega:hover .mega-panel,
.nav-item.has-mega.open   .mega-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ── Backdrop derrière le mega ── */
.mega-backdrop {
    position: fixed;
    inset: 61px 0 0 0;
    background: rgba(5, 46, 22, .35);
    backdrop-filter: blur(2px);
    z-index: 1048;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.nav-item.has-mega:hover ~ .mega-backdrop,
body.mega-open .mega-backdrop {
    opacity: 1;
    pointer-events: auto;
}

/* ── En-tête du mega ── */
.mega-header {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: .75rem;
}

.mega-header-title {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
}

.mega-header-sub {
    font-size: .78rem;
    color: var(--muted);
}

/* ── Grille de cards ── */
.mega-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .85rem;
}

/* ── Card service ── */
.mega-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
    padding: 1.1rem 1rem 1rem;
    border: 1.5px solid var(--stone);
    border-radius: 1.1rem;
    text-decoration: none;
    color: var(--body);
    background: #fff;
    transition: border-color .18s, box-shadow .18s, transform .18s, background .18s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mega-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--g-50);
    opacity: 0;
    transition: opacity .18s;
}

.mega-card:hover {
    border-color: var(--g-400);
    box-shadow: 0 8px 24px rgba(26,122,74,.12);
    transform: translateY(-3px);
    color: var(--ink);
    text-decoration: none;
}

.mega-card:hover::before { opacity: 1; }

.mega-card-icon {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform .2s;
}

.mega-card:hover .mega-card-icon { transform: scale(1.08); }

.mega-card-body { position: relative; flex: 1; min-width: 0; }

.mega-card-title {
    font-size: .86rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .2rem;
    line-height: 1.2;
}

.mega-card-desc {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
}

.mega-card-arrow {
    position: relative;
    font-size: .72rem;
    color: var(--g-600);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-top: auto;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .18s, transform .18s;
}

.mega-card:hover .mega-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Couleurs par service */
.mc-green  { background: var(--g-50);  color: var(--g-600); }
.mc-blue   { background: #eff6ff;      color: #2563eb; }
.mc-red    { background: #fef2f2;      color: #dc2626; }
.mc-slate  { background: #f1f5f9;      color: #475569; }
.mc-amber  { background: #fffbeb;      color: #b45309; }
.mc-violet { background: #f5f3ff;      color: #7c3aed; }

/* ── Pied du mega ── */
.mega-footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--stone);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}

.mega-footer-note {
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.mega-footer-note i { color: var(--g-600); }

.mega-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--g-600);
    text-decoration: none;
    padding: .38rem .9rem;
    border: 1.5px solid var(--g-200);
    border-radius: 2rem;
    background: var(--g-50);
    transition: background .15s, border-color .15s;
}

.mega-footer-cta:hover {
    background: var(--g-600);
    border-color: var(--g-600);
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1199px) { .mega-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  {
    .mega-panel { padding: 1.25rem 0 1.5rem; top: 56px; }
    .mega-grid  { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
    .mega-card  { padding: .85rem .8rem .8rem; }
}

/* ═══════════════════════════════════════════════
   PAGES DÉDIÉES — structure commune
═══════════════════════════════════════════════ */

/* Hero service */
.svc-hero {
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 75% 50%, rgba(255,255,255,.08), transparent);
}

.svc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .65rem;
    opacity: .85;
}

.svc-eyebrow::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

.svc-h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin-bottom: .75rem;
}

.svc-lead {
    font-size: .95rem;
    line-height: 1.75;
    max-width: 520px;
    opacity: .78;
    margin-bottom: 1.5rem;
}

.svc-tags {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.svc-tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .74rem;
    font-weight: 600;
    padding: .28rem .8rem;
    border-radius: 2rem;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    color: inherit;
}

/* Étapes */
.steps-section {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.step-card {
    background: #fff;
    border: 1.5px solid var(--stone);
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: box-shadow .18s, transform .18s;
}

.step-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    transform: translateY(-3px);
}

.step-num {
    position: absolute;
    top: -14px;
    left: 1.25rem;
    width: 28px;
    height: 28px;
    background: var(--g-600);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(26,122,74,.3);
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: .92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .4rem;
}

.step-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* CTA section */
.svc-cta-section {
    background: var(--g-900);
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.svc-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(52,168,104,.2), transparent);
}

.svc-cta-section h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: .6rem;
    position: relative;
}

.svc-cta-section p {
    color: rgba(255,255,255,.65);
    font-size: .92rem;
    margin-bottom: 1.75rem;
    position: relative;
}

.btn-svc-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 2rem;
    font-size: .92rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: filter .18s, transform .15s;
    position: relative;
}

.btn-svc-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

/* FAQ mini */
.faq-mini { margin-top: 2.5rem; }

.faq-mini-item {
    border-bottom: 1px solid var(--stone);
    padding: 1rem 0;
}

.faq-mini-q {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 1rem;
    user-select: none;
}

.faq-mini-q i { color: var(--g-600); font-size: .9rem; transition: transform .2s; flex-shrink: 0; }
.faq-mini-item.open .faq-mini-q i { transform: rotate(45deg); }

.faq-mini-a {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease, padding .2s;
    padding-top: 0;
}

.faq-mini-item.open .faq-mini-a {
    max-height: 200px;
    padding-top: .6rem;
}

/* Section avantages */
.avantages-section {
    padding: 4rem 0;
    background: var(--sand);
}

.av-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.av-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: #fff;
    border: 1px solid var(--stone);
    border-radius: 1rem;
    padding: 1.1rem 1rem;
}

.av-icon {
    width: 38px;
    height: 38px;
    border-radius: .65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.av-text strong {
    display: block;
    font-size: .84rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .15rem;
}

.av-text span {
    font-size: .76rem;
    color: var(--muted);
    line-height: 1.45;
}

/* Section titre */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--g-600);
    margin-bottom: .5rem;
}

.section-tag::before {
    content: '';
    width: 14px;
    height: 2px;
    background: var(--g-600);
    border-radius: 1px;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.025em;
    margin-bottom: .5rem;
}

.section-sub {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 520px;
}


/* ═══════════════════════════════════════════════════════
   BOTTOM NAV MOBILE — KAKOULIMA  (version corrigée)
   Fix : drawer invisible sur desktop, active state, FABs
═══════════════════════════════════════════════════════ */

/* ── Masquer navbar collapse + toggler Bootstrap sur mobile ── */
@media (max-width: 991.98px) {
    .kk-nav .navbar-collapse,
    .kk-nav .navbar-toggler {
        display: none !important;
    }
    body {
        padding-bottom: 72px;
    }
    /* Les FABs sont remplacés par la bottom nav sur mobile */
    .fab-stack {
        display: none !important;
    }
}

/* ── Drawer : TOUJOURS caché par défaut sur TOUS les écrans ── */
.bn-drawer {
    position: fixed;
    bottom: 64px;
    left: 0;
    right: 0;
    z-index: 1999;
    background: #fff;
    border-radius: 1.5rem 1.5rem 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, .15);
    padding: 0 0 1rem;
    /* Fermé par défaut — translateY(100%) le cache complètement */
    transform: translateY(110%);
    transition: transform .3s cubic-bezier(.32, .72, 0, 1);
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* CRITIQUE : caché sur desktop, visible seulement sur mobile via media query */
    display: none;
}

/* Afficher le drawer uniquement sur mobile */
@media (max-width: 991.98px) {
    .bn-drawer {
        display: block;
    }
}

/* État ouvert */
.bn-drawer.open {
    transform: translateY(0);
}

/* ── Overlay : caché sur desktop ── */
.bn-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 46, 22, .4);
    backdrop-filter: blur(2px);
    z-index: 1998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}

@media (max-width: 991.98px) {
    .bn-overlay {
        display: block;
    }
}

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

/* ── Bottom nav bar : cachée sur desktop ── */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #fff;
    border-top: 1px solid var(--stone);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .10);
    height: 64px;
    padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 991.98px) {
    .bottom-nav {
        display: flex;
    }
}

/* ── Items ── */
.bn-items {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--muted);
    text-decoration: none;
    position: relative;
    transition: color .18s;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/* Ripple au tap */
.bn-item::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: .85rem;
    background: var(--g-50);
    opacity: 0;
    transform: scale(.7);
    transition: opacity .18s, transform .18s;
    pointer-events: none;
}

.bn-item:active::after {
    opacity: 1;
    transform: scale(1);
}

/* ── Icône ── */
.bn-icon-wrap {
    position: relative;
    width: 32px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.bn-icon-wrap i {
    font-size: 1.3rem;
    transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
}

/* Pill indicateur actif */
.bn-pill {
    position: absolute;
    inset: -3px -10px;
    background: var(--g-50);
    border-radius: 2rem;
    opacity: 0;
    transform: scaleX(.6);
    transition: opacity .2s, transform .2s cubic-bezier(.34, 1.56, .64, 1);
}

/* ── Label ── */
.bn-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .01em;
    z-index: 1;
    transition: color .18s;
    white-space: nowrap;
}

/* ── État actif ── */
.bn-item.active {
    color: var(--g-600);
}

.bn-item.active .bn-pill {
    opacity: 1;
    transform: scaleX(1);
}

.bn-item.active .bn-icon-wrap i {
    transform: translateY(-2px) scale(1.1);
}

/* ── Bouton central Services (surélevé) ── */
.bn-item.bn-center {
    position: relative;
}

.bn-center-btn {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--g-600);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 16px rgba(26, 122, 74, .4);
    border: 3px solid #fff;
    transition: background .18s, transform .18s, box-shadow .18s;
    z-index: 2;
    pointer-events: none; /* le clic est capté par le .bn-item parent */
}

.bn-item.bn-center.active .bn-center-btn {
    background: var(--g-800);
    box-shadow: 0 2px 8px rgba(26, 122, 74, .3);
}

.bn-item.bn-center:active .bn-center-btn {
    transform: translateX(-50%) scale(.92);
}

.bn-item.bn-center .bn-label {
    margin-top: 22px;
}

/* ── Badge notification ── */
.bn-badge {
    position: absolute;
    top: -2px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    background: #ef4444;
    color: #fff;
    font-size: .55rem;
    font-weight: 800;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border: 1.5px solid #fff;
    line-height: 1;
    z-index: 3;
}

/* ── Handle drawer ── */
.bn-drawer-handle {
    display: flex;
    justify-content: center;
    padding: .85rem 0 .5rem;
    cursor: grab;
}

.bn-drawer-handle-bar {
    width: 36px;
    height: 4px;
    background: var(--stone);
    border-radius: 2px;
}

/* ── Titre drawer ── */
.bn-drawer-title {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    padding: 0 1.25rem .85rem;
    border-bottom: 1px solid var(--stone);
    margin-bottom: .5rem;
}

/* ── Grille services dans le drawer ── */
.bn-svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    padding: .75rem 1rem;
}

.bn-svc-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem .9rem;
    border: 1.5px solid var(--stone);
    border-radius: 1rem;
    text-decoration: none;
    color: var(--body);
    background: #fff;
    transition: border-color .15s, background .15s;
    -webkit-tap-highlight-color: transparent;
}

.bn-svc-item:active,
.bn-svc-item:hover {
    border-color: var(--g-400);
    background: var(--g-50);
    color: var(--ink);
    text-decoration: none;
}

.bn-svc-icon {
    width: 36px;
    height: 36px;
    border-radius: .65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.bn-svc-text strong {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.bn-svc-text span {
    font-size: .68rem;
    color: var(--muted);
}

/* ── Ajustement ctrl-bar sticky sur mobile (pas de navbar) ── */
@media (max-width: 991.98px) {
    .ctrl-bar {
        top: 0 !important;
    }
}


/* ═══════════════════════════════════════════════════════
   FABs — 3 boutons (Incident + S'abonner + Payer)
   Visibles uniquement sur desktop (≥ 992px)
═══════════════════════════════════════════════════════ */

.fab-stack {
    position: fixed;
    bottom: 5.5rem;
    right: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    z-index: 990;
}

/* Caché sur mobile (remplacé par bottom nav) */
@media (max-width: 991.98px) {
    .fab-stack {
        display: none !important;
    }
}

.fab {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.1rem;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: .78rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    transition: transform .18s, box-shadow .18s;
    white-space: nowrap;
    text-decoration: none;
}

.fab:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
}

.fab-green  { background: var(--g-600); color: #fff; }
.fab-green:hover  { color: #fff; }

.fab-lime   { background: var(--lime); color: var(--ink); }
.fab-lime:hover   { color: var(--ink); }

.fab-violet { background: #7c3aed; color: #fff; }
.fab-violet:hover { color: #fff; }