/* ═══════════════════════════════════════════
   TICKETÔ — STYLE.CSS
═══════════════════════════════════════════ */

:root {
    --primary: #1a7a4a;
    --primary-dark: #145f39;
    --primary-light: #22a060;
    --primary-glow: rgba(26, 122, 74, .25);
    --primary-ultra: rgba(26, 122, 74, .07);
    --bg: #ffffff;
    --bg2: #f7faf8;
    --bg3: #eef5f1;
    --surface: #ffffff;
    --surface2: #f4f8f5;
    --border: #d9e9e0;
    --border2: #e8eeeb;
    --text: #111827;
    --text-muted: #5c7368;
    --text-dim: #9db5aa;
    --radius: 14px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 110px 7%;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.15;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section header ── */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: clamp(30px, 4vw, 50px);
    margin: 16px 0 18px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--primary-ultra);
    border: 1px solid var(--border);
    color: var(--primary-light);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

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

.reveal-delay {
    transition-delay: .2s;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    transition: .25s;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary.full {
    width: 100%;
    justify-content: center;
}

.btn-primary-sm {
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: .875rem;
    font-weight: 600;
    transition: .2s;
}

.btn-primary-sm:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.btn-ghost {
    color: rgba(255,255,255,.80);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: .875rem;
    transition: .2s;
}

.btn-ghost:hover {
    color: #fff;
    background: rgba(255,255,255,.10);
}

/* Navbar scrollée → texte sombre */
.navbar.scrolled .btn-ghost {
    color: var(--text-muted);
}
.navbar.scrolled .btn-ghost:hover {
    color: var(--text);
    background: var(--surface2);
}

/* ── Navbar connectée ─────────────────── */
.nav-user-hello {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    white-space: nowrap;
}
.nav-user-hello i {
    font-size: 1rem;
    color: var(--accent, #4ade80);
}
.navbar.scrolled .nav-user-hello {
    color: var(--text-muted);
}
.navbar.scrolled .nav-user-hello i {
    color: var(--primary);
}

/* Bouton dashboard — version légèrement différenciée */
.nav-btn-dashboard {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary) !important;
    box-shadow: 0 2px 12px rgba(26,122,74,.35);
}
.nav-btn-dashboard:hover {
    background: var(--primary-light) !important;
    box-shadow: 0 4px 18px rgba(26,122,74,.45);
    transform: translateY(-1px);
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(255,255,255,.30);
    color: rgba(255,255,255,.90);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 500;
    transition: .25s;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,.06);
}

.btn-outline-hero:hover {
    border-color: var(--primary-light);
    color: #fff;
    background: rgba(26,122,74,.25);
}

/* ══════════════════════ NAVBAR ══════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    z-index: 1000;
    transition: background .3s, box-shadow .3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border2);
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    flex-shrink: 0;
    color: #fff;
    transition: color .3s;
}

.logo span {
    color: var(--primary-light);
}

.navbar.scrolled .logo {
    color: var(--text);
}

/* ── Switch logo selon fond navbar ── */
.logo-on-dark  { display: block; }
.logo-on-white { display: none;  }
.navbar.scrolled .logo-on-dark  { display: none;  }
.navbar.scrolled .logo-on-white { display: block; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    font-weight: 500;
    transition: .2s;
}

.nav-links a:hover {
    color: #fff;
}

/* Navbar scrollée → liens sombres */
.navbar.scrolled .nav-links a {
    color: var(--text-muted);
}
.navbar.scrolled .nav-links a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════ HERO ══════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(105deg,
            rgba(5,15,9,.92)  0%,
            rgba(5,15,9,.80)  35%,
            rgba(0, 0, 0, 0.603) 65%,
            rgba(5,15,9,.70)  100%),
        url(assetes/pretty-black-girl-cafe.jpg) center/cover no-repeat;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(26,122,74,.22) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-glow-2 {
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(34,160,96,.14) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(26,122,74,.12) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(26,122,74,.12) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 80% 50%, black 20%, transparent 80%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
    min-width: 0;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .82rem;
    color: rgba(255,255,255,.82);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 160, 96, .4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34, 160, 96, 0);
    }
}

.hero-left h1 {
    font-size: clamp(36px, 5vw, 68px);
    margin-bottom: 22px;
    letter-spacing: -.5px;
    color: #ffffff;
}

.hero-sub {
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--primary-light);
    font-family: 'Poppins', sans-serif;
}

.stat-item span {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.2);
}

/* ── Dashboard mockup ── */
.mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.mockup-card {
    background: #1a2b1f;
    border: 1px solid rgba(26, 122, 74, .25);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
    position: relative;
    z-index: 2;
    color: #eef7f1;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.mockup-dots {
    display: flex;
    gap: 5px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
}

.mockup-dots span:first-child {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
    background: #22c55e;
}

.mockup-title {
    flex: 1;
    font-size: .75rem;
    color: rgba(238, 247, 241, .5);
    font-weight: 600;
}

.mockup-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .7rem;
    color: var(--primary-light);
    font-weight: 600;
}

.mockup-live span {
    width: 7px;
    height: 7px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.mstat {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mstat i {
    font-size: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    color: rgba(238, 247, 241, .55);
}

.mstat.green i {
    color: var(--primary-light);
    background: rgba(26, 122, 74, .2);
}

.mstat.blue i {
    color: #60a5fa;
    background: rgba(37, 99, 235, .15);
}

.mstat-val {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.2;
    color: #eef7f1;
}

.mstat-lbl {
    display: block;
    font-size: .65rem;
    color: rgba(238, 247, 241, .5);
}

.mockup-chart {
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
}

.chart-label {
    font-size: .65rem;
    color: rgba(238, 247, 241, .5);
    margin-bottom: 10px;
    font-weight: 600;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 70px;
}

.cb {
    flex: 1;
    height: var(--h);
    background: rgba(255, 255, 255, .12);
    border-radius: 3px 3px 0 0;
    position: relative;
}

.cb span {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .5rem;
    color: rgba(238, 247, 241, .4);
}

.cb.active {
    background: var(--primary);
}

.mockup-guests {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mg-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    background: rgba(255, 255, 255, .07);
    border-radius: 9px;
}

.mg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.mg-info {
    flex: 1;
    min-width: 0;
}

.mg-info strong {
    display: block;
    font-size: .76rem;
    color: #eef7f1;
}

.mg-info span {
    font-size: .63rem;
    color: rgba(238, 247, 241, .5);
}

.mg-badge {
    font-size: .6rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3px;
}

.mg-badge.present {
    background: rgba(26, 122, 74, .25);
    color: #4ade80;
}

.mg-badge.absent {
    background: rgba(255, 255, 255, .07);
    color: rgba(238, 247, 241, .45);
}

/* ── Float elements ── */
.float-ticket {
    position: absolute;
    bottom: -24px;
    right: -30px;
    background: #fff;
    border: 1px solid var(--border2);
    border-radius: 16px;
    padding: 14px;
    z-index: 3;
    width: 155px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
}

.ft-top {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .65rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.ft-top i {
    color: var(--primary-light);
}

.ft-event {
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text);
}

.ft-detail {
    font-size: .62rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ft-qr {
    display: flex;
    justify-content: center;
}

.qr-fake {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    width: 54px;
}

.qr-fake div {
    aspect-ratio: 1;
    background: var(--text);
    border-radius: 2px;
    opacity: .7;
}

.qr-fake div:nth-child(2),
.qr-fake div:nth-child(4),
.qr-fake div:nth-child(6) {
    opacity: .15;
}

.float-notif {
    position: absolute;
    top: -22px;
    left: -24px;
    background: #f0faf5;
    border: 1px solid rgba(34, 160, 96, .3);
    border-radius: 14px;
    padding: 11px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
    white-space: nowrap;
}

.float-notif i {
    color: var(--primary-light);
    font-size: 1rem;
}

.float-notif strong {
    display: block;
    font-size: .76rem;
    color: var(--text);
}

.float-notif span {
    display: block;
    font-size: .62rem;
    color: var(--text-muted);
}

.float {
    animation: float1 4s ease-in-out infinite;
}

.float-slow {
    animation: float2 5s ease-in-out infinite;
}

.float-fast {
    animation: float3 3.5s ease-in-out infinite;
}

@keyframes float1 {

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

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

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

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

@keyframes float3 {

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

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

/* ══════════════════════ LOGOS BAR ══════════════════════ */
.logos-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
    text-align: center;
    overflow: hidden;
}

.logos-label {
    color: var(--text-dim);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 28px;
}

/* Conteneur avec masques de fondu */
.logos-marquee-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logos-fade-left,
.logos-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.logos-fade-left  { left: 0;  background: linear-gradient(to right,  #fff, transparent); }
.logos-fade-right { right: 0; background: linear-gradient(to left, #fff, transparent); }

/* Piste défilante */
.logos-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
}
.logos-marquee:hover { animation-play-state: paused; }

.logos-track {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

/* Item logo image */
.logo-img-item {
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border2);
    transition: .3s;
}
.logo-img-item:last-child { border-right: none; }

.logo-img-item img {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(.45);
    transition: filter .35s ease;
}
.logo-img-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Animation */
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════ STATS BAND ══════════════════════ */
.stats-band {
    background: linear-gradient(135deg, #0a1f12 0%, #0d2618 50%, #091a0e 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 70px 7%;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26, 122, 74, .12), transparent);
    pointer-events: none;
}

.stats-band-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.sband-card {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border2);
    border-radius: var(--radius-lg);
    transition: .3s;
}

.sband-card:hover {
    background: rgba(255, 255, 255, .06);
    border-color: var(--border);
}

.sband-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(from var(--c) r g b / .12);
    border: 1px solid rgba(from var(--c) r g b / .25);
}

.sband-icon {
    background: color-mix(in srgb, var(--c) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--c) 25%, transparent);
}

.sband-icon i {
    font-size: 1.4rem;
    color: var(--c);
}

.sband-num {
    font-size: 2.6rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #eef7f1;
    line-height: 1;
    margin-bottom: 8px;
}

.sband-lbl {
    color: rgba(238, 247, 241, .65);
    font-size: .85rem;
}

/* ══════════════════════ EVENTS PREVIEW ══════════════════════ */
.events-preview {
    background: var(--surface, #f8faf9);
    padding: 90px 0;
}

.events-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* ── Skeleton loader ── */
.ep-skeleton {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.ep-skel-img  { height: 190px; }
.ep-skel-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.ep-skel-line { height: 13px; border-radius: 6px; }
.ep-skel-line.tall   { height: 20px; }
.ep-skel-line.medium { width: 75%; }
.ep-skel-line.short  { width: 50%; }
.ep-shimmer {
    background: linear-gradient(90deg, #edf2ef 25%, #f5f8f6 50%, #edf2ef 75%);
    background-size: 200% 100%;
    animation: epShimmer 1.4s infinite;
}
@keyframes epShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Carte événement ── */
.ep-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.ep-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,.12);
    border-color: rgba(26,122,74,.15);
}

.ep-img {
    height: 190px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2e18, #1a7a4a);
    flex-shrink: 0;
}
.ep-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.ep-card:hover .ep-img img { transform: scale(1.05); }
.ep-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px;
    color: rgba(255,255,255,.35); font-size: .8rem;
}
.ep-img-placeholder i { font-size: 2rem; color: rgba(255,255,255,.2); }

.ep-cat-badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .7rem; font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.ep-price-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(0,0,0,.50);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .76rem; font-weight: 700;
    backdrop-filter: blur(8px);
}
.ep-price-badge.free { background: rgba(26,122,74,.80); }

.ep-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ep-name {
    font-size: .98rem; font-weight: 800;
    color: #111827;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ep-meta { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.ep-meta-row {
    display: flex; align-items: center; gap: 7px;
    font-size: .78rem; color: #6b7280;
}
.ep-meta-row i { color: var(--primary-light); font-size: .72rem; width: 13px; text-align: center; }

.ep-footer {
    padding: 12px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex; align-items: center; justify-content: space-between;
}
.ep-price-label { font-size: .9rem; font-weight: 800; color: var(--primary-light); }
.ep-price-label.free-color { color: #16a34a; }
.ep-btn-see {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary);
    color: #fff;
    font-size: .78rem; font-weight: 700;
    padding: 7px 16px; border-radius: 50px;
    transition: .2s;
    border: none; cursor: pointer; font-family: inherit;
}
.ep-btn-see:hover { background: var(--primary-light); }

/* Badges catégorie couleurs (identiques au store) */
.ep-card .cat-Concert    { background: rgba(234,179,8,.15);  color: #854d0e; }
.ep-card .cat-Gala       { background: rgba(168,85,247,.15); color: #7e22ce; }
.ep-card .cat-Festival   { background: rgba(239,68,68,.15);  color: #991b1b; }
.ep-card .cat-Conférence { background: rgba(59,130,246,.15); color: #1e40af; }
.ep-card .cat-Sport      { background: rgba(249,115,22,.15); color: #9a3412; }
.ep-card .cat-Soirée     { background: rgba(236,72,153,.15); color: #9d174d; }
.ep-card .cat-Autre      { background: rgba(107,114,128,.15);color: #374151; }

/* Bouton Voir plus */
.ep-cta-wrap {
    text-align: center;
}
.ep-btn-more {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 1rem; font-weight: 700;
    padding: 14px 40px; border-radius: 50px;
    text-decoration: none;
    transition: .25s ease;
    box-shadow: 0 4px 18px rgba(26,122,74,.30);
}
.ep-btn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26,122,74,.40);
}
.ep-btn-more i { font-size: .9rem; }

/* Responsive */
@media (max-width: 900px) {
    .events-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .events-preview-grid { grid-template-columns: 1fr; }
    .events-preview { padding: 60px 0; }
}

/* ══════════════════════ FEATURES ══════════════════════ */
.features {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e8eeeb;
    border-radius: var(--radius-lg);
    padding: 34px;
    transition: .3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--fc), transparent);
    opacity: 0;
    transition: .3s;
}

.feature-card:hover {
    border-color: color-mix(in srgb, var(--fc) 30%, transparent);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

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

.feat-icon {
    width: 52px;
    height: 52px;
    background: color-mix(in srgb, var(--fc) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--fc) 25%, transparent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feat-icon i {
    font-size: 1.3rem;
    color: var(--fc);
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.feat-tag {
    display: inline-block;
    background: color-mix(in srgb, var(--fc) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--fc) 25%, transparent);
    color: var(--fc);
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

/* ══════════════════════ SHOWCASE ══════════════════════ */
.showcase {
    background: linear-gradient(180deg, #f7faf8 0%, #eef5f1 100%);
    padding-bottom: 80px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--surface);
    border: 1px solid var(--border2);
    color: var(--text-muted);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
}

.stab:hover {
    border-color: var(--border);
    color: var(--text);
}

.stab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.stab i {
    font-size: .85rem;
}

.showcase-screen {
    display: none;
}

.showcase-screen.active {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Browser mockup */
.screen-wrap {
    flex: 1.4;
    min-width: 0;
}

.browser-bar {
    background: #1a1f1c;
    border: 1px solid var(--border2);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #febc2e;
}

.browser-dots span:nth-child(3) {
    background: #28c840;
}

.browser-url {
    flex: 1;
    background: var(--surface2);
    border: 1px solid var(--border2);
    border-radius: 7px;
    padding: 5px 12px;
    font-size: .72rem;
    color: var(--text-muted);
    text-align: center;
}

.screen-content {
    border: 1px solid var(--border2);
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    min-height: 340px;
}

/* Dark screen (backoffice) */
.dark-screen {
    background: var(--bg2);
    display: flex;
}

.sc-sidebar {
    width: 150px;
    background: var(--surface);
    border-right: 1px solid var(--border2);
    padding: 18px 0;
    flex-shrink: 0;
}

.sc-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 0 16px 18px;
    color: var(--text);
}

.sc-logo span {
    color: var(--primary-light);
}

.sc-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sc-nav-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    font-size: .72rem;
    color: var(--text-muted);
    border-radius: 0;
    cursor: default;
    transition: .2s;
}

.sc-nav-item i {
    font-size: .72rem;
    width: 16px;
}

.sc-nav-item.active {
    background: var(--primary-ultra);
    color: var(--primary-light);
    border-right: 2px solid var(--primary-light);
}

.sc-main {
    flex: 1;
    padding: 16px;
    min-width: 0;
}

.sc-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.sc-pagetitle {
    font-size: .85rem;
    font-weight: 700;
}

.sc-avatar {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 700;
    color: #fff;
}

.sc-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.sc-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.sc-card i {
    position: absolute;
    right: 8px;
    top: 8px;
    font-size: .75rem;
    opacity: .25;
}

.sc-card-val {
    font-size: .9rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.sc-card-lbl {
    font-size: .6rem;
    color: var(--text-muted);
}

.sc-card.green .sc-card-val {
    color: var(--primary-light);
}

.sc-card.blue .sc-card-val {
    color: #60a5fa;
}

.sc-card.purple .sc-card-val {
    color: #a78bfa;
}

.sc-card.orange .sc-card-val {
    color: #fb923c;
}

.sc-chart-block {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 12px;
}

.sc-chart-title {
    font-size: .65rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

.sc-mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 55px;
}

.sc-mini-bars div {
    flex: 1;
    height: var(--bh);
    background: color-mix(in srgb, var(--primary) 30%, var(--surface2));
    border-radius: 3px 3px 0 0;
}

.sc-mini-bars div.active {
    background: var(--primary);
}

/* Designer screen */
.sc-designer {
    display: flex;
    gap: 12px;
}

.sc-ticket-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-ticket {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    max-width: 200px;
    color: #fff;
}

.sc-ticket-header {
    margin-bottom: 12px;
}

.sc-ticket-title {
    font-size: .82rem;
    font-weight: 700;
}

.sc-ticket-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sc-ticket-info {
    font-size: .62rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: .9;
}

.sc-ticket-info div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sc-ticket-qr {
    background: #fff;
    border-radius: 7px;
    padding: 6px;
}

.qr-mini {
    width: 42px;
    height: 42px;
    background: repeating-conic-gradient(#000 0% 25%, #fff 0% 50%) 0 0 / 6px 6px;
}

.sc-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc-ctrl-group {
    background: var(--surface2);
    border-radius: 10px;
    padding: 12px;
}

.sc-ctrl-group label {
    display: block;
    font-size: .62rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sc-color-dots {
    display: flex;
    gap: 6px;
}

.sc-color-dots span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.sc-color-dots span.active {
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .3);
}

.sc-tpls {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.sc-tpls span {
    padding: 4px 10px;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 6px;
    font-size: .62rem;
    cursor: pointer;
}

.sc-tpls span.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Public screen */
.light-screen {
    background: #f8faf8;
}

.sc-public {
    display: flex;
    flex-direction: column;
}

.sc-pub-hero {
    background: linear-gradient(135deg, #1a7a4a, #22a060);
    padding: 24px;
    color: #fff;
}

.sc-pub-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .68rem;
    margin-bottom: 8px;
}

.sc-pub-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sc-pub-meta {
    display: flex;
    gap: 14px;
    font-size: .68rem;
    opacity: .85;
}

.sc-pub-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sc-pub-form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sc-pub-field {}

.sc-pub-label {
    font-size: .62rem;
    color: #555;
    margin-bottom: 4px;
    font-weight: 600;
}

.sc-pub-input {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: .75rem;
    color: #333;
}

.sc-pub-btn {
    background: #1a7a4a;
    color: #fff;
    padding: 11px;
    border-radius: 10px;
    font-size: .78rem;
    font-weight: 700;
    text-align: center;
}

/* Showcase desc */
.showcase-desc {
    flex: 1;
    padding-top: 20px;
}

.showcase-desc h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.showcase-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .9rem;
    color: var(--text-muted);
}

.showcase-points li i {
    color: var(--primary-light);
    background: var(--primary-ultra);
    border: 1px solid var(--border);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ══════════════════════ HOW IT WORKS ══════════════════════ */
.how-it-works {
    background: #fff;
}

.steps-container {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.step-card {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--radius-lg);
    padding: 38px 34px;
    transition: .3s;
}

.step-card:hover {
    border-color: var(--border);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.step-number {
    font-size: 3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    margin-bottom: 14px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: color-mix(in srgb, var(--sc) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--sc) 25%, transparent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.step-icon i {
    font-size: 1.2rem;
    color: var(--sc);
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.7;
}

.step-arrow {
    flex-shrink: 0;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    opacity: .4;
    font-size: 1.1rem;
}

/* ══════════════════════ TESTIMONIALS ══════════════════════ */
.testimonials {
    background: linear-gradient(180deg, #f7faf8, #eef5f1);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(26, 122, 74, .06), transparent);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.testi-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: .3s;
}

.testi-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}

.testi-featured {
    border-color: var(--border);
    background: linear-gradient(160deg, rgba(26, 122, 74, .08), var(--surface));
    box-shadow: 0 8px 40px rgba(26, 122, 74, .12);
}

.testi-stars {
    color: var(--primary-light);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testi-card p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.testi-user strong {
    display: block;
    font-size: .88rem;
}

.testi-user span {
    font-size: .75rem;
    color: var(--text-muted);
}

/* ══════════════════════ PRICING ══════════════════════ */
.pricing {
    background: #fff;
}

/* Nouveau modèle pay-as-you-go */
.pricing-model {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1160px;
    margin: 0 auto 50px;
}

.pm-card {
    flex: 1 1 0;
    min-width: 0;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--radius-lg);
    padding: 44px 38px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: .3s;
}

.pm-card:hover {
    border-color: var(--border);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .07);
    transform: translateY(-4px);
}

.pm-card-paid {
    border-color: var(--primary);
    background: linear-gradient(160deg, rgba(26, 122, 74, .05), #fff);
}

.pm-card-paid:hover {
    box-shadow: 0 16px 50px rgba(26, 122, 74, .15);
}

.pm-card-crowd {
    border-color: #1e2a22;
    background: linear-gradient(160deg, #0f1f14, #172b1e);
    color: #eef7f1;
}
.pm-card-crowd:hover {
    border-color: var(--primary-light);
    box-shadow: 0 16px 50px rgba(0,0,0,.25);
}
.pm-card-crowd .pm-rate-label { color: rgba(238,247,241,.55); }
.pm-card-crowd .pm-desc       { color: rgba(238,247,241,.65); border-bottom-color: rgba(255,255,255,.1); }
.pm-card-crowd .pm-type-badge.crowd {
    background: rgba(26,122,74,.25);
    border-color: rgba(26,122,74,.4);
    color: #4ade80;
}
.pm-card-crowd .plan-features li        { color: rgba(238,247,241,.85); }
.pm-card-crowd .plan-features li i      { background: rgba(26,122,74,.25); color: #4ade80; border-color: rgba(26,122,74,.4); }
.pm-rate.crowd-col  { font-size: 3.2rem; color: #4ade80; }
.pm-percent.crowd-col { font-size: 1rem; font-weight: 600; align-self: flex-end; padding-bottom: 8px; color: rgba(74,222,128,.7); }

/* Bloc exemples grande foule */
.pm-crowd-block {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pm-crowd-examples {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pm-crowd-ex {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    color: rgba(238,247,241,.7);
}
.pm-crowd-ex i {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(26,122,74,.25);
    border: 1px solid rgba(26,122,74,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; color: #4ade80;
    flex-shrink: 0;
}
.pm-crowd-note {
    font-size: .75rem;
    color: rgba(238,247,241,.45);
    display: flex; align-items: center; gap: 7px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.pm-crowd-note i { color: #4ade80; flex-shrink: 0; }

/* Bouton Nous contacter */
.crowd-btn {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff;
    text-align: center;
    padding: 13px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .88rem;
    transition: .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.crowd-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.pm-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
}

.pm-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 28px;
    align-self: flex-start;
}

.pm-type-badge.free {
    background: var(--primary-ultra);
    border: 1px solid var(--border);
    color: var(--primary);
}

.pm-type-badge.paid {
    background: rgba(26, 122, 74, .1);
    border: 1px solid rgba(26, 122, 74, .3);
    color: var(--primary);
}

.pm-rate-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.pm-rate {
    font-size: 4.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    line-height: 1;
    color: var(--text);
}

.pm-percent {
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-muted);
}

.paid-col {
    color: var(--primary);
}

.pm-rate-label {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    font-weight: 500;
}

.pm-desc {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.75;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border2);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 30px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .86rem;
    color: var(--text);
}

.plan-features li i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .58rem;
    flex-shrink: 0;
    background: var(--primary-ultra);
    color: var(--primary-light);
    border: 1px solid var(--border);
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .88rem;
    transition: .25s;
}

.plan-btn.outline {
    border: 1px solid var(--border);
    color: var(--text);
}

.plan-btn.outline:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: var(--primary-ultra);
}

.plan-btn.filled {
    background: var(--primary);
    color: #fff;
}

.plan-btn.filled:hover {
    background: var(--primary-light);
    box-shadow: 0 6px 20px var(--primary-glow);
}

/* ── Simulateur de coût ── */
.pm-simulator {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pm-simulator-paid {
    background: rgba(26, 122, 74, .05);
    border-color: rgba(26, 122, 74, .2);
}

.pm-sim-title {
    font-size: .75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pm-sim-title i {
    color: var(--primary-light);
}

.pm-sim-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pm-sim-lbl {
    font-size: .8rem;
    color: var(--text-muted);
    flex: 1;
}

.pm-sim-ctrl {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pm-sim-input {
    width: 90px;
    text-align: center;
    padding: 6px 8px;
    border: 1px solid var(--border2);
    border-radius: 9px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    outline: none;
    -moz-appearance: textfield;
}

.pm-sim-input::-webkit-outer-spin-button,
.pm-sim-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.pm-sim-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-ultra);
}

.pm-sim-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid var(--border2);
    background: #fff;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.pm-sim-btn:hover {
    background: var(--primary-ultra);
    border-color: var(--primary);
    color: var(--primary);
}

.pm-sim-btn.paid:hover {
    background: rgba(26, 122, 74, .1);
    border-color: var(--primary);
    color: var(--primary);
}

.pm-sim-result-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--border2);
    gap: 8px;
    flex-wrap: wrap;
}

.pm-sim-eq {
    font-size: .78rem;
    color: var(--text-muted);
}

.pm-sim-total {
    font-size: .95rem;
    font-weight: 800;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

.pm-sim-total.paid {
    color: var(--primary-dark);
    font-size: .82rem;
    font-weight: 700;
}

/* Séparateur central */
.pm-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 12px;
    flex-shrink: 0;
}

.pm-div-line {
    width: 1px;
    flex: 1;
    background: var(--border2);
}

.pm-divider span {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    background: #fff;
    padding: 8px 12px;
    border: 1px solid var(--border2);
    border-radius: 50px;
}

/* Note bas de section */
.pricing-note {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 16px 24px;
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: .82rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    line-height: 1.6;
}

.pricing-note i {
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ══════════════════════ FAQ ══════════════════════ */
.faq {
    background: #f7faf8;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s;
}

.faq-item.open {
    border-color: var(--border);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    color: var(--text);
    font-size: .93rem;
    font-weight: 600;
    cursor: pointer;
}

.faq-q i {
    color: var(--text-muted);
    transition: .3s;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-a p {
    padding: 0 22px 20px;
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.75;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

/* ══════════════════════ CTA ══════════════════════ */
.cta-section {
    padding: 100px 7%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(5,15,9,.88)  0%,
            rgba(0, 0, 0, 0.822) 40%,
            rgba(0, 0, 0, 0.4) 65%,
            rgba(5, 15, 9, 0.712)  100%),
        url(assetes/p1.jpg) center/cover no-repeat;
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(26,122,74,.30), transparent);
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: .15;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 8px 30px var(--primary-glow);
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 52px);
    margin-bottom: 14px;
    color: #eef7f1;
}

.cta-section h2 span {
    color: var(--primary-light);
}

.cta-section p {
    color: rgba(238, 247, 241, .68);
    margin-bottom: 36px;
    font-size: 1.02rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cta-btn-main {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--primary);
    color: #fff;
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    transition: .25s;
}

.cta-btn-main:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.cta-btn-ghost {
    color: rgba(238, 247, 241, .75);
    padding: 15px 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(238, 247, 241, .18);
    font-weight: 500;
    transition: .2s;
}

.cta-btn-ghost:hover {
    color: #eef7f1;
    border-color: rgba(238, 247, 241, .35);
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(238, 247, 241, .55);
    font-size: .82rem;
}

.cta-trust i {
    color: var(--primary-light);
}

/* ══════════════════════ CONTACT ══════════════════════ */
.contact {
    background: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

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

.info-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: .3s;
}

.info-card:hover {
    border-color: var(--border);
}

.info-icon {
    width: 46px;
    height: 46px;
    background: var(--primary-ultra);
    border: 1px solid var(--border);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.05rem;
    color: var(--primary-light);
}

.info-card h4 {
    font-size: .8rem;
    margin-bottom: 3px;
}

.info-card p {
    color: var(--text-muted);
    font-size: .83rem;
}

.contact-socials {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: .25s;
}

.contact-socials a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--radius-lg);
    padding: 38px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 11px;
    padding: 13px 15px;
    color: var(--text);
    font-size: .88rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: .25s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-ultra);
}

.form-group textarea {
    resize: none;
}

/* ══════════════════════ MODAL GRANDE FOULE ══════════════════════ */
.crowd-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.crowd-modal-overlay.open {
    display: flex;
}
.crowd-modal {
    background: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 620px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
    animation: modalIn .3s ease;
}
@keyframes modalIn {
    from { opacity:0; transform:translateY(24px) scale(.97); }
    to   { opacity:1; transform:translateY(0) scale(1); }
}
.crowd-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px 20px;
    border-bottom: 1px solid var(--border2);
    position: sticky;
    top: 0;
    background: #fff;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: 1;
}
.crowd-modal-icon {
    width: 46px; height: 46px;
    border-radius: 13px;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #16a34a;
    flex-shrink: 0;
}
.crowd-modal-header h3 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}
.crowd-modal-header p {
    font-size: .78rem;
    color: var(--text-muted);
}
.crowd-modal-header > div:nth-child(2) { flex: 1; }
.crowd-modal-close {
    width: 34px; height: 34px;
    border-radius: 9px;
    border: 1px solid var(--border2);
    background: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    transition: .2s;
    flex-shrink: 0;
}
.crowd-modal-close:hover { background: var(--bg2); color: var(--text); }

.crowd-modal-form {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.crowd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.crowd-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.crowd-form-group label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
}
.crowd-form-group label span { color: var(--primary-light); }
.crowd-form-group input,
.crowd-form-group select,
.crowd-form-group textarea {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 11px;
    padding: 11px 14px;
    color: var(--text);
    font-size: .875rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: .2s;
    width: 100%;
}
.crowd-form-group input:focus,
.crowd-form-group select:focus,
.crowd-form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-ultra);
    background: #fff;
}
.crowd-form-group textarea { resize: none; }
.crowd-form-group select { cursor: pointer; }
.crowd-form-submit {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 14px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: .25s;
    margin-top: 4px;
}
.crowd-form-submit:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.crowd-form-submit i { font-size: 1.1rem; }

/* ══════════════════════ FOOTER ══════════════════════ */
.footer {
    background: #08180e;
    border-top: 1px solid rgba(26, 122, 74, .18);
    padding: 80px 7% 36px;
}

.footer-top {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #eef7f1;
}

.footer-logo span {
    color: var(--primary-light);
}

.footer-brand p {
    color: rgba(238, 247, 241, .55);
    font-size: .86rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 9px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(238, 247, 241, .55);
    font-size: .82rem;
    transition: .25s;
}

.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #eef7f1;
}

.footer-col a {
    display: block;
    color: rgba(238, 247, 241, .55);
    font-size: .86rem;
    margin-bottom: 11px;
    transition: .2s;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(26, 122, 74, .18);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(238, 247, 241, .35);
    font-size: .8rem;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Ticketô
   Breakpoints : 1100 · 900 · 768 · 480
══════════════════════════════════════════════════ */

/* ── Tablet large ── */
@media (max-width:1100px) {
    .stats-band-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .showcase-screen.active {
        flex-direction: column;
    }
    .screen-wrap {
        width: 100%;
    }
    .events-preview-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ── Tablet portrait / Mobile large ── */
@media (max-width:900px) {
    section {
        padding: 72px 5%;
    }

    /* ── Navbar ── */
    .nav-links,
    .nav-actions {
        display: none;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0; right: 0;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border2);
        padding: 20px 5% 28px;
        gap: 0;
        z-index: 999;
        box-shadow: 0 8px 32px rgba(0,0,0,.10);
    }
    .nav-links.open a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border2);
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-muted);
    }
    .nav-links.open a:last-child { border-bottom: none; }
    .hamburger {
        display: flex;
    }
    .hamburger span {
        background: #fff;
    }
    .navbar.scrolled .hamburger span {
        background: var(--text);
    }

    /* ── Hero ── */
    .hero-content {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }
    .hero-left {
        text-align: center;
    }
    .hero-sub {
        margin: 0 auto 36px;
    }
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    .mockup-wrapper {
        max-width: 420px;
        width: 100%;
    }
    .float-notif,
    .float-ticket {
        display: none;
    }

    /* ── Stats band ── */
    .stats-band-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* ── Events preview ── */
    .events-preview-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }

    /* ── Features ── */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ── Showcase ── */
    .sc-sidebar { width: 120px; }
    .sc-cards   { grid-template-columns: repeat(2,1fr); }

    /* ── Steps ── */
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .step-arrow {
        transform: rotate(90deg);
    }

    /* ── Testimonials ── */
    .testimonials-grid {
        grid-template-columns: repeat(2,1fr);
    }

    /* ── Contact ── */
    .contact-container {
        grid-template-columns: 1fr;
    }

    /* ── Footer ── */
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ── Mobile ── */
@media (max-width:768px) {
    section {
        padding: 60px 4%;
    }

    /* ── Hero ── */
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero-left h1 {
        font-size: clamp(28px, 8vw, 42px);
    }
    .hero-sub {
        font-size: .95rem;
    }
    .btn-primary, .btn-outline-hero {
        padding: 12px 22px;
        font-size: .88rem;
    }
    .hero-right {
        width: 100%;
    }

    /* ── Stats band ── */
    .stats-band {
        padding: 50px 5%;
    }
    .sband-card {
        padding: 24px 16px;
    }
    .sband-num {
        font-size: 2rem;
    }

    /* ── Section headers ── */
    .section-header {
        margin-bottom: 44px;
    }
    .section-header h2 {
        font-size: clamp(24px, 6vw, 36px);
    }
    .section-header p {
        font-size: .92rem;
    }

    /* ── Events preview ── */
    .events-preview {
        padding: 60px 4%;
    }
    .events-preview-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-bottom: 36px !important;
    }
    .ep-btn-more {
        font-size: .9rem;
        padding: 12px 28px;
    }

    /* ── Features ── */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* ── Pricing ── */
    .pricing-model {
        flex-direction: column;
        max-width: 480px;
        margin: 0 auto;
    }
    .pm-divider {
        flex-direction: row;
        padding: 16px 0;
    }
    .pm-div-line {
        width: 100%;
        height: 1px;
        flex: none;
    }
    .pm-card-paid,
    .pm-card-crowd {
        margin-top: 0;
    }
    .pm-card-crowd {
        background: linear-gradient(160deg, #0f1f14, #172b1e);
    }

    /* ── FAQ ── */
    .faq-item {
        padding: 18px 16px;
    }

    /* ── Contact ── */
    .contact-form {
        padding: 22px 18px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    /* ── Footer ── */
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /* ── Testimonials ── */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* ── Showcase ── */
    .sc-sidebar {
        display: none;
    }
    .sc-cards {
        grid-template-columns: 1fr;
    }
}

/* ── Petit mobile ── */
@media (max-width:480px) {
    section {
        padding: 52px 4%;
    }

    /* ── Navbar ── */
    .navbar {
        padding: 14px 4%;
    }

    /* ── Hero ── */
    .hero-left h1 {
        font-size: 26px;
        letter-spacing: -.3px;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .hero-cta a {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        gap: 12px;
    }
    .stat-divider {
        display: none;
    }

    /* ── Stats band ── */
    .stats-band-inner {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* ── Events preview ── */
    .events-preview {
        padding: 48px 4%;
    }
    .ep-btn-more {
        width: 100%;
        justify-content: center;
    }

    /* ── Section header ── */
    .section-header h2 {
        font-size: 22px;
    }

    /* ── Footer ── */
    .footer-links {
        grid-template-columns: 1fr;
    }
    .footer-col:not(:last-child) {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    /* ── Pricing ── */
    .pm-card-free,
    .pm-card-paid,
    .pm-card-crowd {
        padding: 24px 18px;
    }
}

/* --------------------------------------------------
   STORE PREVIEW SECTION
-------------------------------------------------- */
.store-preview {
  padding: 6rem 1.5rem;
  background: #f8faf9;
}
.store-preview .section-header { text-align: center; margin-bottom: 3rem; }

.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

/* Carte vnement */
.sp-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
}
.sp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.13);
}
.sp-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #e5e7eb;
}
.sp-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.sp-card:hover .sp-card-img img { transform: scale(1.05); }
.sp-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg,#e8f5ec,#d1fae5);
  color: #1a7a4a; gap: .5rem;
}
.sp-card-img-placeholder i { font-size: 2rem; opacity: .5; }
.sp-card-img-placeholder span { font-size: .8rem; font-weight: 600; opacity: .6; text-align: center; padding: 0 1rem; }
.sp-price-badge {
  position: absolute; top: .75rem; right: .75rem;
  background: #1a7a4a; color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: .25rem .65rem; border-radius: 999px;
}
.sp-price-badge.free { background: #059669; }
.sp-cat-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(4px);
  font-size: .7rem; font-weight: 600;
  padding: .2rem .6rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .04em;
}
.sp-card-body { padding: 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.sp-card-name { font-size: .97rem; font-weight: 700; color: #111827; line-height: 1.35; }
.sp-card-meta { display: flex; flex-direction: column; gap: .3rem; }
.sp-card-meta-row { display: flex; align-items: center; gap: .45rem; font-size: .8rem; color: #6b7280; }
.sp-card-meta-row i { color: #1a7a4a; font-size: .75rem; width: 14px; }
.sp-card-org { display: flex; align-items: center; gap: .5rem; margin-top: auto; padding-top: .65rem; border-top: 1px solid #f3f4f6; }
.sp-org-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: #1a7a4a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; overflow: hidden; flex-shrink: 0;
}
.sp-org-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sp-org-name { font-size: .78rem; color: #6b7280; }

/* Skeleton */
.sp-skeleton {
  background: #fff;
  border-radius: 16px;
  height: 300px;
  position: relative;
  overflow: hidden;
}
.sp-skeleton::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.04) 50%, transparent 100%);
  animation: spShimmer 1.4s infinite;
}
@keyframes spShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Bouton CTA */
.sp-cta { text-align: center; }
.sp-btn {
  display: inline-flex; align-items: center; gap: .65rem;
  background: #1a7a4a; color: #fff;
  padding: .85rem 2.25rem; border-radius: 999px;
  font-size: .95rem; font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(26,122,74,.3);
}
.sp-btn:hover {
  background: #0f5c38;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,122,74,.4);
}
.sp-empty {
  grid-column: 1/-1; text-align: center;
  padding: 3rem 1rem; color: #6b7280;
}
.sp-empty i { font-size: 2.5rem; color: #d1d5db; margin-bottom: 1rem; display: block; }

/* Responsive */
@media (max-width: 900px) { .sp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sp-grid { grid-template-columns: 1fr; } .sp-card-img { height: 160px; } }
