/* <style id="<?= $ville; ?>-v10"> */
/* ═══ TOKENS ═══ */
:root {
    --G: #86bd4a;
    --GD: #5a9930;
    --GL: #d4f09b;
    --G06: rgba(134, 189, 74, 0.06);
    --G12: rgba(134, 189, 74, 0.12);
    --G25: rgba(134, 189, 74, 0.25);
    --Ink: #0a0a0a;
    --Night: #0d1f0f;
    --White: #fff;
    --Dim: #f4f4f2;
    --Muted: #706f6a;
    --MutedD: rgba(255, 255, 255, 0.48);
    --Border: rgba(0, 0, 0, 0.08);
    --BorderD: rgba(255, 255, 255, 0.07);
    --F: "DM Sans", sans-serif;
    --FD: "Unbounded", sans-serif;
    --Ez: cubic-bezier(0.22, 1, 0.36, 1);
    --Ez2: cubic-bezier(0.16, 1, 0.3, 1);
    --grad-g: linear-gradient(135deg, #86bd4a 0%, #d4f09b 100%);
    --grad-gd: linear-gradient(135deg, #5a9930 0%, #86bd4a 100%);
    --grad-dark: linear-gradient(160deg, #0a0a0a 0%, #0d1f0f 100%);
    --grad-card: linear-gradient(135deg, rgba(134, 189, 74, 0.06) 0%, rgba(134, 189, 74, 0.02) 100%);
}

.p10* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.p10 {
    font-family: var(--F);
    font-size: 16px;
    line-height: 1.75;
    color: var(--Ink);
    overflow-x: hidden;
}

.pw {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
}

.pw--sm {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 48px;
}

.psec {
    padding: 100px 0;
}

/* ═══ GRADIENT TEXT ═══ */
.tg {
    background: var(--grad-g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tgd {
    background: var(--grad-gd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══ SCROLL PROGRESS ═══ */
#pp {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--grad-g);
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.05s linear;
    pointer-events: none;
}

/* ═══ REVEAL ═══ */
.rv {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.9s var(--Ez),
        transform 0.9s var(--Ez);
}

.rv.vis {
    opacity: 1;
    transform: none;
}

.rv.d1 {
    transition-delay: 0.1s;
}

.rv.d2 {
    transition-delay: 0.2s;
}

.rv.d3 {
    transition-delay: 0.3s;
}

.rv.d4 {
    transition-delay: 0.4s;
}

/* ═══ TYPOGRAPHY ═══ */
.p-label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--G);
    margin-bottom: 16px;
    display: block;
}

.p-h1 {
    font-family: var(--FD);
    font-size: clamp(3.5rem, 8.5vw, 7.8rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.p-h2 {
    font-family: var(--FD);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.p-h3 {
    font-family: var(--FD);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.p-lead {
    font-size: clamp(0.95rem, 1.4vw, 1.12rem);
    font-weight: 200;
    line-height: 1.9;
    color: var(--Muted);
}

.p-body {
    font-size: 0.93rem;
    font-weight: 300;
    line-height: 1.88;
    color: var(--Muted);
}

.p-body-d {
    color: var(--MutedD);
}

/* Buttons */
.pb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--F);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition:
        transform 0.25s var(--Ez),
        opacity 0.2s;
    border: none;
}

.pb:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.pb--g {
    background: var(--grad-gd);
    color: #fff;
    padding: 13px 24px;
    border-radius: 7px;
}

.pb--gl {
    background: var(--G06);
    color: var(--GD);
    padding: 13px 24px;
    border-radius: 7px;
    border: 1px solid var(--G12);
}

.pb--ghost {
    background: transparent;
    color: #fff;
    padding: 13px 24px;
    border-radius: 7px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.pb--w {
    background: #fff;
    color: var(--Ink);
    padding: 13px 24px;
    border-radius: 7px;
}

.pb--outline {
    background: transparent;
    color: var(--Ink);
    padding: 13px 24px;
    border-radius: 7px;
    border: 1.5px solid var(--Border);
}

.pb--link {
    color: var(--GD);
    font-size: 0.85rem;
    padding: 0;
    border-bottom: 1px solid rgba(90, 153, 48, 0.3);
}

.pb--link:hover {
    opacity: 1;
    border-color: var(--GD);
}

.pb--link-w {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pb--link-w:hover {
    opacity: 1;
    color: var(--G);
    border-color: var(--G);
}

.p-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.pbread {
    font-size: 0.74rem;
    color: #b0b0aa;
    margin-bottom: 44px;
}

.pbread a {
    color: #b0b0aa;
    text-decoration: none;
}

.pbread a:hover {
    color: var(--G);
}

/* ═══════════════════════════════════════
   URGENCY
    ═══════════════════════════════════════ */
.purge {
    background: var(--Ink);
    border-bottom: 1px solid rgba(134, 189, 74, 0.12);
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    padding: 11px;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.purge strong {
    color: var(--G);
}

.purge a {
    color: var(--G);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(134, 189, 74, 0.3);
}

/* ═══════════════════════════════════════
   HERO — Split + ghost Paris + gradient
    ═══════════════════════════════════════ */
.phero {
    display: grid;
    grid-template-columns: 45fr 55fr;
    /* height: 85svh; */
    background: var(--grad-dark);
    padding: 30px 0px 0px 48px;
    align-items: center;
}

.phero__left {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 70px 48px 52px;
    height: 100%;
    box-sizing: border-box;
}

.phero__ghost {
    position: absolute;
    font-family: var(--FD);
    font-size: clamp(9rem, 18vw, 16rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    line-height: 0.85;
    color: rgba(255, 255, 255, 0.035);
    bottom: -20px;
    left: -16px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.phero__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.phero__logo {
    font-family: var(--FD);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.06em;
}

.phero__body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 48px 0 36px;
}

.phero__eye {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phero__eye::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--G);
    flex-shrink: 0;
}

.phero__h1 {
    font-family: var(--FD);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 28px;
}

.phero__h1 span {
    display: block;
}

.phero__h1 em {
    font-style: normal;
    display: block;
    background: var(--grad-g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phero__sub {
    font-size: clamp(0.93rem, 1.2vw, 1.05rem);
    font-weight: 200;
    line-height: 1.88;
    color: rgba(255, 255, 255, 0.5);
    max-width: 380px;
    margin-bottom: 32px;
}

.phero__sub strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.phero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.phero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 28px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.phero__stat strong {
    display: block;
    font-family: var(--FD);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.phero__stat span {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Hero right: single photo */
.phero__right {
    position: relative;
    overflow: hidden;
    height: 100%;
    position: relative;
    z-index: 2;
}

.phero__photo {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.phero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.4s var(--Ez2);
    filter: brightness(0.88);
}

.phero__photo:hover img {
    transform: scale(1.05);
}

.phero__photo--main {
    height: 100%;
}

.phero__photo--main img {
    filter: brightness(0.82);
}

/* Gradient overlay: gauche sombre → droite transparent pour lisibilité du texte */
.phero__right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 31, 15, 0.92) 0%, rgba(13, 31, 15, 0.5) 40%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* ═══ TRUST + LOGOS ═══ */
.ptrust-bar {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(134, 189, 74, 0.1);
    position: relative;
    z-index: 2;
}

.ptrust-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.ptrust-it {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 22px;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}

.ptrust-it:last-child {
    border-right: none;
}

.ptrust-it strong {
    color: var(--G);
    font-weight: 600;
}

.plogostrip {
    background: var(--Ink);
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.p-logos-lbl {
    text-align: center;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.18);
    margin: 0 0 24px;
}

.p-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 44px;
    flex-wrap: wrap;
}

.p-logos img {
    height: 20px;
    width: auto;
    filter: grayscale(1) brightness(100) opacity(0.18);
    transition: filter 0.4s var(--Ez);
}

.p-logos img:hover {
    filter: grayscale(0) opacity(0.9);
}

/* ═══ TICKER ═══ */
.pticker {
    background: linear-gradient(90deg, var(--G), var(--GL));
    overflow: hidden;
    padding: 14px 0;
}

@keyframes tk {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.pticker-inner {
    display: inline-flex;
    animation: tk 32s linear infinite;
}

.pticker-t {
    display: inline-flex;
    align-items: center;
    padding: 0 28px;
    font-family: var(--FD);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.6);
    white-space: nowrap;
}

.pticker-t::after {
    content: "·";
    margin-left: 28px;
    color: rgba(10, 10, 10, 0.3);
}

/* ═══ MANIFESTE ═══ */
.pmanif {
    background: var(--White);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pmanif::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(134, 189, 74, 0.035) 100%);
    pointer-events: none;
}

.pmanif-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.pmanif-eye {
    font-size: 0.54rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--G);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pmanif-eye::before {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--G);
    flex-shrink: 0;
}

.pmanif-l {
    display: block;
    font-family: var(--FD);
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
    color: rgba(10, 10, 10, 0.12);
}

.pmanif-l.bold {
    color: var(--Ink);
    font-weight: 900;
}

.pmanif-l.accent {
    font-weight: 700;
    background: var(--grad-g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pmanif-sep {
    width: 40px;
    height: 2px;
    background: var(--grad-g);
    margin: 40px 0;
}

.pmanif-body {
    font-size: clamp(0.93rem, 1.3vw, 1.06rem);
    font-weight: 200;
    line-height: 2;
    color: var(--Muted);
    margin: 0 0 18px;
}

@media (max-width: 900px) {
    .pmanif-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pmanif-sep {
        margin: 32px 0;
    }
}

@media (max-width: 768px) {
    .pmanif {
        padding: 80px 0;
    }

    .pmanif-inner {
        padding: 0 24px;
    }
}

/* ═══════════════════════════════════════
   EVENT FILTER — Section principale SEO
    ═══════════════════════════════════════ */
.pfilter-sec {
    background: var(--Dim);
    padding: 100px 0;
}

.pfilter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}

.fpill {
    padding: 9px 20px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border: 1.5px solid var(--Border);
    background: var(--White);
    color: var(--Muted);
    transition: all 0.22s var(--Ez);
    font-family: var(--F);
}

.fpill:hover {
    border-color: var(--G);
    color: var(--GD);
}

.fpill.on {
    background: linear-gradient(135deg, var(--G), var(--GD));
    border-color: transparent;
    color: #fff;
}

.ecards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ecard {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    background: var(--Ink);
    transition:
        transform 0.4s var(--Ez),
        box-shadow 0.4s;
    aspect-ratio: 4/3;
}

.ecard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.ecard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 1.2s var(--Ez2),
        opacity 0.35s;
}

.ecard:hover img {
    transform: scale(1.07);
    opacity: 0.8;
}

.ecard__ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.15) 55%, transparent 100%);
}

.ecard__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.ecard__cat {
    display: block;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--G);
    margin-bottom: 5px;
}

.ecard__title {
    display: block;
    font-family: var(--FD);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 9px;
}

.ecard__arr {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.45);
    transition:
        color 0.25s,
        gap 0.25s;
}

.ecard:hover .ecard__arr {
    color: var(--G);
    gap: 9px;
}

.ecard[style*="display:none"] {
    display: none !important;
}

/* ═══════════════════════════════════════
   POUR QUI — Audiences & Secteurs
    ═══════════════════════════════════════ */
.pforwho {
    background: var(--White);
    padding: 100px 0;
}

.pforwho-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.paudience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 28px;
}

.paud-item {
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid var(--Border);
    background: var(--White);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.paud-item:hover {
    border-color: var(--G);
    box-shadow: 0 4px 20px var(--G06);
}

.paud-icon {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--G);
    display: block;
    margin-bottom: 4px;
}

.paud-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--Ink);
}

.paud-sub {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--Muted);
    margin-top: 2px;
}

/* Secteurs pill cloud */
.psectors-label {
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--G);
    margin-bottom: 20px;
    display: block;
}

.psectors-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.psec-pill {
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 400;
    border: 1px solid var(--Border);
    color: var(--Muted);
    transition: all 0.2s;
    cursor: default;
    background: var(--White);
}

.psec-pill:hover {
    border-color: var(--G);
    color: var(--GD);
    background: var(--G06);
}

.psec-pill.hl {
    border-color: var(--G12);
    color: var(--GD);
    background: var(--G06);
}

/* ═══════════════════════════════════════
   STORY BLOCKS — 3 formats
    ═══════════════════════════════════════ */
.psb {
    overflow: hidden;
    position: relative;
}

.psb__img {
    overflow: hidden;
    position: relative;
}

.psb__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.4s var(--Ez2);
}

.psb:hover .psb__img img {
    transform: scale(1.04);
}

.psb__panel {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.psb__deco {
    position: absolute;
    font-family: var(--FD);
    font-size: clamp(100px, 14vw, 180px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.07em;
    bottom: -14px;
    right: -8px;
    pointer-events: none;
    user-select: none;
}

.psb__deco--l {
    color: rgba(0, 0, 0, 0.04);
}

.psb__deco--d {
    color: rgba(255, 255, 255, 0.04);
}

.psb__n {
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--G);
}

.psb__cat {
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--Muted);
    margin-top: 2px;
}

.psb__cat-d {
    color: var(--MutedD);
}

.psb__hook {
    font-size: clamp(1.05rem, 1.8vw, 1.45rem);
    font-weight: 200;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.psb__hook-d {
    color: #fff;
}

.psb__hook-l {
    color: var(--Ink);
}

.psb__body {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.9;
}

.psb__fil {
    background: var(--G06);
    border-left: 2px solid var(--G);
    padding: 13px 17px;
    border-radius: 0 7px 7px 0;
}

.psb__fil-d {
    background: rgba(134, 189, 74, 0.07);
}

.psb__fil-lbl {
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--G);
    display: block;
    margin-bottom: 4px;
}

.psb__fil-txt {
    font-size: 0.83rem;
    font-weight: 300;
    line-height: 1.75;
}

/* Layouts */
.psb--1 {
    display: grid;
    grid-template-columns: 58fr 42fr;
    min-height: 86vh;
    background: var(--White);
}

.psb--1 .psb__img {
    min-height: 500px;
}

.psb--2 {
    display: grid;
    grid-template-columns: 42fr 58fr;
    min-height: 86vh;
    background: var(--Ink);
}

.psb--2 .psb__img {
    min-height: 500px;
    opacity: 0.8;
}

.psb--3 {
    display: grid;
    grid-template-columns: 55fr 45fr;
    min-height: 80vh;
    background: var(--Dim);
}

.psb--3 .psb__img {
    min-height: 440px;
}

/* ═══ STATS GÉANTS ═══ */
.pstats-sec {
    background: var(--White);
    border-top: 1px solid var(--Border);
    border-bottom: 1px solid var(--Border);
}

.pstats-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
}

.pstat-div {
    background: var(--Border);
    align-self: stretch;
}

.pstat-item {
    padding: 64px 52px;
    position: relative;
    overflow: hidden;
}

.pstat-bg {
    position: absolute;
    font-family: var(--FD);
    font-size: clamp(100px, 15vw, 120px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.07em;
    color: rgba(0, 0, 0, 0.028);
    bottom: -12px;
    right: -8px;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.pstat-label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--G);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.pstat-val {
    font-family: var(--FD);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    background: var(--grad-gd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.pstat-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--Muted);
    line-height: 1.72;
    max-width: 200px;
    position: relative;
    z-index: 1;
}

/* ═══ SEO GEO ANCHOR ═══ */
.pgeoblock {
    background: linear-gradient(to right, var(--G06), transparent);
    border-left: 2px solid var(--G);
    padding: 24px 28px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 28px;
}

.pgeoblock p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.9;
    color: #1a1a18;
}

/* ═══ PROCESS ═══ */
.pproc {
    background: var(--grad-dark);
    padding: 100px 0;
}

.pproc-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: start;
}

.pproc-sticky {
    position: sticky;
    top: 100px;
}

.ptl {
    display: flex;
    flex-direction: column;
    position: relative;
}

.ptl::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 19px;
    bottom: 19px;
    width: 1px;
    background: linear-gradient(to bottom, var(--G), rgba(134, 189, 74, 0.1));
}

.ptl-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 22px;
    padding-bottom: 40px;
    align-items: start;
}

.ptl-item:last-child {
    padding-bottom: 0;
}

.ptl-n {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--Ink);
    border: 1px solid var(--G);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--FD);
    font-size: 0.56rem;
    font-weight: 700;
    color: var(--G);
    z-index: 1;
    position: relative;
    flex-shrink: 0;
}

.ptl-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    padding-top: 7px;
}

.ptl-desc {
    font-size: 0.84rem;
    font-weight: 300;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.42);
}

/* ═══ TEAM ═══ */
.pteam {
    background: var(--White);
    padding: 100px 0;
}

.pteam-label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--G);
    margin-bottom: 16px;
    display: block;
}

.pteam-intro {
    font-family: var(--FD);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.pteam-sub {
    font-size: 0.93rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--Muted);
    max-width: 520px;
    margin-bottom: 0;
}

.pteam-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 52px;
}

.pteam-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: var(--Dim);
}

.pteam-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition:
        transform 1s var(--Ez2),
        filter 0.4s;
}

.pteam-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.pteam-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 14px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.82), transparent);
}

.pteam-card__name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
    display: block;
    margin-bottom: 2px;
}

.pteam-card__role {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--G);
}

.pteam-badge-main {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--Dim);
    border-radius: 12px;
    margin-top: 32px;
    border: 1px solid var(--Border);
}

.pteam-badge-main img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ptb-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--Ink);
    display: block;
    margin-bottom: 2px;
}

.ptb-role {
    font-size: 0.74rem;
    color: var(--G);
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.ptb-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--Muted);
    line-height: 1.7;
}

/* ═══ GOOGLE MAPS ═══ */
.pmap-sec {
    background: var(--Dim);
    padding: 80px 0;
}

.pmap-grid {
    display: grid;
    grid-template-columns: 3fr 5fr;
    gap: 48px;
    align-items: start;
}

.pmap-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--Border);
}

.pmap-frame iframe {
    display: block;
    width: 100%;
    border-radius: 16px;
}

.pmap-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pmap-item {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--Muted);
}

.pmap-ic {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--G06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ═══ GALERIE ═══ */
.pgal {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
    grid-template-rows: 320px 240px;
    gap: 6px;
    border-radius: 14px;
    overflow: hidden;
}

.pgal figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    background: var(--Ink);
}

.pgal figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--Ez2);
}

.pgal figure:hover img {
    transform: scale(1.07);
}

.pgal .gw-main {
    grid-row: span 2;
}

.pgal figcaption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.65) 0%, transparent 55%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.3s;
}

.pgal figure:hover figcaption {
    opacity: 1;
}

/* ═══ TABLES ═══ */
.ptable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--Border);
}

.ptable thead {
    background: var(--Ink);
    color: #fff;
}

.ptable th {
    padding: 12px 16px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
}

.ptable td {
    padding: 12px 16px;
    font-size: 0.86rem;
    font-weight: 300;
    background: var(--White);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.ptable tr:hover td {
    background: #fafaf8;
}

.pprice {
    font-weight: 600;
    color: var(--GD);
}

/* ═══ AVIS CAROUSEL ═══ */
.pcar-wrap {
    overflow: hidden;
}

.pcar {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 max(48px, calc((100vw - 1300px) / 2)) 20px;
    scroll-padding-left: max(48px, calc((100vw - 1300px) / 2));
}

.pcar::-webkit-scrollbar {
    display: none;
}

.pcar-nav {
    display: flex;
    gap: 8px;
    padding: 0 max(48px, calc((100vw - 1300px) / 2));
    margin-top: 14px;
}

.pcar-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--Border);
    background: transparent;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--Ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s,
        border-color 0.2s;
    font-family: var(--F);
}

.pcar-btn:hover {
    background: var(--G);
    border-color: var(--G);
    color: #fff;
}

.ppull {
    flex: 0 0 min(390px, calc(100vw - 96px));
    scroll-snap-align: start;
    background: var(--White);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--Border);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.3s;
}

.ppull:hover {
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.08);
}

.ppull__stars {
    color: #f5a623;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.ppull__text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.88;
    color: #2a2a28;
    font-style: italic;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ppull__author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--Border);
    margin-top: auto;
}

.ppull__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ppull__name {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--Ink);
}

.ppull__co {
    font-size: 0.7rem;
    color: #aaa;
    display: block;
    font-weight: 300;
    margin-top: 1px;
}

.p-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--White);
    border-radius: 40px;
    padding: 9px 20px;
    border: 1px solid var(--G12);
    font-size: 0.82rem;
    font-weight: 500;
    margin: 0 auto 36px;
}

.p-rating__stars {
    color: #f5a623;
    letter-spacing: 2px;
}

/* ═══ FAQ ═══ */
.pfaq-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--Border);
}

.pfaq {
    border-bottom: 1px solid var(--Border);
    background: var(--White);
}

.pfaq:last-child {
    border-bottom: none;
}

.pfaq-q {
    width: 100%;
    text-align: left;
    padding: 19px 24px;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    background: transparent;
    border: none;
    color: var(--Ink);
    font-family: var(--F);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: background 0.2s;
}

.pfaq-q:hover {
    background: var(--G06);
}

.pfaq-q::after {
    content: "+";
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--G);
    flex-shrink: 0;
    transition: transform 0.3s var(--Ez);
}

.pfaq.is-open .pfaq-q {
    background: var(--G06);
}

.pfaq.is-open .pfaq-q::after {
    transform: rotate(45deg);
}

.pfaq-a {
    display: none;
    padding: 0 24px 18px;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--Muted);
}

.pfaq.is-open .pfaq-a {
    display: block;
}

/* ═══ HUB INTERNE ═══ */
.phub-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
}

.phub-col-title {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--G);
    margin-bottom: 14px;
    display: block;
}

.phub {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phub-a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--White);
    border-radius: 6px;
    text-decoration: none;
    color: var(--Ink);
    font-size: 0.8rem;
    font-weight: 400;
    border: 1px solid var(--Border);
    transition:
        border-color 0.2s,
        color 0.2s;
}

.phub-a::before {
    content: "→";
    color: var(--G);
    font-size: 0.76rem;
    flex-shrink: 0;
}

.phub-a:hover {
    border-color: var(--G);
    color: var(--GD);
}

/* ═══ CTA FINALE ═══ */
.pcta {
    background: var(--grad-dark);
    padding: 112px 0;
    position: relative;
    overflow: hidden;
}

.pcta::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(134, 189, 74, 0.18) 0%, transparent 62%);
    bottom: -250px;
    right: -100px;
    pointer-events: none;
}

.pcta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
    opacity: 0.035;
    pointer-events: none;
}

.pcta-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pcta-eye {
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--G);
    margin-bottom: 18px;
    display: block;
}

.pcta-h2 {
    font-family: var(--FD);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 14px;
}

.pcta-sub {
    font-size: 0.95rem;
    font-weight: 200;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.46);
}

.pcta-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pb--dark {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.68);
    padding: 13px 24px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.pb--dark:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    opacity: 1;
}

.pcta-info {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.28);
    margin-top: 8px;
    line-height: 1.7;
}

.pcta-info a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.pcta-info a:hover {
    color: var(--G);
}

/* Floating CTA */
#pFl {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    transform: translateY(100px);
    opacity: 0;
    transition:
        transform 0.5s var(--Ez),
        opacity 0.5s var(--Ez);
    pointer-events: none;
}

#pFl.on {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

.pfl-b {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 20px;
    background: var(--grad-gd);
    color: #fff;
    border-radius: 40px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(90, 153, 48, 0.4);
}

.pfl-t {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    font-size: 0.78rem;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        border-color 0.2s,
        color 0.2s;
}

.pfl-t:hover {
    border-color: var(--G);
    color: var(--G);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
    .phero {
        grid-template-columns: 1fr;
        min-height: 100vh;
        position: relative;
    }

    .phero__right {
        position: absolute;
        inset: 0;
        z-index: 0;
        height: auto;
    }

    .phero__left {
        position: relative;
        z-index: 1;
        min-height: 100vh;
        position: relative;
        z-index: 4;
    }

    .psb--1,
    .psb--2,
    .psb--3 {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .psb--1 .psb__img,
    .psb--2 .psb__img,
    .psb--3 .psb__img {
        min-height: 55vw;
        order: -1;
    }

    .psb--2 {
        grid-template-columns: 1fr;
    }

    .pstats-grid {
        grid-template-columns: 1fr;
    }

    .pstat-div {
        display: none;
    }

    .pstat-item {
        border-bottom: 1px solid var(--Border);
    }

    .pteam-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pmap-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pgal {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 240px 240px;
    }

    .pgal .gw-main {
        grid-row: auto;
        grid-column: 1/-1;
    }

    .phub-cols {
        grid-template-columns: 1fr 1fr;
    }

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

    .pproc-sticky {
        position: static;
    }

    .pcta-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .pforwho-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

@media (max-width: 768px) {
    .pw,
    .pw--sm {
        padding: 0 24px;
    }

    .phero__left {
        padding: 20px 24px 44px;
    }

    .psec {
        padding: 72px 0;
    }

    .pmanif {
        padding: 80px 24px;
    }

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

    .paudience-grid {
        grid-template-columns: 1fr;
    }

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

    .phub-cols {
        grid-template-columns: 1fr;
    }

    .psb__panel {
        padding: 48px 28px;
    }

    #pFl {
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 540px) {
    .phero__h1 {
        font-size: clamp(2.6rem, 10vw, 4rem);
    }

    .ecards {
        grid-template-columns: 1fr;
    }

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

    .pgal figure {
        height: 220px;
    }
}
/* </style> */

/* <style> */
/* Quote picto SVG */
.rev-q-icon {
    display: block;
    width: 40px;
    height: 28px;
    margin-bottom: 18px;
    flex-shrink: 0;
}

/* Card redesign */
.ppull {
    flex: 0 0 min(400px, calc(100vw - 80px));
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition:
        background 0.3s,
        border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.ppull::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--G), var(--GL));
    opacity: 0;
    transition: opacity 0.3s;
}

.ppull:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(134, 189, 74, 0.2);
}

.ppull:hover::before {
    opacity: 1;
}

.ppull__stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
    display: block;
}

.ppull__text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.88;
    color: rgba(255, 255, 255, 0.75);
    flex: 1;
    margin-bottom: 24px;
}

.ppull__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ppull__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(134, 189, 74, 0.3);
}

.ppull__name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
}

.ppull__co {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-top: 2px;
    font-weight: 300;
}

.ppull__event {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--G);
    display: block;
    margin-top: 4px;
}

/* Rating pill dark version */
.p-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    padding: 10px 22px;
    border: 1px solid rgba(134, 189, 74, 0.2);
    font-size: 0.82rem;
    font-weight: 500;
    margin: 0 auto 44px;
    color: #fff;
}

.p-rating__stars {
    color: #f5a623;
    letter-spacing: 2px;
}

/* Auto-scroll pulse hint */
.pcar-scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 0 max(48px, calc((100vw - 1300px) / 2));
}

.pcar-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--G);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.pcar-btn {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.pcar-btn:hover {
    background: var(--G);
    border-color: var(--G);
    color: #fff;
}
/* </style> */
