/* INSED public site — design system "premium sombre" (identité réseaux sociaux) */
@font-face {
    font-family: "Avallon";
    src: url("../fonts/avallon/avallon.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Identité de marque */
    --ps-yellow: #F3DE07;
    --ps-yellow-light: #F7E964;
    --ps-yellow-dark: #C9BB06;
    --ps-charcoal: #000000;
    --ps-charcoal-deep: #000000;
    --ps-grey: #697780;

    /* Alias fonctionnels (utilisés dans tout le fichier) */
    --ps-primary: var(--ps-yellow);
    --ps-primary-light: var(--ps-yellow-light);
    --ps-primary-dark: var(--ps-yellow-dark);
    --ps-primary-ink: #000000;
    --ps-accent: var(--ps-yellow-light);
    --ps-dark: var(--ps-charcoal);
    --ps-dark-soft: #0a0a0a;
    --ps-surface: #121212;
    --ps-surface-alt: #1a1a1a;
    --ps-text: #EEF1F3;
    --ps-text-dim: #C7CDD2;
    --ps-muted: var(--ps-grey);
    --ps-border: rgba(255, 255, 255, .1);
    --ps-bg: var(--ps-charcoal);
    --ps-bg-alt: var(--ps-charcoal-deep);
    --ps-white: #fff;
    --ps-radius: 16px;
    --ps-radius-lg: 24px;
    --ps-shadow-sm: 0 2px 8px rgba(0, 0, 0, .25);
    --ps-shadow: 0 12px 40px rgba(0, 0, 0, .35);
    --ps-shadow-lg: 0 24px 60px rgba(0, 0, 0, .45);
    --ps-glow: 0 0 0 1px rgba(243, 222, 7, .18), 0 8px 32px rgba(243, 222, 7, .16);
    --ps-container: 1200px;
    --ps-font: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
    --ps-font-display: "Avallon", var(--ps-font);
    --ps-ease: cubic-bezier(.4, 0, .2, 1);
    --ps-header-h: 96px;
}

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

html { scroll-behavior: smooth; }

body.ps-body {
    margin: 0;
    font-family: var(--ps-font);
    color: var(--ps-text);
    background: var(--ps-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.ps-accent-word {
    font-family: var(--ps-font-display);
    font-weight: 400;
    letter-spacing: .01em;
    color: var(--ps-yellow);
}
h1 .ps-accent-word:not(.ps-typewriter-wrap),
h2 .ps-accent-word:not(.ps-typewriter-wrap),
h3 .ps-accent-word:not(.ps-typewriter-wrap) {
    font-size: 1.4em;
    line-height: 1;
    vertical-align: baseline;
}

.ps-container { width: min(100% - 40px, var(--ps-container)); margin-inline: auto; }

/* ── Topbar ── */
.ps-topbar {
    background: linear-gradient(90deg, var(--ps-dark) 0%, var(--ps-dark-soft) 100%);
    color: #94a3b8;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.ps-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}
.ps-topbar-group {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}
.ps-topbar-group--lead { flex: 1; min-width: 0; }
.ps-topbar .ps-nearby-fab--topbar {
    position: static;
    left: auto;
    bottom: auto;
    z-index: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    max-width: min(280px, 100%);
}
.ps-topbar .ps-nearby-fab--topbar.is-visible {
    transform: none;
    opacity: 1;
}
.ps-topbar .ps-nearby-fab--topbar:hover {
    transform: translateY(-1px);
}
.ps-topbar a { color: #cbd5e1; text-decoration: none; transition: color .2s var(--ps-ease); }
.ps-topbar a:hover { color: #fff; }
.ps-topbar-social {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}
.ps-topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    opacity: .85;
    transition: opacity .2s var(--ps-ease), background .2s var(--ps-ease);
}
.ps-topbar-social a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, .14);
}
.ps-topbar-social svg { flex-shrink: 0; opacity: .95; }
.ps-topbar-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: #cbd5e1;
    flex-shrink: 0;
    transform-origin: center center;
    animation: ps-topbar-login-pulse 2.8s ease-in-out infinite;
    transition: color .2s var(--ps-ease), background .2s var(--ps-ease), border-color .2s var(--ps-ease), box-shadow .2s var(--ps-ease), transform .2s var(--ps-ease);
}
.ps-topbar-login:hover {
    animation: none;
    transform: scale(1.05);
    color: var(--ps-primary-ink);
    background: var(--ps-primary);
    border-color: var(--ps-primary);
    box-shadow: 0 0 0 3px rgba(243, 222, 7, .18);
}
@keyframes ps-topbar-login-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(243, 222, 7, 0);
        border-color: rgba(255, 255, 255, .16);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 3px rgba(243, 222, 7, .2), 0 0 12px rgba(243, 222, 7, .35);
        border-color: rgba(247, 233, 100, .55);
        color: #fff;
    }
}
.ps-lang { display: inline-flex; gap: 4px; align-items: center; background: rgba(255,255,255,.06); padding: 4px; border-radius: 999px; flex-shrink: 0; }
.ps-lang a { opacity: .6; text-decoration: none; font-weight: 700; font-size: 11px; padding: 4px 10px; border-radius: 999px; transition: all .2s var(--ps-ease); }
.ps-lang a.is-active { opacity: 1; color: #fff; background: rgba(255,255,255,.12); }

@media (max-width: 768px) {
    .ps-topbar { font-size: 11px; }
    .ps-topbar-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 8px 0;
    }
    .ps-topbar-group--lead {
        justify-content: flex-start;
    }
    .ps-topbar-group--actions {
        justify-content: space-between;
        gap: 10px;
    }
    .ps-topbar .ps-nearby-fab-text small { display: none; }
    .ps-topbar-social { gap: 6px; }
    .ps-topbar-social a {
        width: 32px;
        height: 32px;
    }
}

/* ── Header ── */
.ps-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--ps-border);
    transition: box-shadow .3s var(--ps-ease), background .3s var(--ps-ease);
    overflow: visible;
}
.ps-header.is-scrolled {
    background: rgba(0, 0, 0, .92);
    box-shadow: var(--ps-shadow-sm);
}
.ps-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 8px 0;
    min-height: var(--ps-header-h);
    overflow: visible;
}
.ps-logo {
    display: inline-flex;
    align-items: center;
    align-self: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
}
.ps-logo-img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}
.ps-header .ps-logo--dark .ps-logo-img {
    height: 80px;
    max-width: 80px;
    filter: brightness(0) invert(1);
    animation: ps-logo-pulse 2.8s ease-in-out infinite;
    transform-origin: center center;
}
@keyframes ps-logo-pulse {
    0%, 100% { transform: scale(1); filter: brightness(0) invert(1) drop-shadow(0 0 0 rgba(243, 222, 7, 0)); }
    50% { transform: scale(1.05); filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(243, 222, 7, .25)); }
}
.ps-logo--light .ps-logo-img {
    height: 40px;
    max-width: 192px;
}
.ps-logo--footer {
    display: block;
    margin-bottom: 20px;
}
.ps-logo--footer.ps-logo--dark .ps-logo-img {
    height: 80px;
    max-width: 80px;
    filter: brightness(0) invert(1);
}
.ps-header-actions { display: flex; align-items: center; gap: 12px; }
.ps-burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ps-border);
    border-radius: 12px;
    background: var(--ps-surface);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}
.ps-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ps-text);
    border-radius: 2px;
    transition: transform .25s var(--ps-ease), opacity .25s;
}
.ps-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ps-burger.is-open span:nth-child(2) { opacity: 0; }
.ps-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ps-burger.is-open {
    background: linear-gradient(135deg, var(--ps-primary-dark), var(--ps-primary));
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(243, 222, 7, .32);
}
.ps-burger.is-open span { background: var(--ps-primary-ink); }

.ps-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    flex-wrap: nowrap;
    min-width: 0;
    align-self: center;
    overflow: visible;
}
.ps-nav-item--featured > button {
    background: linear-gradient(135deg, var(--ps-primary-dark) 0%, var(--ps-primary) 52%, var(--ps-primary-light) 100%);
    color: var(--ps-primary-ink);
    font-weight: 700;
    padding: 0 16px 0 12px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 4px 16px rgba(243, 222, 7, .32);
    margin-right: 8px;
    transition: transform .2s var(--ps-ease), box-shadow .2s var(--ps-ease), filter .2s;
}
.ps-nav-item--featured > button:hover {
    background: linear-gradient(135deg, var(--ps-primary) 0%, var(--ps-primary-light) 100%);
    color: var(--ps-primary-ink);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(243, 222, 7, .42);
    filter: brightness(1.04);
}
.ps-nav-icon {
    flex-shrink: 0;
    opacity: .85;
}
.ps-nav-item--featured .ps-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--ps-primary-ink);
    color: var(--ps-yellow);
    opacity: 1;
    box-shadow: inset 0 0 0 1px rgba(243, 222, 7, .12), 0 1px 4px rgba(184, 168, 4, .18);
}
.ps-nav-item--featured > button:hover .ps-nav-icon {
    background: var(--ps-primary-ink);
    color: var(--ps-yellow);
}
.ps-nav-item--featured .ps-nav-chevron {
    opacity: .75;
    color: var(--ps-primary-ink);
}
.ps-nav > a,
.ps-nav-item > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    color: var(--ps-text);
    padding: 0 16px;
    height: 48px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .2s var(--ps-ease), color .2s;
    position: relative;
}
.ps-nav > a::after,
.ps-nav-item:not(.ps-nav-item--featured) > button::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    border-radius: 2px;
    background: var(--ps-primary);
    transform: scaleX(0);
    transition: transform .2s var(--ps-ease);
}
.ps-nav > a:hover::after,
.ps-nav-item:not(.ps-nav-item--featured):hover > button::after,
.ps-nav-item:not(.ps-nav-item--featured):focus-within > button::after {
    transform: scaleX(1);
}
.ps-nav-chevron {
    flex-shrink: 0;
    opacity: .45;
    transition: transform .2s var(--ps-ease), opacity .2s;
}
.ps-nav-item:hover .ps-nav-chevron,
.ps-nav-item:focus-within .ps-nav-chevron {
    transform: rotate(180deg);
    opacity: .8;
}
.ps-nav > a:hover,
.ps-nav-item > button:hover {
    color: var(--ps-primary);
}
.ps-nav > a.is-active {
    color: var(--ps-primary);
    background: rgba(243, 222, 7, .12);
}
.ps-nav > a.is-active::after {
    transform: scaleX(1);
}
.ps-nav-item--featured > button:hover {
    color: var(--ps-primary-ink);
}
.ps-nav-item { position: relative; }
.ps-nav-item--mega { position: static; }
.ps-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    box-shadow: var(--ps-shadow);
    padding: 8px;
    margin-top: 8px;
    z-index: 60;
    animation: ps-fade-in .2s var(--ps-ease);
}
.ps-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}
.ps-dropdown--cities {
    min-width: 360px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    padding: 10px;
}
.ps-nav-item:hover .ps-dropdown:not(.ps-dropdown--cities),
.ps-nav-item:focus-within .ps-dropdown:not(.ps-dropdown--cities),
.ps-nav-item.is-open .ps-dropdown:not(.ps-dropdown--cities) { display: block; }
.ps-nav-item:hover .ps-dropdown--cities,
.ps-nav-item:focus-within .ps-dropdown--cities,
.ps-nav-item.is-open .ps-dropdown--cities { display: grid; }
.ps-nav-item.is-open > button .ps-nav-chevron {
    transform: rotate(180deg);
    opacity: .8;
}
.ps-dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--ps-text);
    transition: background .15s, color .15s;
}
.ps-dropdown a:hover { background: var(--ps-bg-alt); color: var(--ps-primary); }

.ps-mega {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: min(820px, calc(100vw - 40px));
    transform: translateX(-50%);
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius-lg);
    box-shadow: var(--ps-shadow-lg);
    padding: 24px;
    z-index: 60;
    grid-template-columns: 1.1fr 1.4fr .7fr;
    gap: 24px;
    animation: ps-mega-in .25s var(--ps-ease);
}
@keyframes ps-mega-in {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.ps-nav-item--mega:hover .ps-mega,
.ps-nav-item--mega:focus-within .ps-mega,
.ps-nav-item--mega.is-open .ps-mega { display: grid; }
.ps-mega-col { min-width: 0; }
.ps-mega h4 {
    margin: 0 0 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ps-primary);
    font-weight: 800;
}
.ps-mega-cities {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 12px;
    max-height: 280px;
    overflow-y: auto;
}
.ps-mega-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ps-mega-links li + li { margin-top: 2px; }
.ps-mega-card {
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--ps-bg);
    margin-bottom: 8px;
    transition: background .15s;
}
.ps-mega-card:hover { background: var(--ps-bg-alt); }
.ps-mega-card strong {
    display: block;
    font-size: 13px;
    color: var(--ps-text);
    margin-bottom: 4px;
}
.ps-mega-card p {
    font-size: 12px;
    color: var(--ps-muted);
    margin: 0;
    line-height: 1.5;
}
.ps-mega ul:not(.ps-mega-cities):not(.ps-mega-links) { list-style: none; margin: 0; padding: 0; max-height: 280px; overflow-y: auto; }
.ps-mega li + li { margin-top: 2px; }
.ps-mega a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--ps-text);
    display: block;
    padding: 6px 0;
    transition: color .15s, padding-left .15s;
}
.ps-mega a:hover { color: var(--ps-primary); padding-left: 4px; }
.ps-mega p:not(.ps-mega-card p) { font-size: 12px; color: var(--ps-muted); margin: 0 0 12px; line-height: 1.55; }
.ps-mega p strong:not(.ps-mega-card strong) { color: var(--ps-text); font-size: 13px; display: block; margin-bottom: 2px; }

/* Mobile nav drawer */
.ps-mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ps-ease);
}
.ps-mobile-nav.is-open {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
.ps-mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(100%, 380px);
    height: 100%;
    background: var(--ps-surface);
    overflow: hidden;
    transform: translateX(100%);
    transition: transform .35s var(--ps-ease);
    box-shadow: -12px 0 48px rgba(0, 0, 0, .18);
}
.ps-mobile-nav.is-open .ps-mobile-panel { transform: translateX(0); }
.ps-mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    padding: 14px 16px;
    border-bottom: 1px solid var(--ps-border);
    background: linear-gradient(180deg, var(--ps-bg-alt) 0%, var(--ps-surface) 100%);
}
.ps-logo--mobile-drawer .ps-logo-img {
    height: 48px;
    max-width: 48px;
    filter: brightness(0) invert(1);
}
.ps-mobile-close {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--ps-border);
    border-radius: 12px;
    background: var(--ps-surface-alt);
    color: var(--ps-text);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.ps-mobile-close:hover {
    background: var(--ps-bg-alt);
    color: var(--ps-primary);
    border-color: rgba(243, 222, 7, .2);
}
.ps-mobile-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 12px 20px;
    -webkit-overflow-scrolling: touch;
}
.ps-mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    margin-bottom: 4px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    color: var(--ps-text);
    transition: background .2s, color .2s;
}
.ps-mobile-link:hover,
.ps-mobile-link:focus-visible {
    background: var(--ps-bg-alt);
    color: var(--ps-primary-dark);
}
.ps-mobile-link--accent {
    background: rgba(243, 222, 7, .08);
    color: var(--ps-primary-dark);
    border: 1px solid rgba(243, 222, 7, .12);
}
.ps-mobile-link--accent:hover {
    background: rgba(243, 222, 7, .12);
}
.ps-mobile-link-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--ps-bg-alt);
    color: var(--ps-primary-dark);
    flex-shrink: 0;
}
.ps-mobile-link-icon svg { display: block; }
.ps-mobile-link-icon--shield {
    background: linear-gradient(135deg, var(--ps-primary-dark), var(--ps-primary));
    color: var(--ps-primary-ink);
}
.ps-mobile-group {
    margin-bottom: 4px;
    border-radius: 14px;
    border: 1px solid var(--ps-border);
    background: var(--ps-surface-alt);
    overflow: hidden;
}
.ps-mobile-group[open] {
    border-color: rgba(243, 222, 7, .2);
    box-shadow: 0 4px 20px rgba(243, 222, 7, .08);
}
.ps-mobile-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 15px;
    color: var(--ps-text);
    transition: background .2s, color .2s;
}
.ps-mobile-group-toggle::-webkit-details-marker { display: none; }
.ps-mobile-group-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--ps-muted);
    border-bottom: 2px solid var(--ps-muted);
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-right: 4px;
    transition: transform .25s var(--ps-ease), border-color .25s;
}
.ps-mobile-group[open] .ps-mobile-group-toggle::after {
    transform: rotate(-135deg);
    border-color: var(--ps-primary);
    margin-top: 4px;
}
.ps-mobile-group-toggle:hover { background: var(--ps-bg-alt); }
.ps-mobile-group-label {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.ps-mobile-group-badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 800;
    color: var(--ps-primary);
    background: rgba(243, 222, 7, .1);
    padding: 4px 8px;
    border-radius: 999px;
}
.ps-mobile-group-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 4px 10px 12px;
    border-top: 1px solid var(--ps-border);
    background: var(--ps-bg-alt);
    max-height: 240px;
    overflow-y: auto;
}
.ps-mobile-group-content a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--ps-muted);
    transition: background .2s, color .2s;
}
.ps-mobile-group-content a:hover {
    background: var(--ps-surface);
    color: var(--ps-primary);
}
.ps-mobile-panel-foot {
    flex-shrink: 0;
    padding: 16px;
    border-top: 1px solid var(--ps-border);
    background: linear-gradient(180deg, var(--ps-surface) 0%, var(--ps-bg-alt) 100%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ps-mobile-cta-rdv {
    width: 100%;
    justify-content: center;
    margin: 0;
}
.ps-mobile-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    color: var(--ps-primary-dark);
    transition: background .2s;
}
.ps-mobile-phone span {
    font-size: 12px;
    font-weight: 600;
    color: var(--ps-muted);
}
.ps-mobile-phone:hover { background: rgba(243, 222, 7, .06); }

/* ── Buttons ── */
.ps-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ps-primary) 0%, var(--ps-primary-light) 100%);
    color: var(--ps-primary-ink) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(243, 222, 7, .35);
    transition: transform .2s var(--ps-ease), box-shadow .2s var(--ps-ease), filter .2s;
}
.ps-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(243, 222, 7, .45);
    filter: brightness(1.05);
}
.ps-cta-outline {
    background: transparent;
    color: var(--ps-primary) !important;
    border: 2px solid rgba(243, 222, 7, .35);
    box-shadow: none;
}
.ps-cta-outline:hover {
    background: var(--ps-bg-alt);
    border-color: var(--ps-primary);
    box-shadow: none;
}
.ps-cta-sm { padding: 9px 16px; font-size: 13px; }

/* ── Hero ── */
.ps-hero {
    position: relative;
    padding: 72px 0 80px;
    overflow: hidden;
    background: var(--ps-dark-soft);
}
.ps-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 30% at 50% 100%, rgba(105, 119, 128, .12) 0%, transparent 50%);
    pointer-events: none;
}
.ps-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}
.ps-hero-grid--single {
    grid-template-columns: 1fr;
    max-width: 720px;
}
.ps-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ps-primary);
    margin-bottom: 20px;
    padding: 6px 14px;
    background: rgba(243, 222, 7, .08);
    border-radius: 999px;
    border: 1px solid rgba(243, 222, 7, .12);
}
.ps-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    line-height: 1.02;
    margin: 0 0 20px;
    letter-spacing: -.04em;
    font-weight: 800;
}
.ps-hero h1 .ps-gradient-text {
    background: linear-gradient(135deg, var(--ps-primary) 0%, var(--ps-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ps-typewriter-wrap {
    display: inline;
    white-space: nowrap;
    font-size: clamp(3.2rem, 7.5vw, 5.5rem);
    line-height: 1;
}
.ps-typewriter-text {
    display: inline;
    font-family: var(--ps-font-display);
    font-weight: 400;
    letter-spacing: .02em;
}
.ps-typewriter-cursor {
    display: inline-block;
    -webkit-text-fill-color: var(--ps-primary);
    color: var(--ps-primary);
    font-weight: 300;
    margin-left: 1px;
    animation: ps-typewriter-blink .9s step-end infinite;
}
@keyframes ps-typewriter-blink {
    50% { opacity: 0; }
}
.ps-hero-lead {
    font-size: 18px;
    color: var(--ps-muted);
    max-width: 48ch;
    margin-bottom: 28px;
    line-height: 1.65;
    font-weight: 500;
}
.ps-hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 28px;
    margin-bottom: 28px;
    max-width: 560px;
    opacity: .92;
}
.ps-hero .ps-hero-trust {
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    gap: 14px 18px;
    opacity: 1;
}
.ps-hero-trust-logo {
    display: block;
    width: auto;
    height: 36px;
    max-width: 120px;
    object-fit: contain;
    object-position: left center;
    filter: saturate(1.02);
}
.ps-hero-trust-logo--qualiopi { height: 34px; max-width: 108px; }
.ps-hero-trust-logo--cpf { height: 40px; max-width: 96px; }
.ps-hero-trust-logo--france-travail { height: 30px; max-width: 118px; }
.ps-hero-trust-logo--france-active { height: 34px; max-width: 112px; }
.ps-hero-trust-logo--fndf { height: 34px; max-width: 88px; }
.ps-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.ps-micro {
    font-size: 13px;
    color: var(--ps-muted);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-weight: 500;
}
.ps-micro span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ps-micro span::before {
    content: "✓";
    color: var(--ps-accent);
    font-weight: 800;
    font-size: 12px;
}

.ps-hero-google-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 18px;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 222, 7, .18);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}
.ps-hero-google-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ps-hero-google-badge-row + .ps-hero-google-badge-row { margin-top: 0; }
.ps-hero-google-badge strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--ps-text);
}

.ps-hero-media-wrap { position: relative; }
.ps-hero-media {
    position: relative;
    border-radius: 28px;
    border: 1px solid var(--ps-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    padding: 1.5rem;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(700px 380px at 85% 15%, rgba(105, 119, 128, .12), transparent 60%),
        var(--ps-surface);
}
.ps-hero-media-img {
    display: block;
    width: min(100%, 340px);
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    position: relative;
    z-index: 1;
}
.ps-hero-media-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 222, 7, .18);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}
.ps-hero-media-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ps-hero-media-badge-row + .ps-hero-media-badge-row { margin-top: 4px; }
.ps-hero-media-badge strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--ps-text);
}
.ps-g-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .1);
    font-size: 11px;
    font-weight: 800;
    color: #4285f4;
    letter-spacing: .02em;
}
.ps-g-meta {
    font-size: 12px;
    font-weight: 600;
    color: var(--ps-muted);
}
.ps-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; line-height: 1; }

/* ── Sections ── */
.ps-section { padding: 80px 0; position: relative; }
.ps-section-alt {
    background: linear-gradient(180deg, var(--ps-bg) 0%, var(--ps-bg-alt) 100%);
}
.ps-section-head { text-align: center; margin-bottom: 48px; max-width: 640px; margin-inline: auto; }
.ps-section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ps-primary);
    margin-bottom: 12px;
}
.ps-section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -.03em;
    font-weight: 800;
    line-height: 1.15;
}
.ps-section-head p { margin: 0; color: var(--ps-muted); font-size: 16px; font-weight: 500; }

/* ── Counters / stats band ── */
.ps-section-stats { padding: 56px 0; }

/* ── CQP city cards (home) ── */
.ps-section-cqp-cities {
    padding-top: 0;
    background: var(--ps-bg);
    overflow: hidden;
}
.ps-cqp-city-scroll-hint {
    margin: 0 0 14px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--ps-muted);
}
.ps-cqp-city-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.ps-cqp-city-marquee-track {
    display: flex;
    width: max-content;
}
.ps-cqp-city-marquee.is-animated .ps-cqp-city-marquee-track {
    animation: ps-cqp-city-marquee 70s linear infinite;
}
.ps-cqp-city-marquee.is-animated:hover .ps-cqp-city-marquee-track {
    animation-play-state: paused;
}
.ps-cqp-city-marquee-group {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 20px;
    padding-right: 20px;
    flex-shrink: 0;
}
@keyframes ps-cqp-city-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.ps-cqp-city-card {
    width: 300px;
    flex-shrink: 0;
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    overflow: hidden;
    background: var(--ps-surface);
    box-shadow: var(--ps-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ps-ease), box-shadow .3s var(--ps-ease);
}
.ps-cqp-city-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-shadow-lg);
}
.ps-cqp-city-card-cover {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
    padding: 18px;
    text-decoration: none;
    color: #fff;
    background-color: var(--ps-charcoal-deep);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .72) 100%),
        var(--ps-cqp-city-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.ps-cqp-city-card-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .55) 100%);
    pointer-events: none;
}
.ps-cqp-city-card-badge,
.ps-cqp-city-card-city {
    position: relative;
    z-index: 1;
}
.ps-cqp-city-card-badge {
    align-self: flex-start;
    margin-bottom: auto;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(247, 233, 100, .92);
    color: var(--ps-primary-ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.ps-cqp-city-card-city {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.ps-cqp-city-card-body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.ps-cqp-city-card-title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: var(--ps-text);
    letter-spacing: -.01em;
}
.ps-cqp-city-card-price-label {
    margin: 4px 0 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ps-muted);
}
.ps-cqp-city-card-price {
    margin: 0;
    font-family: var(--ps-font-display);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
}
.ps-cqp-city-card-promo-wrap {
    margin-top: 8px;
    min-width: 0;
}
.ps-cqp-city-card-promo-title {
    margin: 0 0 8px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
}
.ps-schedule-marquee--card {
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.ps-schedule-marquee--card.is-animated .ps-schedule-marquee-track {
    animation-duration: 22s;
}
.ps-schedule-marquee--card .ps-schedule-marquee-item {
    background: var(--ps-bg-alt);
    border: 1px solid var(--ps-border);
    backdrop-filter: none;
    color: var(--ps-text);
    font-size: .72rem;
    padding: 8px 12px;
}
.ps-schedule-marquee--card .ps-schedule-marquee-item .ps-schedule-price {
    font-size: .82rem;
    color: var(--ps-primary-ink);
    background: rgba(247, 233, 100, .35);
}
.ps-schedule-marquee--card .ps-schedule-marquee-item .ps-schedule-venue {
    color: var(--ps-muted);
    opacity: 1;
}
.ps-schedule-marquee--card .ps-schedule-marquee-item .ps-schedule-places {
    color: #15803d;
}
.ps-cqp-city-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}
.ps-cqp-city-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: background .2s, color .2s, border-color .2s;
}
.ps-cqp-city-card-btn--dark {
    background: var(--ps-charcoal);
    color: #fff;
    border: 1px solid var(--ps-charcoal);
}
.ps-cqp-city-card-btn--dark:hover {
    background: #000;
    color: #fff;
}
.ps-cqp-city-card-btn--brand {
    background: var(--ps-primary);
    color: var(--ps-primary-ink);
    border: 1px solid var(--ps-primary);
}
.ps-cqp-city-card-btn--brand:hover {
    background: var(--ps-yellow);
    color: var(--ps-primary-ink);
}
.ps-cqp-city-card-certs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    margin: 12px -18px -16px;
    padding: 12px 10px 14px;
    background: var(--ps-charcoal);
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.ps-cqp-city-card-certs .ps-cert-pill {
    gap: 0;
    justify-content: center;
    text-align: center;
    padding: 5px 2px;
    border-radius: 6px;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1.2;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
    box-shadow: none;
}
.ps-cqp-city-card-link {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ps-muted);
    text-decoration: none;
}
.ps-cqp-city-card-link:hover {
    color: var(--ps-primary-ink);
}
.ps-stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}
.ps-stat-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}
.ps-stat-card-body {
    min-width: 0;
    text-align: center;
}
.ps-stat-card-val {
    font-family: var(--ps-font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1;
    color: var(--ps-yellow);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.ps-stat-card-label {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 800;
    color: var(--ps-text);
    letter-spacing: -.01em;
}
.ps-stat-card-sub {
    margin-top: 2px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ps-muted);
}
.ps-stat-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.ps-stat-card--link:hover .ps-stat-card-val {
    color: var(--ps-yellow-light);
}
.ps-stat-card--link:focus-visible {
    outline: 2px solid var(--ps-yellow);
    outline-offset: 4px;
}

/* ── Cities map page ── */
.ps-cities-map-hero {
    padding: 36px 0 12px;
    background:
        radial-gradient(ellipse 70% 80% at 50% -20%, rgba(243, 222, 7, .12), transparent 60%),
        var(--ps-bg);
}
.ps-cities-map-hero-inner { text-align: center; }
.ps-cities-map-hero h1 {
    margin: 10px 0 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.03em;
}
.ps-cities-map-lead {
    margin: 14px auto 0;
    max-width: 58ch;
    color: var(--ps-muted);
    font-size: 15px;
    font-weight: 500;
}
.ps-cities-map-section { padding-top: 24px; padding-bottom: 72px; }
.ps-cities-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: stretch;
}
.ps-cities-map-panel,
.ps-cities-map-sidebar {
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    box-shadow: var(--ps-shadow);
    overflow: hidden;
}
.ps-cities-map-panel-head,
.ps-cities-map-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--ps-border);
    font-size: 13px;
}
.ps-cities-map-panel-head strong,
.ps-cities-map-sidebar-head strong {
    font-weight: 800;
    color: var(--ps-text);
}
.ps-cities-map-panel-head span,
.ps-cities-map-sidebar-head span {
    color: var(--ps-yellow);
    font-weight: 700;
    font-size: 12px;
}
.ps-cities-map-canvas {
    width: 100%;
    height: min(68vh, 640px);
    min-height: 420px;
    background: #0d0d0d;
    z-index: 1;
}
.ps-cities-map-list {
    max-height: min(68vh, 640px);
    overflow-y: auto;
}
.ps-cities-map-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border: 0;
    border-bottom: 1px solid var(--ps-border);
    background: transparent;
    color: var(--ps-text);
    text-align: left;
    cursor: pointer;
    transition: background .2s var(--ps-ease), border-color .2s var(--ps-ease);
}
.ps-cities-map-list-item:hover,
.ps-cities-map-list-item.is-active {
    background: rgba(243, 222, 7, .08);
}
.ps-cities-map-list-item.is-active {
    box-shadow: inset 3px 0 0 var(--ps-yellow);
}
.ps-cities-map-list-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff;
    border: 2px solid rgba(243, 222, 7, .45);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    padding: 6px;
    box-shadow: var(--ps-shadow-sm);
}
.ps-cities-map-list-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ps-cities-map-list-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.ps-cities-map-list-name {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ps-cities-map-list-meta {
    font-size: 11px;
    font-weight: 600;
    color: var(--ps-muted);
}
.ps-cities-map-list-arrow {
    color: var(--ps-yellow);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    opacity: .8;
}
.ps-map-marker-wrap { background: transparent; border: 0; }
.ps-map-marker {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    border: 2px solid var(--ps-yellow);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .45), 0 0 0 4px rgba(243, 222, 7, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: transform .2s var(--ps-ease), box-shadow .2s var(--ps-ease);
}
.leaflet-marker-icon.ps-map-marker-wrap:hover .ps-map-marker {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .5), 0 0 0 6px rgba(243, 222, 7, .2);
}
.ps-map-marker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ps-map-popup-shell .leaflet-popup-content-wrapper {
    background: var(--ps-surface);
    color: var(--ps-text);
    border: 1px solid var(--ps-border);
    border-radius: 14px;
    box-shadow: var(--ps-shadow-lg);
}
.ps-map-popup-shell .leaflet-popup-tip {
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
}
.ps-map-popup-shell .leaflet-popup-content {
    margin: 12px 14px;
}
.ps-map-popup {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ps-map-popup-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    border: 2px solid rgba(243, 222, 7, .45);
    display: grid;
    place-items: center;
    padding: 6px;
    flex-shrink: 0;
}
.ps-map-popup-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ps-map-popup-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.ps-map-popup-body strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--ps-text);
}
.ps-map-popup-body span {
    font-size: 12px;
    color: var(--ps-muted);
    font-weight: 600;
}
.ps-map-popup-dates {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ps-map-popup-dates li {
    position: relative;
    padding-left: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ps-text);
    line-height: 1.35;
}
.ps-map-popup-dates li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ps-yellow);
}
.ps-map-popup-link {
    display: inline-flex;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 800;
    color: var(--ps-yellow);
    text-decoration: none;
}
.ps-map-popup-link:hover { color: var(--ps-yellow-light); }
.leaflet-container { font-family: var(--ps-font); }
.leaflet-control-zoom a {
    background: var(--ps-surface) !important;
    color: var(--ps-text) !important;
    border-color: var(--ps-border) !important;
}
.leaflet-control-attribution {
    background: rgba(0, 0, 0, .55) !important;
    color: var(--ps-muted) !important;
    font-size: 10px;
}
.leaflet-control-attribution a { color: var(--ps-yellow) !important; }

@media (max-width: 960px) {
    .ps-cities-map-layout { grid-template-columns: 1fr; }
    .ps-cities-map-list { max-height: 320px; }
    .ps-cities-map-canvas { min-height: 360px; }
}

.ps-counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ps-counter {
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--ps-shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform .25s var(--ps-ease), box-shadow .25s;
}
.ps-counter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ps-primary), var(--ps-accent));
}
.ps-counter:hover { transform: translateY(-4px); box-shadow: var(--ps-shadow); }
.ps-counter-val {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--ps-primary), var(--ps-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.ps-counter-label {
    margin-top: 10px;
    font-size: 12px;
    color: var(--ps-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── Tabs ── */
.ps-tabs {
    display: inline-flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding: 6px;
    background: var(--ps-bg);
    border-radius: 999px;
    border: 1px solid var(--ps-border);
}
.ps-tab {
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    color: var(--ps-muted);
    transition: all .2s var(--ps-ease);
}
.ps-tab.is-active, .ps-tab:hover {
    background: var(--ps-surface);
    color: var(--ps-primary);
    box-shadow: var(--ps-shadow-sm);
}
.ps-cqp-tabs { margin-top: 48px; }
.ps-tabs--wide {
    display: flex;
    width: 100%;
    justify-content: stretch;
    margin-bottom: 0;
    border-radius: 14px;
}
.ps-tabs--wide .ps-tab { flex: 1; text-align: center; padding: 12px 16px; }
.ps-tabs-panels {
    margin-top: 16px;
    padding: 32px;
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius-lg);
    box-shadow: var(--ps-shadow-sm);
}
.ps-tab-panel { display: none; }
.ps-tab-panel.is-active { display: block; animation: ps-fade-in .25s var(--ps-ease); }
.ps-tab-lead {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ps-muted);
    max-width: 72ch;
}
.ps-tab-lead strong { color: var(--ps-text); }
.ps-kpi-section { margin-bottom: 28px; }
.ps-kpi-section-head {
    margin-bottom: 18px;
    max-width: 62ch;
}
.ps-kpi-section-head .ps-section-label {
    display: block;
    margin-bottom: 8px;
}
.ps-kpi-section-head h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ps-text);
}
.ps-kpi-section-head p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ps-muted);
}
.ps-kpi-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--ps-border);
    border-radius: 22px;
    background:
        radial-gradient(900px 420px at 10% 0%, rgba(243, 222, 7, .1), transparent 58%),
        radial-gradient(700px 380px at 95% 0%, rgba(105, 119, 128, .1), transparent 60%),
        var(--ps-surface);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}
.ps-kpi-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 18px;
    background: var(--ps-surface-alt);
    border: 1px solid var(--ps-border);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .15);
    text-align: left;
    transition: transform .2s var(--ps-ease), box-shadow .2s, border-color .2s;
}
.ps-kpi-card:hover {
    transform: translateY(-2px);
    border-color: rgba(243, 222, 7, .2);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .3);
}
.ps-kpi-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ps-border);
}
.ps-kpi-card--green .ps-kpi-card-icon {
    color: #6ee7b7;
    background: rgba(110, 231, 183, .14);
}
.ps-kpi-card--gold .ps-kpi-card-icon {
    color: #f0b429;
    background: rgba(240, 180, 41, .14);
}
.ps-kpi-card--blue .ps-kpi-card-icon {
    color: #7dd3fc;
    background: rgba(125, 211, 252, .14);
}
.ps-kpi-card--purple .ps-kpi-card-icon {
    color: var(--ps-primary);
    background: rgba(243, 222, 7, .14);
}
.ps-kpi-card-body { min-width: 0; }
.ps-kpi-value {
    display: block;
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.05;
    color: var(--ps-text);
}
.ps-kpi-card--green .ps-kpi-value { color: #6ee7b7; }
.ps-kpi-card--gold .ps-kpi-value { color: #f0b429; }
.ps-kpi-card--blue .ps-kpi-value { color: #7dd3fc; }
.ps-kpi-card--purple .ps-kpi-value { color: var(--ps-primary); }
.ps-kpi-label {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--ps-text);
}
.ps-kpi-hint {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 500;
    color: var(--ps-muted);
}

/* Legacy alias */
.ps-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}
.ps-tab-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.ps-tab-feature {
    padding: 20px;
    border-radius: 14px;
    background: var(--ps-bg);
    border: 1px solid var(--ps-border);
}
.ps-tab-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(243, 222, 7, .1);
    color: var(--ps-primary);
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}
.ps-tab-feature strong { display: block; font-size: 14px; margin-bottom: 6px; }
.ps-tab-feature p { margin: 0; font-size: 13px; color: var(--ps-muted); line-height: 1.55; }
.ps-tab-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.ps-tab-list li {
    position: relative;
    padding: 14px 16px 14px 44px;
    border-radius: 12px;
    background: var(--ps-bg);
    border: 1px solid var(--ps-border);
    font-size: 14px;
    font-weight: 500;
    color: var(--ps-text);
}
.ps-tab-list li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(243, 222, 7, .12);
    color: var(--ps-primary);
    font-size: 11px;
    font-weight: 800;
    display: grid;
    place-items: center;
}
.ps-tab-finance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}
.ps-tab-finance-card {
    padding: 18px;
    border-radius: 14px;
    background: var(--ps-bg);
    border: 1px solid var(--ps-border);
}
.ps-tab-finance-card strong { display: block; font-size: 14px; margin-bottom: 6px; }
.ps-tab-finance-card p { margin: 0; font-size: 13px; color: var(--ps-muted); line-height: 1.55; }
.ps-tab-note { margin: 0; font-size: 14px; color: var(--ps-muted); padding: 14px 16px; border-radius: 12px; background: rgba(243, 222, 7, .06); border: 1px solid rgba(243, 222, 7, .1); }
.ps-tab-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.ps-tab-info-item {
    padding: 20px;
    border-radius: 14px;
    background: var(--ps-bg);
    border: 1px solid var(--ps-border);
}
.ps-tab-info-item small {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ps-primary);
    margin-bottom: 6px;
}
.ps-tab-info-item strong { display: block; font-size: 16px; margin-bottom: 6px; }
.ps-tab-info-item p { margin: 0; font-size: 13px; color: var(--ps-muted); line-height: 1.55; }
.ps-tabs-content { margin-top: 28px; padding: 24px; background: var(--ps-bg); border-radius: var(--ps-radius); }

/* ── Formation cards ── */
.ps-formations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.ps-formations-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}
.ps-carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--ps-border);
    background: var(--ps-surface);
    color: var(--ps-text);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: var(--ps-shadow-sm);
    transition: background .2s, color .2s, border-color .2s, transform .2s, opacity .2s;
}
.ps-carousel-btn:hover:not(:disabled) {
    background: var(--ps-primary);
    border-color: var(--ps-primary);
    color: var(--ps-primary-ink);
    transform: scale(1.05);
}
.ps-carousel-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}
.ps-formations-scroller {
    container-type: inline-size;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-bottom: -4px;
    min-width: 0;
}
.ps-formations-scroller::-webkit-scrollbar { display: none; }
.ps-formations-grid--carousel {
    display: flex;
    gap: 24px;
    width: max-content;
    min-width: 100%;
}
.ps-formations-carousel-item {
    flex: 0 0 calc((100cqi - 48px) / 3);
    width: calc((100cqi - 48px) / 3);
    scroll-snap-align: start;
    min-width: 0;
}
.ps-formations-carousel-item .ps-formation-card { height: 100%; }

@container (max-width: 900px) {
    .ps-formations-carousel-item {
        flex-basis: calc((100cqi - 24px) / 2);
        width: calc((100cqi - 24px) / 2);
    }
}

@container (max-width: 560px) {
    .ps-formations-carousel-item {
        flex-basis: calc(100cqi - 40px);
        width: calc(100cqi - 40px);
    }
}
.ps-formation-card {
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    overflow: hidden;
    background: var(--ps-surface);
    box-shadow: var(--ps-shadow-sm);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform .3s var(--ps-ease), box-shadow .3s var(--ps-ease);
    position: relative;
}
.ps-formation-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background .3s;
}
.ps-formation-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ps-shadow-lg);
}
.ps-formation-card:hover::before {
    background: linear-gradient(135deg, var(--ps-primary), var(--ps-accent));
}
.ps-formation-cover {
    aspect-ratio: 16 / 10;
    background: rgba(243, 222, 7, .12);
    display: block;
    font-size: 48px;
    position: relative;
    overflow: hidden;
    min-height: 0;
}
.ps-formation-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s var(--ps-ease);
}
.ps-formation-card:hover .ps-formation-cover img { transform: scale(1.06); }
.ps-formation-level {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 8px;
}
.ps-formation-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ps-formation-body h3 { margin: 0; font-size: 17px; line-height: 1.35; font-weight: 800; letter-spacing: -.02em; }
.ps-formation-body p { margin: 0; font-size: 14px; color: var(--ps-muted); flex: 1; line-height: 1.55; }
.ps-formation-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ps-primary);
    padding-top: 12px;
    border-top: 1px solid var(--ps-border);
}
.ps-formation-arrow {
    margin-left: auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ps-bg-alt);
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: background .2s, transform .2s;
}
.ps-formation-card:hover .ps-formation-arrow {
    background: var(--ps-primary);
    color: var(--ps-primary-ink);
    transform: translateX(2px);
}

/* ── Formation show (detail page) ── */
.ps-formation-show { padding-top: 40px; }
.ps-formation-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
    gap: 40px;
    align-items: start;
}
.ps-formation-main { min-width: 0; }
.ps-formation-hero-cover {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: rgba(243, 222, 7, .12);
    box-shadow: var(--ps-shadow-lg);
    margin-bottom: 28px;
}
.ps-formation-hero-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ps-formation-hero-placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    font-size: 64px;
}
.ps-formation-hero-level {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 8px;
}
.ps-formation-hero-title {
    margin: 0 0 16px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
}
.ps-formation-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.ps-formation-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ps-primary-dark);
    background: rgba(243, 222, 7, .08);
    border: 1px solid rgba(243, 222, 7, .12);
}
.ps-formation-chip svg { flex-shrink: 0; opacity: .85; }
.ps-formation-hero-desc {
    color: var(--ps-muted);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 0;
}
.ps-formation-sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: calc(var(--ps-header-h) + 24px);
}
.ps-formation-price-card {
    border-radius: 18px;
    overflow: hidden;
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(243, 222, 7, .1), transparent 55%),
        var(--ps-surface);
    border: 1px solid rgba(243, 222, 7, .12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}
.ps-formation-stats-card {
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: 18px;
    box-shadow: var(--ps-shadow);
    overflow: hidden;
}
.ps-formation-price-card-body {
    padding: 22px 22px 20px;
}
.ps-formation-price-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.ps-formation-price-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ps-muted);
}
.ps-formation-price-discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(110, 231, 183, .14);
    border: 1px solid rgba(110, 231, 183, .25);
    color: #6ee7b7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    white-space: nowrap;
}
.ps-formation-price-hero {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--ps-surface-alt), var(--ps-surface));
    border: 1px solid var(--ps-border);
}
.ps-formation-price-current {
    font-size: clamp(2.1rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--ps-text);
    line-height: 1;
}
.ps-formation-price-compare {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}
.ps-formation-price-old-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ps-muted);
}
.ps-formation-price-old {
    font-size: 1.05rem;
    font-weight: 700;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}
.ps-formation-price-savings {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(243, 222, 7, .06);
    border: 1px solid rgba(243, 222, 7, .1);
    color: var(--ps-primary);
    font-size: 13px;
    font-weight: 600;
}
.ps-formation-price-savings svg { flex-shrink: 0; }
.ps-formation-price-savings strong {
    font-weight: 800;
    color: var(--ps-text);
}
.ps-formation-price-note {
    margin: 12px 0 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--ps-muted);
}

/* Legacy aliases kept for cached views */
.ps-formation-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 16px;
}
.ps-formation-price-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: rgba(243, 222, 7, .12);
    border: 1px solid rgba(243, 222, 7, .12);
}
.ps-formation-price-badge {
    flex-shrink: 0;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ps-primary), var(--ps-primary-light));
    color: var(--ps-primary-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.ps-formation-price-promo-text {
    display: grid;
    gap: 2px;
    text-align: right;
    min-width: 0;
}
.ps-formation-price-promo-text strong {
    font-size: 12px;
    font-weight: 700;
    color: var(--ps-primary-dark);
}
.ps-formation-price-promo-text a {
    font-size: 12px;
    font-weight: 700;
    color: var(--ps-primary);
    text-decoration: none;
}
.ps-formation-price-promo-text a:hover { text-decoration: underline; }
.ps-formation-buy-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0;
}
.ps-formation-buy-btn--solo { display: flex; }
.ps-formation-stats-card {
    padding: 22px 24px;
}
.ps-formation-stats-card h3 {
    margin: 0 0 18px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -.01em;
}
.ps-formation-stats {
    display: grid;
    gap: 14px;
    margin: 0;
}
.ps-formation-stats > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ps-border);
}
.ps-formation-stats > div:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.ps-formation-stats dt {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--ps-muted);
}
.ps-formation-stats dd {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: var(--ps-text);
    text-align: right;
}
.ps-formation-block { margin-top: 40px; }
.ps-formation-block h2 {
    margin: 0 0 20px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
}
.ps-formation-prose {
    color: var(--ps-muted);
    font-size: 15px;
    line-height: 1.65;
}
.ps-formation-prose p { margin: 0 0 12px; }
.ps-formation-prose p:last-child { margin-bottom: 0; }
.ps-formation-sticky-cta { display: none; }

/* ── News / Actualités ── */
.ps-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.ps-news-card {
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    overflow: hidden;
    background: var(--ps-surface);
    box-shadow: var(--ps-shadow-sm);
    transition: transform .25s var(--ps-ease), box-shadow .25s var(--ps-ease);
}
.ps-news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-shadow-lg);
}
.ps-news-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.ps-news-card-cover {
    aspect-ratio: 16 / 10;
    background: rgba(243, 222, 7, .12);
    overflow: hidden;
}
.ps-news-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ps-news-card-placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    font-size: 42px;
}
.ps-news-card-body {
    padding: 22px;
    display: grid;
    gap: 10px;
    flex: 1;
}
.ps-news-card-date {
    font-size: 12px;
    font-weight: 700;
    color: var(--ps-primary);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.ps-news-card-body h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.02em;
}
.ps-news-card-body p {
    margin: 0;
    color: var(--ps-muted);
    font-size: 14px;
    line-height: 1.6;
}
.ps-news-card-more {
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--ps-primary);
}
.ps-news-empty {
    text-align: center;
    color: var(--ps-muted);
    padding: 48px 20px;
}
.ps-news-show { padding-top: 40px; }
.ps-news-article { max-width: 820px; }
.ps-news-back {
    display: inline-flex;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ps-primary);
    text-decoration: none;
}
.ps-news-back:hover { text-decoration: underline; }
.ps-news-date {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ps-primary);
    margin-bottom: 12px;
}
.ps-news-title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
}
.ps-news-excerpt {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--ps-muted);
    margin: 0 0 24px;
}
.ps-news-hero {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--ps-shadow);
}
.ps-news-hero img {
    display: block;
    width: 100%;
    height: auto;
}
.ps-news-content {
    color: var(--ps-text);
    font-size: 16px;
    line-height: 1.75;
}
.ps-news-content h2,
.ps-news-content h3 {
    margin: 1.6em 0 .6em;
    font-weight: 800;
    letter-spacing: -.02em;
}
.ps-news-content p { margin: 0 0 1em; }
.ps-news-content ul,
.ps-news-content ol { margin: 0 0 1em; padding-left: 1.4em; }
.ps-news-content a { color: var(--ps-primary); font-weight: 600; }
.ps-news-content blockquote {
    margin: 1.5em 0;
    padding: 16px 20px;
    border-left: 4px solid var(--ps-primary);
    background: var(--ps-bg-alt);
    border-radius: 0 12px 12px 0;
    color: var(--ps-muted);
}

/* ── CTA band ── */
.ps-cta-band {
    text-align: center;
    padding: 64px 40px;
    border-radius: var(--ps-radius-lg);
    background-color: var(--ps-charcoal-deep);
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .88) 100%),
        var(--ps-cta-band-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ps-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .6) 100%);
    pointer-events: none;
}
.ps-cta-band h2,
.ps-cta-band p,
.ps-cta-band .ps-cta {
    position: relative;
    z-index: 1;
}
.ps-cta-band h2 { margin: 0 0 12px; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.02em; }
.ps-cta-band p { margin: 0 auto 24px; max-width: 48ch; color: var(--ps-text-dim); font-size: 16px; text-shadow: 0 1px 12px rgba(0, 0, 0, .45); }

/* ── Testimonials ── */
.ps-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ps-testimonial {
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    padding: 28px;
    position: relative;
    transition: box-shadow .25s, transform .25s;
}
.ps-testimonial:hover { box-shadow: var(--ps-shadow); transform: translateY(-3px); }
.ps-testimonial::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    line-height: 1;
    color: var(--ps-bg-alt);
    font-family: Georgia, serif;
    font-weight: 700;
}
.ps-testimonial-stars { margin-bottom: 14px; }
.ps-testimonial p {
    margin: 0 0 16px;
    font-size: 15px;
    color: var(--ps-text);
    line-height: 1.65;
    position: relative;
    font-weight: 500;
}
.ps-testimonial cite {
    font-family: var(--ps-font-display);
    font-size: 1.15em;
    font-weight: 400;
    font-style: normal;
    letter-spacing: .02em;
    color: var(--ps-yellow);
    display: flex;
    align-items: center;
    gap: 10px;
}
.ps-testimonial cite::before {
    content: "";
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ps-primary), var(--ps-accent));
    opacity: .2;
}

/* ── Instagram feed (sans API) ── */
.ps-instagram-section .ps-section-head p strong {
    color: var(--ps-text);
}
.ps-instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.ps-instagram-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius-lg);
    background: var(--ps-surface);
    overflow: hidden;
    transition: transform .2s var(--ps-ease), border-color .2s, box-shadow .2s;
}
.ps-instagram-card:hover {
    transform: translateY(-3px);
    border-color: rgba(243, 222, 7, .28);
    box-shadow: var(--ps-shadow);
}
.ps-instagram-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    overflow: hidden;
}
.ps-instagram-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s var(--ps-ease);
}
.ps-instagram-card:hover .ps-instagram-card-media img {
    transform: scale(1.04);
}
.ps-instagram-card-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(243, 222, 7, .55);
    background:
        radial-gradient(circle at 30% 20%, rgba(243, 222, 7, .12), transparent 45%),
        linear-gradient(160deg, #141414, #050505);
}
.ps-instagram-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    backdrop-filter: blur(6px);
}
.ps-instagram-card-caption {
    margin: 0;
    padding: 0 14px 14px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--ps-text-dim);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ps-instagram-empty {
    border: 1px dashed var(--ps-border);
    border-radius: var(--ps-radius-lg);
    padding: 28px 24px;
    text-align: center;
    background: rgba(255, 255, 255, .02);
}
.ps-instagram-empty p {
    margin: 0 0 16px;
    color: var(--ps-muted);
    font-size: 14px;
    line-height: 1.6;
}
.ps-instagram-empty code {
    font-size: 12px;
    color: var(--ps-primary);
}
@media (max-width: 1024px) {
    .ps-instagram-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── Footer ── */
.ps-footer {
    background: linear-gradient(180deg, var(--ps-dark) 0%, var(--ps-charcoal-deep) 100%);
    color: var(--ps-grey);
    padding: 56px 0 24px;
    position: relative;
}
.ps-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 222, 7, .6), rgba(247, 233, 100, .4), transparent);
}
.ps-footer-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.ps-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 40px 48px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.ps-footer-brand { max-width: 380px; }
.ps-footer-tagline {
    font-size: 14px;
    line-height: 1.65;
    margin: 16px 0 20px;
    color: #94a3b8;
}
.ps-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.ps-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    color: #cbd5e1;
    transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.ps-footer-social a:hover {
    background: rgba(247, 233, 100, .25);
    border-color: rgba(247, 233, 100, .4);
    color: #fff;
    transform: translateY(-2px);
}
.ps-footer-cta {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(247, 233, 100, .5);
    transition: color .2s, border-color .2s;
}
.ps-footer-cta:hover { color: var(--ps-primary-light); border-color: var(--ps-primary-light); }

.ps-footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 40px;
}
.ps-footer h4 {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 16px;
    font-weight: 800;
}
.ps-footer ul { list-style: none; margin: 0; padding: 0; }
.ps-footer li + li { margin-top: 8px; }
.ps-footer a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color .2s, padding-left .15s;
}
.ps-footer a:hover { color: #fff; padding-left: 3px; }

.ps-footer-cities-band {
    padding: 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
}
.ps-footer-cities-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 20px;
    margin-bottom: 20px;
}
.ps-footer-cities-head h4 { margin: 0; }
.ps-footer-cities-head p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    max-width: 420px;
}
.ps-footer-cities-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ps-footer-cities-grid li { margin: 0; }
.ps-footer-city-link {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ps-footer-city-link:hover {
    background: rgba(247, 233, 100, .2);
    border-color: rgba(247, 233, 100, .45);
    color: #fff;
    padding-left: 12px;
    transform: translateY(-1px);
}

.ps-footer-contact h4 { margin-bottom: 14px; }
.ps-footer-contact-card {
    display: grid;
    gap: 2px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: var(--ps-radius-lg);
    background: linear-gradient(160deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .02) 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--ps-shadow-sm);
    position: relative;
    overflow: hidden;
}
.ps-footer-contact-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 222, 7, .14) 0%, transparent 70%);
    top: -70px;
    right: -50px;
    pointer-events: none;
}
.ps-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    padding: 12px;
    border-radius: 14px;
    position: relative;
    z-index: 1;
    transition: background .2s, transform .2s;
}
.ps-footer-contact-item + .ps-footer-contact-item {
    border-top: 1px solid rgba(255, 255, 255, .06);
}
.ps-footer-contact-item:not(.ps-footer-contact-item--static):hover {
    background: rgba(255, 255, 255, .05);
    transform: translateX(3px);
}
.ps-footer-contact-item:hover strong { color: var(--ps-yellow-light); }
.ps-footer-contact-item--static { cursor: default; }
.ps-footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(243, 222, 7, .28), rgba(243, 222, 7, .1));
    border: 1px solid rgba(243, 222, 7, .3);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #F7E964;
}
.ps-footer-contact-item span:last-child { display: grid; gap: 2px; min-width: 0; }
.ps-footer-contact-item small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #64748b;
}
.ps-footer-contact-item strong {
    font-size: 14.5px;
    font-weight: 700;
    color: #e2e8f0;
    word-break: break-word;
    transition: color .2s;
}
.ps-cta-outline--light {
    border-color: rgba(255, 255, 255, .25);
    color: #fff;
    width: 100%;
    justify-content: center;
}
.ps-cta-outline--light:hover {
    background: rgba(255, 255, 255, .08);
    border-color: var(--ps-yellow-light);
    color: var(--ps-yellow-light);
}

.ps-footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.ps-footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    font-size: 12px;
    color: #64748b;
}
.ps-footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    transition: color .2s;
}
.ps-footer-legal a:hover { color: #fff; }
.ps-footer-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(243, 222, 7, .15);
    border: 1px solid rgba(247, 233, 100, .25);
    color: #F7E964;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}
.ps-footer-lang {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
}
.ps-footer-lang a {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.ps-footer-lang a:hover { color: #cbd5e1; }
.ps-footer-lang a.is-active {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.ps-footer-partners {
    margin-top: 40px;
    margin-top: 12px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.ps-footer-partners h4 {
    text-align: center;
    margin-bottom: 20px;
}
.ps-footer-partners-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 28px;
    align-items: center;
    padding: 24px 28px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}
.ps-footer-partner-logo {
    display: block;
    width: 100%;
    height: auto;
    max-height: 56px;
    margin-inline: auto;
    object-fit: contain;
}
.ps-footer-partner-logo--cpf { max-height: 68px; max-width: 85%; }
.ps-footer-partner-logo--france-active { max-width: 72%; }
.ps-footer-partner-logo--fndf { max-width: 72%; }

/* ── Cookie banner ── */
.ps-cookie {
    position: fixed;
    inset: auto 20px 20px 20px;
    max-width: 440px;
    background: rgba(0, 0, 0, .94);
    backdrop-filter: blur(20px);
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    box-shadow: var(--ps-shadow-lg);
    padding: 24px;
    z-index: 100;
    display: none;
    transform: translateY(120%);
    transition: transform .4s var(--ps-ease);
}
.ps-cookie.is-visible {
    display: block;
    transform: translateY(0);
    animation: ps-slide-up .45s var(--ps-ease) forwards;
}
.ps-cookie h3 { margin: 0 0 8px; font-size: 17px; font-weight: 800; }
.ps-cookie p { margin: 0 0 16px; font-size: 13px; color: var(--ps-muted); line-height: 1.55; }
.ps-cookie p a { color: var(--ps-primary); font-weight: 600; text-decoration: none; }
.ps-cookie p a:hover { text-decoration: underline; }
.ps-cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ps-cookie-actions button {
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: transform .15s;
}
.ps-cookie-actions button:hover { transform: scale(1.02); }
.ps-cookie-accept { background: linear-gradient(135deg, var(--ps-primary), var(--ps-primary-light)); color: var(--ps-primary-ink); }
.ps-cookie-custom { background: var(--ps-bg); color: var(--ps-text); border: 1px solid var(--ps-border) !important; }

/* ── Inscription popup ── */
.ps-popup {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
}
.ps-popup.is-visible { pointer-events: auto; }
.ps-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .62);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .3s var(--ps-ease);
}
.ps-popup.is-visible .ps-popup-backdrop { opacity: 1; }
.ps-popup-panel {
    position: relative;
    width: min(100%, 920px);
    max-height: min(92vh, 640px);
    overflow: auto;
    background: var(--ps-surface);
    border-radius: var(--ps-radius-lg);
    border: 1px solid var(--ps-border);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .45);
    transform: translateY(24px) scale(.96);
    opacity: 0;
    transition: transform .35s var(--ps-ease), opacity .35s var(--ps-ease);
}
.ps-popup.is-visible .ps-popup-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.ps-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: var(--ps-surface-alt);
    color: var(--ps-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ps-shadow-sm);
    transition: background .2s var(--ps-ease), transform .2s;
}
.ps-popup-close:hover {
    background: var(--ps-surface);
    transform: scale(1.04);
}
.ps-popup-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    min-height: 420px;
}
.ps-popup-media { min-height: 0; }
.ps-popup-cover {
    height: 100%;
    min-height: 280px;
    aspect-ratio: auto;
    border-radius: var(--ps-radius-lg) 0 0 var(--ps-radius-lg);
}
.ps-popup-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 32px 32px;
}
.ps-popup-body .ps-eyebrow { margin-bottom: 12px; }
.ps-popup-title {
    margin: 0 0 14px;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.08;
    letter-spacing: -.03em;
    font-weight: 800;
}
.ps-popup-lead {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ps-muted);
    font-weight: 500;
}
.ps-popup-perks {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ps-popup-perks li {
    font-size: 12px;
    font-weight: 700;
    color: var(--ps-primary-dark);
    background: var(--ps-bg-alt);
    border: 1px solid rgba(243, 222, 7, .12);
    padding: 6px 10px;
    border-radius: 999px;
}
.ps-popup-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}
.ps-popup-dismiss {
    border: none;
    background: none;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--ps-muted);
    cursor: pointer;
    padding: 8px 0;
    transition: color .2s;
}
.ps-popup-dismiss:hover { color: var(--ps-text); }

@media (max-width: 768px) {
    .ps-popup-grid { grid-template-columns: 1fr; min-height: 0; }
    .ps-popup-cover {
        min-height: 200px;
        border-radius: var(--ps-radius-lg) var(--ps-radius-lg) 0 0;
    }
    .ps-popup-body { padding: 24px 20px 28px; }
    .ps-popup-actions .ps-cta { width: 100%; }
}

/* ── City CQP ── */
.ps-city-hero {
    padding: 64px 0;
    background-color: var(--ps-charcoal-deep);
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .52) 100%),
        var(--ps-city-hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ps-city-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .12) 55%, rgba(0, 0, 0, .28) 100%);
    pointer-events: none;
}
.ps-city-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.ps-city-hero-grid > * { min-width: 0; }
.ps-city-schedule { margin-top: 28px; width: 100%; max-width: none; }
.ps-city-schedule-title {
    margin: 0 0 12px;
    font-size: .95rem;
    font-weight: 800;
    text-align: left;
    color: #F7E964;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.ps-city-schedule-title:not(:first-child) { margin-top: 24px; }
.ps-schedule-cards {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ps-schedule-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
}
.ps-schedule-card-dates {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
}
.ps-schedule-card-dates time { font-style: normal; white-space: nowrap; }
.ps-schedule-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(243, 222, 7, .18);
    color: #F7E964;
    flex-shrink: 0;
}
.ps-schedule-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    font-size: .82rem;
}
.ps-schedule-price {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(243, 222, 7, .18);
    font-family: var(--ps-font-display);
    color: var(--ps-yellow);
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1;
}
.ps-schedule-venue {
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
}
.ps-schedule-places {
    color: #86efac;
    font-weight: 700;
}
.ps-schedule-card--tep {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.ps-schedule-card--tep .ps-schedule-card-dates {
    flex: 1;
    min-width: 200px;
}
.ps-schedule-card--tep .ps-schedule-venue {
    font-size: .82rem;
    text-align: right;
    max-width: 220px;
}
.ps-schedule-tep-day {
    display: inline-flex;
    min-width: 2.5rem;
    font-weight: 800;
    color: #F7E964;
    text-transform: lowercase;
}
.ps-schedule-tep-time {
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    white-space: nowrap;
}
.ps-schedule-cards--tep .ps-schedule-arrow {
    width: 24px;
    height: 24px;
}
.ps-schedule-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.ps-schedule-marquee-track {
    display: flex;
    width: max-content;
}
.ps-schedule-marquee.is-animated .ps-schedule-marquee-track {
    animation: ps-schedule-marquee 28s linear infinite;
}
.ps-schedule-marquee.is-animated:hover .ps-schedule-marquee-track {
    animation-play-state: paused;
}
.ps-schedule-marquee-group {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 14px;
    padding-right: 14px;
    flex-shrink: 0;
}
.ps-schedule-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
}
.ps-schedule-marquee-item time { font-style: normal; }
.ps-schedule-marquee-item .ps-schedule-arrow {
    width: 22px;
    height: 22px;
}
.ps-schedule-marquee-item .ps-schedule-price {
    font-size: 1rem;
    padding: 3px 10px;
}
.ps-schedule-marquee-item .ps-schedule-venue {
    font-size: .78rem;
    font-weight: 600;
    opacity: .9;
}
.ps-schedule-marquee-item .ps-schedule-places {
    font-size: .75rem;
    color: #86efac;
}
.ps-schedule-marquee--tep.is-animated .ps-schedule-marquee-track {
    animation-duration: 40s;
}
.ps-schedule-marquee-item--tep .ps-schedule-tep-day {
    min-width: 2.2rem;
    font-weight: 800;
    color: #F7E964;
    text-transform: lowercase;
}
.ps-schedule-marquee-item--tep .ps-schedule-tep-time {
    font-weight: 700;
    color: rgba(255, 255, 255, .92);
}
.ps-schedule-marquee-item--tep .ps-schedule-venue {
    font-size: .76rem;
    opacity: .85;
}
@keyframes ps-schedule-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
    .ps-schedule-card--tep { flex-direction: column; align-items: flex-start; }
    .ps-schedule-card--tep .ps-schedule-venue { text-align: left; max-width: none; }
}
.ps-price-card {
    position: sticky;
    top: 96px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    overflow: hidden;
}
.ps-price-card-inner {
    padding: 28px 24px 24px;
    text-align: center;
    background: transparent;
}
.ps-price-card-label {
    margin: 0 0 6px;
    font-size: .9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .88);
    letter-spacing: .01em;
}
.ps-price-card-amount {
    margin: 0 0 22px;
    font-family: var(--ps-font-display);
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: .02em;
    color: var(--ps-yellow);
}
.ps-price-card-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.ps-price-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
    transition: transform .2s var(--ps-ease), box-shadow .2s var(--ps-ease), background .2s, border-color .2s;
}
.ps-price-card-btn--dark {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .28);
    color: #fff !important;
    box-shadow: none;
}
.ps-price-card-btn--dark:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .4);
    transform: translateY(-1px);
    box-shadow: none;
}
.ps-price-card-btn--brand {
    background: linear-gradient(135deg, var(--ps-primary) 0%, var(--ps-primary-light) 100%);
    border-color: transparent;
    color: var(--ps-primary-ink) !important;
    box-shadow: 0 4px 16px rgba(243, 222, 7, .3);
}
.ps-price-card-btn--brand:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(243, 222, 7, .4);
    filter: brightness(1.04);
}
.ps-price-card-certs {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    min-width: 0;
}
@media (max-width: 960px) {
    .ps-price-card { position: static; }
    .ps-price-card-certs {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        padding-bottom: 2px;
    }
    .ps-price-card-certs::-webkit-scrollbar { display: none; }
}
.ps-section-head--left { text-align: left; margin-inline: 0; max-width: 720px; margin-bottom: 0; }
.ps-cert-band {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 0 28px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--ps-border);
}
.ps-cert-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(110, 231, 183, .14);
    border: 1px solid rgba(110, 231, 183, .25);
    color: #6ee7b7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.ps-price-card .ps-cert-pill--card {
    flex-shrink: 0;
    white-space: nowrap;
    gap: 4px;
    padding: 5px 7px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    box-shadow: none;
    scroll-snap-align: start;
}
.ps-price-card .ps-cert-pill--card svg {
    display: none;
}
.ps-cqp-intro { margin-bottom: 48px; }
.ps-cqp-intro .ps-section-head { margin-bottom: 28px; }
.ps-cqp-stats { margin-top: 8px; }
.ps-kpi-section .ps-stats-row { margin: 0; }
.ps-stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 32px 0;
}
.ps-stat-card-suffix {
    font-family: var(--ps-font-display);
    font-size: .65em;
    font-weight: 400;
    letter-spacing: .02em;
    color: var(--ps-yellow);
}
.ps-cqp-docs {
    padding: 32px;
    border-radius: var(--ps-radius-lg);
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(243, 222, 7, .06), transparent 55%),
        linear-gradient(180deg, var(--ps-surface) 0%, var(--ps-bg) 100%);
    border: 1px solid var(--ps-border);
    box-shadow: var(--ps-shadow);
}
.ps-cqp-docs-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.ps-cqp-docs-head h3 {
    margin: 8px 0 6px;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
}
.ps-cqp-docs-head p {
    margin: 0;
    color: var(--ps-muted);
    font-size: 14px;
    max-width: 52ch;
}
.ps-cqp-docs-badge {
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(243, 222, 7, .08);
    border: 1px solid rgba(243, 222, 7, .12);
    color: var(--ps-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.ps-doc-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.ps-doc-card {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    padding: 16px;
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: 14px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    height: 100%;
}
.ps-doc-card:hover {
    border-color: rgba(243, 222, 7, .25);
    box-shadow: var(--ps-glow);
    transform: translateY(-2px);
}
.ps-doc-card:hover .ps-doc-card-arrow { transform: translateX(3px); color: var(--ps-primary); }
.ps-doc-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(243, 222, 7, .1);
    border: 1px solid rgba(243, 222, 7, .15);
    color: var(--ps-yellow);
    font-family: var(--ps-font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1;
    display: grid;
    place-items: center;
}
.ps-doc-card-body {
    display: grid;
    gap: 3px;
    min-width: 0;
    flex: 1;
}
.ps-doc-card-body strong {
    font-family: var(--ps-font-display);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: .02em;
    color: var(--ps-yellow);
    line-height: 1.2;
}
.ps-doc-card-body small {
    font-size: 11px;
    font-weight: 600;
    color: var(--ps-muted);
    letter-spacing: .02em;
}
.ps-doc-card-arrow {
    flex-shrink: 0;
    color: var(--ps-muted);
    transition: transform .2s, color .2s;
}
.ps-doc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.ps-stat-box {
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    padding: 20px;
    text-align: center;
    transition: box-shadow .2s;
}
.ps-stat-box:hover { box-shadow: var(--ps-glow); }
.ps-stat-box strong {
    display: block;
    font-family: var(--ps-font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: .02em;
    color: var(--ps-yellow);
}
.ps-stat-box span { font-size: 12px; color: var(--ps-muted); font-weight: 600; margin-top: 4px; display: block; }
.ps-stat-box-hint {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--ps-muted);
    line-height: 1.4;
}
.ps-doc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.ps-doc-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ps-text);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 16px;
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: 10px;
    transition: border-color .2s, box-shadow .2s;
}
.ps-doc-list a:hover { border-color: var(--ps-primary); box-shadow: var(--ps-glow); color: var(--ps-primary); }

/* ── FAQ ── */
.ps-faq-page { padding-top: 0; }
.ps-faq-hero {
    padding: 48px 0 40px;
    background: linear-gradient(180deg, var(--ps-bg-alt) 0%, var(--ps-surface) 100%);
    border-bottom: 1px solid var(--ps-border);
    margin-bottom: 40px;
}
.ps-faq-hero-inner {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}
.ps-faq-hero-inner .ps-section-label { display: block; margin-bottom: 12px; }
.ps-faq-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--ps-text);
}
.ps-faq-hero p {
    margin: 0 auto 28px;
    max-width: 54ch;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ps-muted);
}
.ps-faq-search { max-width: 640px; margin: 0 auto; }
.ps-faq-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px 8px 20px;
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: 999px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, .2),
        0 1px 3px rgba(0, 0, 0, .15);
    transition: border-color .2s var(--ps-ease), box-shadow .2s var(--ps-ease);
}
.ps-faq-search-box:focus-within {
    border-color: rgba(243, 222, 7, .35);
    box-shadow:
        0 0 0 4px rgba(243, 222, 7, .1),
        0 8px 32px rgba(243, 222, 7, .08);
}
.ps-faq-search-icon {
    flex-shrink: 0;
    color: var(--ps-primary);
    opacity: .75;
}
.ps-faq-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font: inherit;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    color: var(--ps-text);
}
.ps-faq-search-input:focus { outline: none; }
.ps-faq-search-input::placeholder { color: #94a3b8; font-weight: 400; }
.ps-faq-search-input::-webkit-search-cancel-button { display: none; }
.ps-faq-search-clear {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--ps-muted);
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
    transition: background .2s, color .2s;
}
.ps-faq-search-clear:hover {
    background: var(--ps-bg-alt);
    color: var(--ps-primary);
}
.ps-faq-search-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ps-primary), var(--ps-primary-dark));
    color: var(--ps-primary-ink);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s var(--ps-ease), box-shadow .2s var(--ps-ease), filter .2s;
    box-shadow: 0 4px 14px rgba(243, 222, 7, .28);
}
.ps-faq-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(243, 222, 7, .35);
    filter: brightness(1.05);
}
.ps-faq-search-btn-icon { display: none; }
.ps-faq-search-meta {
    margin: 16px 0 0;
    font-size: 14px;
    color: var(--ps-muted);
}
.ps-faq-search-meta strong { color: var(--ps-text); font-weight: 700; }
.ps-faq-tabs {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 32px;
}
.ps-faq-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ps-faq-cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ps-muted);
    text-decoration: none;
    transition: background .2s, color .2s;
}
.ps-faq-cat-list a span {
    font-size: 12px;
    font-weight: 800;
    color: var(--ps-primary);
    background: rgba(243, 222, 7, .08);
    padding: 2px 8px;
    border-radius: 999px;
}
.ps-faq-cat-list a:hover,
.ps-faq-cat-list a.is-active {
    background: var(--ps-bg-alt);
    color: var(--ps-primary-dark);
}
.ps-faq-empty {
    padding: 40px 24px;
    text-align: center;
    border: 1px dashed var(--ps-border);
    border-radius: var(--ps-radius);
    background: var(--ps-bg-alt);
}
.ps-faq-empty p {
    margin: 0 0 16px;
    color: var(--ps-muted);
    font-size: 15px;
}
.ps-faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; }
.ps-faq-sidebar {
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    padding: 24px;
    height: fit-content;
    box-shadow: var(--ps-shadow-sm);
    position: sticky;
    top: calc(var(--ps-header-h) + 24px);
}
.ps-faq-sidebar h4 {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ps-muted);
}
.ps-faq-sidebar h4 + .ps-faq-tags { margin-top: 0; }
.ps-faq-sidebar h4:not(:first-child) { margin-top: 24px; }
.ps-faq-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.ps-faq-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--ps-bg);
    border: 1px solid var(--ps-border);
    color: var(--ps-muted);
    transition: all .2s;
}
.ps-faq-tag:hover { background: var(--ps-bg-alt); color: var(--ps-primary); border-color: rgba(243, 222, 7, .2); }
.ps-accordion details {
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    padding: 0;
    background: var(--ps-surface);
    overflow: hidden;
    transition: box-shadow .2s;
}
.ps-accordion details[open] { box-shadow: var(--ps-glow); border-color: rgba(243, 222, 7, .15); }
.ps-accordion details + details { margin-top: 12px; }
.ps-accordion summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    padding: 18px 20px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color .2s;
}
.ps-accordion summary::-webkit-details-marker { display: none; }
.ps-accordion summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--ps-bg);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--ps-primary);
    flex-shrink: 0;
    transition: transform .25s, background .25s;
}
.ps-accordion details[open] summary::after {
    content: "−";
    background: var(--ps-primary);
    color: var(--ps-primary-ink);
    transform: rotate(180deg);
}
.ps-accordion details[open] summary { color: var(--ps-primary); }
.ps-accordion p { margin: 0; padding: 0 20px 20px; font-size: 14px; color: var(--ps-muted); line-height: 1.65; }
.ps-faq-answer {
    margin: 0;
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--ps-muted);
    line-height: 1.65;
}
.ps-faq-answer p { margin: 0 0 12px; padding: 0; }
.ps-faq-answer p:last-child { margin-bottom: 0; }
.ps-faq-answer ul, .ps-faq-answer ol { margin: 0 0 12px; padding-left: 20px; }
.ps-faq-answer li { margin-bottom: 6px; }
.ps-faq-answer strong { color: var(--ps-text); font-weight: 600; }

/* ── Utility pages ── */
.ps-panel {
    max-width: 560px;
    margin: 64px auto;
    padding: 40px;
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius-lg);
    box-shadow: var(--ps-shadow);
    background: var(--ps-surface);
}
.ps-panel h1 { margin: 0 0 12px; font-size: 2rem; font-weight: 800; letter-spacing: -.03em; }
.ps-form-field { margin-bottom: 20px; }
.ps-form-field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--ps-text); }
.ps-form-field input, .ps-form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--ps-border);
    border-radius: 12px;
    font: inherit;
    transition: border-color .2s, box-shadow .2s;
}
.ps-form-field input:focus, .ps-form-field textarea:focus {
    outline: none;
    border-color: var(--ps-primary);
    box-shadow: 0 0 0 3px rgba(243, 222, 7, .12);
}

/* ── Reveal on scroll ── */
.ps-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ps-ease), transform .6s var(--ps-ease);
}
.ps-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Animations ── */
@keyframes ps-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes ps-slide-up {
    from { transform: translateY(120%); }
    to { transform: translateY(0); }
}
@keyframes ps-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Responsive ── */
@media (max-width: 1180px) {
    .ps-nav > a,
    .ps-nav-item > button { font-size: 13px; padding: 0 12px; height: 44px; }
    .ps-nav-item--featured > button { padding: 0 14px; height: 44px; margin-right: 4px; }
    .ps-header-inner { gap: 16px; }
}

@media (max-width: 1024px) {
    .ps-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ps-footer-top { grid-template-columns: 1fr; }
    .ps-footer-brand { max-width: none; }
    .ps-footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ps-footer-cities-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .ps-mega {
        width: min(760px, calc(100vw - 32px));
        grid-template-columns: 1fr 1.2fr .8fr;
        gap: 20px;
        padding: 20px;
    }
    .ps-doc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── Page Organisme ── */
.ps-organisme-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.ps-organisme-pillar {
    position: relative;
    padding: 28px 24px 26px;
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, var(--ps-surface) 100%);
    box-shadow: var(--ps-shadow-sm);
    overflow: hidden;
    transition: transform .25s var(--ps-ease), box-shadow .25s, border-color .25s;
}
.ps-organisme-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, var(--ps-yellow), transparent);
    opacity: .85;
}
.ps-organisme-pillar:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 222, 7, .22);
    box-shadow: var(--ps-glow);
}
.ps-organisme-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid var(--ps-border);
}
.ps-organisme-pillar--purple .ps-organisme-pillar-icon {
    color: var(--ps-primary);
    background: rgba(243, 222, 7, .14);
}
.ps-organisme-pillar--blue .ps-organisme-pillar-icon {
    color: #7dd3fc;
    background: rgba(125, 211, 252, .14);
}
.ps-organisme-pillar--green .ps-organisme-pillar-icon {
    color: #6ee7b7;
    background: rgba(110, 231, 183, .14);
}
.ps-organisme-pillar h3 {
    margin: 0 0 10px;
    font-family: var(--ps-font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: .02em;
    color: var(--ps-yellow);
    line-height: 1.15;
}
.ps-organisme-pillar p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--ps-text-dim);
    font-weight: 500;
}

.ps-organisme-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    counter-reset: organisme-step;
    position: relative;
}
.ps-organisme-steps::before {
    content: '';
    position: absolute;
    top: 42px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 222, 7, .35), transparent);
    pointer-events: none;
}
.ps-organisme-step {
    position: relative;
    padding: 72px 24px 28px;
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,.03), var(--ps-surface));
    box-shadow: var(--ps-shadow-sm);
    transition: transform .25s var(--ps-ease), box-shadow .25s, border-color .25s;
}
.ps-organisme-step:hover {
    transform: translateY(-3px);
    border-color: rgba(243, 222, 7, .2);
    box-shadow: var(--ps-glow);
}
.ps-organisme-step::before {
    counter-increment: organisme-step;
    content: counter(organisme-step);
    position: absolute;
    left: 24px;
    top: 22px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-family: var(--ps-font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: .02em;
    color: var(--ps-yellow);
    background: rgba(243, 222, 7, .1);
    border: 1px solid rgba(243, 222, 7, .18);
}
.ps-organisme-step h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ps-text);
}
.ps-organisme-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--ps-text-dim);
    font-weight: 500;
}

.ps-financer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.ps-financer-card {
    padding: 24px;
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,.03), var(--ps-surface));
    box-shadow: var(--ps-shadow-sm);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ps-financer-card:hover {
    border-color: rgba(243, 222, 7, .22);
    box-shadow: var(--ps-glow);
    transform: translateY(-2px);
}
.ps-financer-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}
.ps-financer-card-mark {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid var(--ps-border);
    background: var(--ps-surface);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
    padding: 10px;
}
.ps-financer-card-mark svg {
    width: 24px;
    height: 24px;
}
.ps-financer-card-mark--blue {
    color: #7dd3fc;
    background: rgba(125, 211, 252, .12);
    border-color: rgba(125, 211, 252, .2);
}
.ps-financer-card-mark--purple {
    color: var(--ps-yellow);
    background: rgba(243, 222, 7, .12);
    border-color: rgba(243, 222, 7, .2);
}
.ps-financer-card-mark--gold {
    color: #f0b429;
    background: rgba(240, 180, 41, .12);
    border-color: rgba(240, 180, 41, .2);
}
.ps-financer-card-mark--green {
    color: #6ee7b7;
    background: rgba(110, 231, 183, .12);
    border-color: rgba(110, 231, 183, .2);
}
.ps-financer-card-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.ps-financer-card-title {
    min-width: 0;
}
.ps-financer-card--blue .ps-financer-card-for { color: #7dd3fc; }
.ps-financer-card--purple .ps-financer-card-for { color: var(--ps-primary); }
.ps-financer-card--gold .ps-financer-card-for { color: #f0b429; }
.ps-financer-card--green .ps-financer-card-for { color: #6ee7b7; }
.ps-financer-card h3 {
    margin: 0;
    font-family: var(--ps-font-display);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: .02em;
    color: var(--ps-yellow);
    line-height: 1.15;
}
.ps-financer-card-for {
    margin: 4px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--ps-primary);
}
.ps-financer-card > p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--ps-text-dim);
    font-weight: 500;
}
.ps-organisme-finance-cta {
    margin-top: 36px;
    text-align: center;
}
.ps-organisme-finance-cta > p {
    margin: 0 0 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ps-text);
}

.ps-organisme-city-search {
    margin: 28px 0 24px;
    max-width: 420px;
}
.ps-organisme-city-search-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ps-text);
}
.ps-organisme-city-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid var(--ps-border);
    border-radius: 14px;
    background: var(--ps-surface);
    box-shadow: var(--ps-shadow-sm);
}
.ps-organisme-city-search-box svg { color: var(--ps-muted); flex-shrink: 0; }
.ps-organisme-city-search-input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 14px 0;
    font: inherit;
    font-size: 15px;
    color: var(--ps-text);
    outline: none;
}
.ps-organisme-city-search-meta {
    margin: 8px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--ps-muted);
}
.ps-organisme-cities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.ps-organisme-city-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,.03), var(--ps-surface));
    box-shadow: var(--ps-shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: transform .25s var(--ps-ease), box-shadow .25s, border-color .25s;
}
.ps-organisme-city-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-glow);
    border-color: rgba(243, 222, 7, .24);
}
.ps-organisme-city-card[hidden] { display: none; }
.ps-organisme-city-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.ps-organisme-city-pin {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--ps-primary);
    background: rgba(243, 222, 7, .08);
}
.ps-organisme-city-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ps-muted);
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--ps-surface-alt);
}
.ps-organisme-city-card h3 {
    margin: 0;
    font-family: var(--ps-font-display);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: .02em;
    color: var(--ps-yellow);
    line-height: 1.15;
}
.ps-organisme-city-card > p {
    margin: 0;
    flex: 1;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ps-muted);
}
.ps-organisme-city-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ps-primary);
}
.ps-organisme-city-empty {
    margin: 20px 0 0;
    text-align: center;
    font-size: 14px;
    color: var(--ps-muted);
}
.ps-organisme-city-empty[hidden] { display: none; }

@media (max-width: 960px) {
    :root { --ps-header-h: 72px; }
    .ps-header-inner { grid-template-columns: 1fr auto; gap: 12px; min-height: 72px; padding: 4px 0; }
    .ps-header .ps-logo--dark .ps-logo-img {
        height: 52px;
        max-width: 52px;
    }
    .ps-hero-grid, .ps-city-hero-grid, .ps-testimonials, .ps-instagram-grid, .ps-news-grid, .ps-faq-layout { grid-template-columns: 1fr; }
    .ps-stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ps-counters { grid-template-columns: repeat(2, 1fr); }
    .ps-nav, .ps-header .ps-cta:not(.ps-mobile-panel .ps-cta) { display: none; }
    .ps-burger { display: flex; }
    .ps-hero { padding: 48px 0 56px; }
    .ps-hero-media { padding: 1rem; min-height: 300px; border-radius: 22px; }
    .ps-hero-media-img { width: min(100%, 280px); }
    .ps-hero-trust { max-width: 100%; gap: 16px 22px; }
    .ps-section { padding: 56px 0; }
    .ps-kpi-grid,
    .ps-kpi-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ps-tab-features { grid-template-columns: 1fr; }
    .ps-tab-finance-grid { grid-template-columns: 1fr; }
    .ps-tab-info-grid { grid-template-columns: 1fr; }
    .ps-tabs-panels { padding: 24px 20px; }
    .ps-tabs { display: flex; width: 100%; justify-content: stretch; }
    .ps-tab { flex: 1; text-align: center; padding: 10px 12px; font-size: 12px; }
    .ps-organisme-pillars,
    .ps-organisme-steps,
    .ps-financer-grid { grid-template-columns: 1fr; }
    .ps-organisme-steps::before { display: none; }
    .ps-organisme-step { padding-left: 24px; padding-top: 68px; }
    .ps-organisme-step::before { left: 24px; top: 18px; }
}

@media (max-width: 1024px) {
    .ps-formation-layout {
        grid-template-columns: 1fr;
    }
    .ps-formation-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ps-formation-buy-btn--solo { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .ps-formation-show {
        padding-top: 0;
        padding-bottom: calc(56px + 76px);
    }
    .ps-formation-layout {
        width: 100%;
        margin-inline: 0;
        gap: 0;
    }
    .ps-formation-main { display: block; }
    .ps-formation-hero-cover {
        border-radius: 0 0 24px 24px;
        aspect-ratio: 16 / 10;
        box-shadow: none;
        margin-bottom: 0;
    }
    .ps-formation-hero-level {
        top: 16px;
        left: 16px;
    }
    .ps-formation-hero-content {
        position: relative;
        z-index: 1;
        margin-top: -20px;
        padding: 24px 20px 0;
        background: var(--ps-surface);
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -12px 40px rgba(0, 0, 0, .3);
    }
    .ps-formation-hero-title {
        font-size: clamp(1.5rem, 6vw, 1.85rem);
        margin-bottom: 14px;
    }
    .ps-formation-hero-meta { margin-bottom: 16px; }
    .ps-formation-hero-desc {
        font-size: 14px;
    }
    .ps-formation-sidebar {
        grid-template-columns: 1fr;
        padding: 24px 20px 0;
        gap: 16px;
    }
    .ps-formation-block {
        margin-top: 32px;
        padding-inline: 20px;
    }
    .ps-formation-block h2 {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    .ps-formation-sticky-cta {
        display: flex;
        align-items: center;
        gap: 12px;
        position: fixed;
        inset: auto 0 0;
        z-index: 90;
        padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
        background: rgba(0, 0, 0, .94);
        backdrop-filter: blur(14px);
        border-top: 1px solid var(--ps-border);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, .3);
    }
    .ps-formation-sticky-price {
        display: grid;
        gap: 2px;
        flex-shrink: 0;
        min-width: 72px;
    }
    .ps-formation-sticky-badge {
        display: inline-flex;
        width: fit-content;
        padding: 2px 7px;
        border-radius: 999px;
        background: rgba(110, 231, 183, .14);
        color: #6ee7b7;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .03em;
    }
    .ps-formation-sticky-price strong {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--ps-text);
        line-height: 1;
    }
    .ps-formation-sticky-price s {
        font-size: 12px;
        color: #94a3b8;
    }
    .ps-formation-sticky-cta .ps-cta {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .ps-faq-hero { padding: 32px 0 28px; margin-bottom: 28px; }
    .ps-faq-hero p { font-size: 15px; margin-bottom: 22px; }
    .ps-faq-search-box {
        border-radius: 16px;
        padding: 6px 6px 6px 14px;
        gap: 8px;
    }
    .ps-faq-search-input { padding: 10px 0; font-size: 16px; }
    .ps-faq-search-btn { padding: 11px 14px; }
    .ps-faq-search-btn-label { display: none; }
    .ps-faq-search-btn-icon { display: block; }
    .ps-faq-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }
    .ps-faq-tabs::-webkit-scrollbar { display: none; }
    .ps-faq-tabs .ps-tab { flex-shrink: 0; white-space: nowrap; }
}

@media (max-width: 640px) {
    .ps-stats-band { grid-template-columns: 1fr; padding: 12px; }
    .ps-footer-main { gap: 32px; }
    .ps-footer-top { padding-bottom: 28px; gap: 28px; }
    .ps-footer-nav { grid-template-columns: 1fr; }
    .ps-footer-cities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ps-footer-cities-band { padding: 20px; }
    .ps-formations-carousel {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ps-carousel-btn {
        display: none;
    }
    .ps-formations-scroller {
        scrollbar-width: thin;
        scrollbar-color: rgba(243, 222, 7, .35) transparent;
        padding-bottom: 8px;
    }
    .ps-formations-scroller::-webkit-scrollbar { display: block; height: 6px; }
    .ps-footer-bottom { flex-direction: column; align-items: flex-start; }
    .ps-footer-partners-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    .ps-footer-partner-logo,
    .ps-footer-partner-logo--cpf { max-width: 70%; max-height: 64px; }
    .ps-doc-grid { grid-template-columns: 1fr; }
    .ps-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .ps-hero-trust {
        justify-content: flex-start;
        gap: 14px 18px;
    }
    .ps-hero-trust-logo {
        height: 30px;
        max-width: 96px;
    }
    .ps-hero-trust-logo--qualiopi { max-width: 92px; }
    .ps-hero-trust-logo--cpf { height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
}

/* ── Legal pages ── */
.ps-legal-hero {
    padding: 48px 0 32px;
    background: linear-gradient(180deg, var(--ps-bg-alt) 0%, var(--ps-surface) 100%);
    border-bottom: 1px solid var(--ps-border);
}
.ps-legal-hero h1 {
    margin: 8px 0 12px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
}
.ps-legal-hero-lead {
    margin: 0;
    max-width: 60ch;
    color: var(--ps-muted);
    font-size: 16px;
    line-height: 1.6;
}
.ps-legal-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}
.ps-legal-nav {
    position: sticky;
    top: calc(var(--ps-header-h) + 20px);
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    padding: 12px;
    box-shadow: var(--ps-shadow-sm);
}
.ps-legal-nav nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ps-legal-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ps-muted);
    text-decoration: none;
    transition: background .2s, color .2s;
}
.ps-legal-nav a:hover {
    background: var(--ps-bg-alt);
    color: var(--ps-primary);
}
.ps-legal-nav a.is-active {
    background: var(--ps-bg-alt);
    color: var(--ps-primary-dark);
}
.ps-legal-content {
    background: var(--ps-surface);
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius-lg);
    padding: 36px 40px;
    box-shadow: var(--ps-shadow-sm);
}
.ps-legal-content h2 {
    margin: 32px 0 12px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ps-text);
}
.ps-legal-content h2:first-child { margin-top: 0; }
.ps-legal-content h3 {
    margin: 20px 0 8px;
    font-size: 1rem;
    font-weight: 700;
}
.ps-legal-content p,
.ps-legal-content li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ps-muted);
}
.ps-legal-content p { margin: 0 0 14px; }
.ps-legal-content a { color: var(--ps-primary); font-weight: 600; }
.ps-legal-list {
    margin: 0 0 16px;
    padding-left: 0;
    list-style: none;
}
.ps-legal-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}
.ps-legal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ps-primary-light);
}
.ps-legal-ol {
    margin: 0 0 16px;
    padding-left: 1.25rem;
}
.ps-legal-ol li { margin-bottom: 8px; }
.ps-legal-table-wrap { overflow-x: auto; margin: 16px 0 20px; }
.ps-legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.ps-legal-table th,
.ps-legal-table td {
    padding: 12px 14px;
    border: 1px solid var(--ps-border);
    text-align: left;
    vertical-align: top;
}
.ps-legal-table th {
    background: var(--ps-bg-alt);
    font-weight: 700;
    color: var(--ps-text);
}
.ps-legal-table code {
    font-size: 12px;
    background: var(--ps-bg);
    padding: 2px 6px;
    border-radius: 4px;
}
.ps-legal-cgv-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    margin-bottom: 24px;
    border-radius: 12px;
    background: var(--ps-bg-alt);
    border: 1px solid rgba(243, 222, 7, .12);
}
.ps-legal-note {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 12px;
    background: var(--ps-bg);
    border-left: 4px solid var(--ps-primary);
}
.ps-legal-note p:last-child { margin-bottom: 0; }
.ps-legal-updated {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid var(--ps-border);
    font-size: 13px !important;
    color: var(--ps-muted) !important;
}

@media (max-width: 960px) {
    .ps-legal-layout { grid-template-columns: 1fr; }
    .ps-legal-nav { position: static; }
    .ps-legal-nav nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .ps-legal-content { padding: 24px 20px; }
}

/* ── Bouton flottant — reprendre inscription ── */
.ps-resume-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 95;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: min(320px, calc(100vw - 32px));
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ps-primary), var(--ps-primary-light));
    color: var(--ps-primary-ink);
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(243, 222, 7, .42);
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
    transition: transform .45s var(--ps-ease), opacity .35s ease, bottom .35s ease;
}
.ps-resume-fab.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.ps-resume-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(243, 222, 7, .5);
    filter: brightness(1.04);
}
.ps-resume-fab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    flex-shrink: 0;
}
.ps-resume-fab-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
    min-width: 0;
}
.ps-resume-fab-text strong {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
}
.ps-resume-fab-text small {
    font-size: 11px;
    font-weight: 600;
    opacity: .88;
}
body:has(.ps-cookie.is-visible) .ps-resume-fab.is-visible {
    bottom: 200px;
}
@media (max-width: 640px) {
    .ps-resume-fab {
        left: 16px;
        right: 16px;
        bottom: 16px;
        justify-content: center;
    }
    body:has(.ps-cookie.is-visible) .ps-resume-fab.is-visible {
        bottom: 196px;
    }
}

/* ── Bouton — formation près de chez moi (topbar) ── */
.ps-nearby-fab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: min(248px, calc(100vw - 32px));
    padding: 8px 12px 8px 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    background: rgba(12, 12, 12, .82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--ps-text-dim);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .28);
    cursor: pointer;
    transition: transform .2s var(--ps-ease), opacity .2s ease, border-color .2s, background .2s, box-shadow .2s;
}
.ps-nearby-fab.is-visible {
    opacity: .92;
}
.ps-nearby-fab:hover {
    transform: translateY(-1px);
    opacity: 1;
    border-color: rgba(243, 222, 7, .22);
    background: rgba(18, 18, 18, .9);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .34);
}
.ps-nearby-fab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(243, 222, 7, .14);
    color: var(--ps-primary);
    flex-shrink: 0;
}
.ps-nearby-fab-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.2;
    min-width: 0;
    text-align: left;
}
.ps-nearby-fab-text strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--ps-text-dim);
}
.ps-nearby-fab-text small {
    font-size: 10px;
    font-weight: 500;
    color: var(--ps-muted);
    opacity: .9;
}
.ps-nearby-panel {
    width: min(100%, 560px);
    max-height: min(92vh, 720px);
}
.ps-nearby-body {
    padding: 36px 32px 32px;
}
.ps-nearby-form {
    margin-top: 8px;
}
.ps-nearby-label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ps-muted);
}
.ps-nearby-input-wrap {
    position: relative;
}
.ps-nearby-input {
    width: 100%;
    padding: 12px 120px 12px 14px;
    border: 1px solid var(--ps-border);
    border-radius: 12px;
    background: var(--ps-bg-alt);
    color: var(--ps-text);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
}
.ps-nearby-input:focus {
    outline: none;
    border-color: rgba(243, 222, 7, .45);
    box-shadow: 0 0 0 3px rgba(243, 222, 7, .12);
}
.ps-nearby-search-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    border: 0;
    border-radius: 9px;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--ps-primary), var(--ps-primary-light));
    color: var(--ps-primary-ink);
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.ps-nearby-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 3;
    background: var(--ps-surface-alt);
    border: 1px solid var(--ps-border);
    border-radius: 12px;
    box-shadow: var(--ps-shadow);
    overflow: hidden;
}
.ps-nearby-suggestion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid var(--ps-border);
    background: transparent;
    color: var(--ps-text);
    text-align: left;
    cursor: pointer;
}
.ps-nearby-suggestion:last-child { border-bottom: 0; }
.ps-nearby-suggestion:hover { background: rgba(243, 222, 7, .08); }
.ps-nearby-suggestion span {
    font-size: 14px;
    font-weight: 700;
}
.ps-nearby-suggestion small {
    font-size: 11px;
    color: var(--ps-muted);
    font-weight: 600;
}
.ps-nearby-error {
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #fca5a5;
}
.ps-nearby-result {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--ps-border);
}
.ps-nearby-result-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--ps-bg-alt);
    border: 1px solid rgba(243, 222, 7, .16);
}
.ps-nearby-result-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff;
    border: 2px solid rgba(243, 222, 7, .4);
    display: grid;
    place-items: center;
    padding: 8px;
    flex-shrink: 0;
}
.ps-nearby-result-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ps-nearby-result-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.ps-nearby-result-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ps-yellow);
}
.ps-nearby-result-copy strong {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.02em;
}
#ps-nearby-result-meta {
    font-size: 13px;
    color: var(--ps-muted);
    font-weight: 600;
}
.ps-nearby-soon-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(243, 222, 7, .12);
    border: 1px solid rgba(243, 222, 7, .35);
    color: var(--ps-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
}
.ps-nearby-soon-badge[hidden] { display: none !important; }
.ps-nearby-result-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}
.ps-nearby-city-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--ps-yellow);
    text-decoration: none;
}
.ps-nearby-city-link:hover { color: var(--ps-yellow-light); }
.ps-nearby-success {
    margin-top: 20px;
    padding: 22px 18px;
    border-radius: 14px;
    background: rgba(243, 222, 7, .08);
    border: 1px solid rgba(243, 222, 7, .18);
    text-align: center;
}
.ps-nearby-success-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--ps-primary), var(--ps-primary-light));
    color: var(--ps-primary-ink);
    font-size: 20px;
    font-weight: 800;
}
.ps-nearby-success strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}
.ps-nearby-success p {
    margin: 0 0 16px;
    color: var(--ps-muted);
    font-size: 14px;
    font-weight: 600;
}
@media (max-width: 640px) {
    .ps-nearby-body { padding: 24px 20px 28px; }
    .ps-nearby-input { padding-right: 14px; }
    .ps-nearby-search-btn {
        position: static;
        width: 100%;
        margin-top: 8px;
        padding: 11px 14px;
    }
    .ps-nearby-result-actions .ps-cta,
    .ps-nearby-success .ps-cta {
        width: 100%;
    }
}
