/* ============================================================
   VariableFly — Tirage Voyage Canada 2026
   Feuille de style principale — mobile-first
   Palette : noir #000 / rouge #E30613 / blanc #fff
   ============================================================ */

:root {
    --noir: #000000;
    --noir-2: #0d0d0d;
    --noir-3: #161616;
    --rouge: #E30613;
    --rouge-fonce: #b30410;
    --rouge-clair: #ff2b38;
    --blanc: #ffffff;
    --gris: #9a9a9a;
    --gris-clair: #d4d4d4;
    --bordure: #2a2a2a;
    --vert: #1db954;
    --vert-fonce: #169c46;
    --radius: 14px;
    --maxw: 1080px;
    --font: 'Inter', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--noir);
    color: var(--blanc);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

a { color: var(--rouge); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 18px;
}

/* ============================================================
   LOADER FULLSCREEN
   ============================================================ */
#vf-loader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    /* 100dvh suit la hauteur visible (barre d'URL mobile) → recentrage correct. */
    height: 100dvh;
    z-index: 9999;
    background: var(--noir);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s var(--ease), visibility .6s;
    /* Filet de sécurité : si le JS échoue, le loader disparaît quand même. */
    animation: loaderSafety .6s 8s forwards;
}
#vf-loader.hidden { opacity: 0; visibility: hidden; animation: none; }
@keyframes loaderSafety { to { opacity: 0; visibility: hidden; } }
#vf-loader img {
    width: 120px;
    height: auto;
    animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(.92); opacity: .6; }
    50%      { transform: scale(1.08); opacity: 1; }
}

/* ============================================================
   ANIMATIONS — keyframes
   ============================================================ */
@keyframes fadeUp     { from { opacity: 0; transform: translateY(28px); }      to { opacity: 1; transform: none; } }
@keyframes fadeDown   { from { opacity: 0; transform: translateY(-20px); }     to { opacity: 1; transform: none; } }
@keyframes fadeIn     { from { opacity: 0; }                                   to { opacity: 1; } }
@keyframes zoomIn     { from { opacity: 0; transform: scale(.85); }            to { opacity: 1; transform: scale(1); } }
@keyframes flip3d     { from { opacity: 0; transform: perspective(800px) rotateY(-90deg); } to { opacity: 1; transform: perspective(800px) rotateY(0); } }
@keyframes tiltIn     { from { opacity: 0; transform: perspective(900px) rotateX(12deg) translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes glowText   { 0%,100% { text-shadow: 0 0 12px rgba(227,6,19,.45); } 50% { text-shadow: 0 0 26px rgba(227,6,19,.85), 0 0 6px rgba(227,6,19,.6); } }
@keyframes pulseWA    { 0%,100% { box-shadow: 0 0 0 0 rgba(29,185,84,.55); } 50% { box-shadow: 0 0 0 16px rgba(29,185,84,0); } }
@keyframes shakeX     { 10%,90% { transform: translateX(-2px); } 20%,80% { transform: translateX(4px); } 30%,50%,70% { transform: translateX(-8px); } 40%,60% { transform: translateX(8px); } }
@keyframes checkPop   { 0% { transform: scale(0) rotate(-25deg); } 60% { transform: scale(1.25) rotate(8deg); } 100% { transform: scale(1) rotate(0); } }
@keyframes flipDigit  { 0% { transform: rotateX(0); } 50% { transform: rotateX(-90deg); } 100% { transform: rotateX(0); } }
@keyframes spinSlow   { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Reveal au scroll (AOS maison) */
[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}
[data-reveal="zoom"]  { transform: scale(.9); }
[data-reveal="tilt"]  { transform: perspective(900px) rotateX(10deg) translateY(28px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   EN-TÊTE / NAVIGATION
   ============================================================ */
.site-header {
    background: rgba(13, 13, 13, .92);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--rouge);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: fadeDown .6s var(--ease) both;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    gap: 8px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--blanc);
    transition: transform .25s var(--ease);
}
.brand:hover { text-decoration: none; transform: scale(1.03); }
.brand img { height: 46px; width: auto; }

/* Navigation desktop */
.nav { display: flex; gap: 2px; align-items: center; }
.nav a {
    position: relative;
    color: var(--gris-clair);
    padding: 10px 14px;
    font-size: .92rem;
    font-weight: 600;
    border-radius: 8px;
}
.nav a::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 6px;
    height: 2px;
    background: var(--rouge);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--blanc); text-decoration: none; }
.nav a:hover::after { transform: scaleX(1); }
.nav a.active { color: var(--rouge); }
.nav a.active::after { transform: scaleX(1); }

/* Burger mobile */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.burger span {
    width: 26px; height: 3px;
    background: var(--blanc);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .15s var(--ease), background .2s ease, box-shadow .25s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--rouge); color: var(--blanc); }
.btn-primary:hover { background: var(--rouge-fonce); box-shadow: 0 10px 28px -8px rgba(227,6,19,.7); }
.btn-outline { background: transparent; color: var(--blanc); border-color: var(--rouge); }
.btn-outline:hover { background: var(--rouge); }
.btn-whatsapp {
    background: var(--vert); color: var(--blanc);
    font-size: 1.1rem; padding: 16px 30px;
    animation: pulseWA 2.4s infinite;
}
.btn-whatsapp:hover {
    background: var(--vert-fonce);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px -2px rgba(29,185,84,.8);
}
.btn-block { display: flex; width: 100%; }
.btn-lg { font-size: 1.15rem; padding: 18px 32px; }

/* Effet ripple */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    transform: scale(0);
    animation: rippleGo .6s ease-out;
    pointer-events: none;
}
@keyframes rippleGo { to { transform: scale(2.6); opacity: 0; } }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 56px 0; }
.section-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.section-title .accent { color: var(--rouge); }
.section-sub { color: var(--gris); margin-bottom: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background:
        radial-gradient(circle at 20% 10%, rgba(227,6,19,.22), transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(227,6,19,.15), transparent 40%),
        var(--noir);
    text-align: center;
    padding: 72px 0 60px;
    border-bottom: 1px solid var(--bordure);
}
.hero h1 {
    font-size: 2.1rem;
    line-height: 1.18;
    font-weight: 900;
    margin-bottom: 14px;
}
.hero h1 .word {
    display: inline-block;
    opacity: 0;
    animation: fadeUp .7s var(--ease) forwards;
}
.hero h1 .accent {
    color: var(--rouge);
    animation: fadeUp .7s var(--ease) forwards, glowText 2.6s ease-in-out 1s infinite;
}
.hero p.lead {
    color: var(--gris-clair);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 28px;
    opacity: 0;
    animation: fadeUp .7s var(--ease) .9s forwards;
}
.hero-cta {
    display: flex; flex-direction: column; gap: 12px; align-items: center;
    opacity: 0;
    animation: fadeUp .7s var(--ease) 1.1s forwards;
}
.hero .countdown-wrap {
    opacity: 0;
    animation: fadeIn .7s ease 1.3s forwards;
}

/* Compte à rebours façon "flip clock" */
.countdown { display: inline-flex; gap: 8px; }
.cd-unit {
    background: var(--noir-2);
    border: 1px solid var(--bordure);
    border-radius: 10px;
    padding: 8px 10px;
    min-width: 62px;
    text-align: center;
}
.cd-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--rouge);
    line-height: 1;
}
.cd-num.flip { animation: flipDigit .4s var(--ease); }
.cd-lbl { font-size: .66rem; color: var(--gris); text-transform: uppercase; letter-spacing: .5px; }

/* ============================================================
   CARTES & GRILLES
   ============================================================ */
.grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

.card {
    background: var(--noir-2);
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    padding: 22px;
    transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.card:hover {
    transform: translateY(-4px);
    border-color: var(--rouge);
    box-shadow: 0 16px 40px -16px rgba(227,6,19,.5);
}
.card h3 { color: var(--rouge); margin-bottom: 8px; font-size: 1.1rem; }
.card .icon {
    font-size: 1.5rem; font-weight: 900;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(227,6,19,.14);
    color: var(--rouge);
    border-radius: 12px;
    margin-bottom: 12px;
}

/* ============================================================
   COMPTEURS / STATS
   ============================================================ */
.stat-banner {
    background: linear-gradient(135deg, var(--rouge), var(--rouge-fonce));
    border-radius: var(--radius);
    padding: 26px;
    text-align: center;
    margin-bottom: 28px;
    box-shadow: 0 18px 50px -22px rgba(227,6,19,.9);
}
.stat-banner .stat-number { font-size: 3rem; font-weight: 900; line-height: 1; }
.stat-banner .stat-label { text-transform: uppercase; letter-spacing: 1px; font-size: .85rem; opacity: .92; }

.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.stat-box {
    background: var(--noir-2);
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
}
.stat-box .num { font-size: 1.8rem; font-weight: 800; color: var(--rouge); }
.stat-box .lbl { color: var(--gris); font-size: .82rem; text-transform: uppercase; }

/* ============================================================
   TABLEAUX & LISTES
   ============================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--bordure); }
table { width: 100%; border-collapse: collapse; background: var(--noir-2); }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--bordure); font-size: .92rem; }
th { background: var(--noir-3); color: var(--gris-clair); text-transform: uppercase; font-size: .78rem; letter-spacing: .5px; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--noir-3); }

.ticket-row {
    background: var(--noir-2);
    border: 1px solid var(--bordure);
    border-left: 4px solid var(--rouge);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp .5s var(--ease) forwards;
    transition: transform .2s var(--ease), border-color .2s ease, background .2s ease;
}
.ticket-row:hover {
    transform: translateX(6px);
    background: var(--noir-3);
    border-left-color: var(--rouge-clair);
    box-shadow: 0 8px 24px -12px rgba(227,6,19,.6);
}
.ticket-row .code { font-weight: 800; color: var(--rouge); font-family: 'Courier New', monospace; }
.ticket-row .meta { color: var(--gris-clair); font-size: .92rem; }

/* ============================================================
   FORMULAIRES
   ============================================================ */
.form-group { margin-bottom: 16px; }
label { display: block; margin-bottom: 6px; font-weight: 600; font-size: .9rem; color: var(--gris-clair); }
input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--noir-3);
    border: 1px solid var(--bordure);
    border-radius: 10px;
    color: var(--blanc);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color .25s ease, box-shadow .3s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--rouge);
    box-shadow: 0 0 0 4px rgba(227,6,19,.18), 0 0 18px -2px rgba(227,6,19,.5);
}
.search-bar { display: flex; gap: 8px; margin-bottom: 20px; }
.search-bar input { flex: 1; }

/* ============================================================
   BADGES / ALERTES
   ============================================================ */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.badge-valide { background: rgba(29,185,84,.18); color: var(--vert); }
.badge-annule { background: rgba(227,6,19,.18); color: var(--rouge); }

.alert { padding: 14px 16px; border-radius: 10px; margin-bottom: 16px; font-weight: 600; animation: fadeUp .5s var(--ease) both; }
.alert-success { background: rgba(29,185,84,.15); border: 1px solid var(--vert); color: var(--vert); }
.alert-error { background: rgba(227,6,19,.15); border: 1px solid var(--rouge); color: #ff6b74; }
.alert-info { background: var(--noir-3); border: 1px solid var(--bordure); color: var(--gris-clair); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.pagination a, .pagination span {
    padding: 8px 13px;
    border-radius: 8px;
    border: 1px solid var(--bordure);
    color: var(--gris-clair);
    font-weight: 600;
    font-size: .9rem;
    transition: background .2s ease, transform .15s var(--ease);
}
.pagination a:hover { background: var(--noir-3); text-decoration: none; transform: translateY(-2px); }
.pagination .current { background: var(--rouge); color: var(--blanc); border-color: var(--rouge); }

/* ============================================================
   VÉRIFICATION DE TICKET
   ============================================================ */
.verif-result { border-radius: var(--radius); padding: 28px; text-align: center; margin-top: 22px; animation: zoomIn .5s var(--ease) both; }
.verif-ok { background: rgba(29,185,84,.12); border: 2px solid var(--vert); }
.verif-ko { background: rgba(227,6,19,.12); border: 2px solid var(--rouge); }
.verif-result.shake { animation: zoomIn .4s var(--ease), shakeX .6s .15s; }
.verif-result .big-code { font-size: 1.8rem; font-weight: 900; font-family: 'Courier New', monospace; margin: 8px 0; }

/* Checkmark animé */
.check-circle {
    width: 76px; height: 76px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--vert);
    display: flex; align-items: center; justify-content: center;
    animation: zoomIn .4s var(--ease) both;
}
.check-circle svg { width: 40px; height: 40px; animation: checkPop .5s .2s var(--ease) both; }
.cross-circle {
    width: 76px; height: 76px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--rouge);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem; font-weight: 900; color: #fff;
    animation: zoomIn .4s var(--ease) both;
}

/* ============================================================
   SECTION CONTACT / ADRESSES
   ============================================================ */
.contact-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.contact-card {
    background: var(--noir-2);
    border: 1px solid var(--bordure);
    border-left: 4px solid var(--rouge);
    border-radius: var(--radius);
    padding: 20px 22px;
    transition: transform .3s var(--ease), box-shadow .3s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -18px rgba(227,6,19,.55); }
.contact-card h3 { color: var(--rouge); margin-bottom: 6px; }
.contact-card .pin { font-size: .82rem; color: var(--gris); text-transform: uppercase; letter-spacing: .5px; }

/* ============================================================
   PIED DE PAGE
   ============================================================ */
.site-footer {
    background: var(--noir-2);
    border-top: 2px solid var(--rouge);
    padding: 38px 0 28px;
    margin-top: auto;
    color: var(--gris);
    font-size: .88rem;
}
.site-footer .container { display: flex; flex-direction: column; gap: 20px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 22px; }
.footer-brand img { height: 64px; width: auto; margin-bottom: 10px; }
.site-footer a { color: var(--gris-clair); transition: color .2s ease; }
.site-footer a:hover { color: var(--rouge); }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-col h4 { color: var(--blanc); font-size: .92rem; margin-bottom: 8px; }
.footer-addr { line-height: 1.5; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid var(--bordure); padding-top: 16px; }
/* Petit point discret en fin de copyright : accès admin (non annoncé). */
.admin-dot {
    color: inherit;
    opacity: .35;
    text-decoration: none;
    margin-left: 6px;
    padding: 2px 4px;
    transition: opacity .25s ease, color .25s ease;
}
.admin-dot:hover { opacity: 1; color: var(--rouge); text-decoration: none; }

/* ============================================================
   DIVERS
   ============================================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.muted { color: var(--gris); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 719px) {
    .burger { display: flex; }
    .nav {
        position: fixed;
        top: 66px; right: 0;
        width: min(78vw, 300px);
        height: calc(100vh - 66px);
        background: var(--noir-2);
        border-left: 2px solid var(--rouge);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 4px;
        transform: translateX(110%);
        transition: transform .35s var(--ease);
        z-index: 99;
    }
    .nav.open { transform: translateX(0); }
    .nav a { padding: 14px 12px; font-size: 1rem; }
    .nav a::after { left: 12px; right: auto; width: 0; }
}

@media (min-width: 720px) {
    .hero h1 { font-size: 2.9rem; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .stats-row { grid-template-columns: repeat(4, 1fr); }
    .hero-cta { flex-direction: row; justify-content: center; }
    .section-title { font-size: 2rem; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* --- Petits écrans (smartphones) --- */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    section { padding: 40px 0; }
    .site-header .container { min-height: 58px; }
    .brand img { height: 38px; }
    .nav { top: 58px; height: calc(100vh - 58px); }
    .hero { padding: 52px 0 44px; }
    .hero h1 { font-size: 1.72rem; }
    .hero p.lead { font-size: 1rem; }
    .section-title { font-size: 1.4rem; }
    .stat-banner { padding: 20px; }
    .stat-banner .stat-number { font-size: 2.3rem; }
    .btn { padding: 13px 18px; font-size: .95rem; }
    .btn-lg { font-size: 1.05rem; padding: 15px 22px; }
    .btn-whatsapp { font-size: 1rem; padding: 14px 20px; }
    .hero-cta { width: 100%; }
    .hero-cta .btn { width: 100%; }
    .countdown { gap: 6px; }
    .cd-unit { min-width: 0; flex: 1; padding: 7px 4px; }
    .cd-num { font-size: 1.3rem; }
    .card { padding: 18px; }
    .ticket-row { padding: 12px 14px; font-size: .9rem; }
    .ticket-row .meta { width: 100%; }
    .verif-result { padding: 22px 16px; }
    .verif-result .big-code { font-size: 1.4rem; word-break: break-all; }
    .search-bar { flex-direction: column; }
    .search-bar .btn { width: 100%; }
    table th, table td { padding: 10px 10px; font-size: .85rem; }
    .footer-brand img { height: 54px; }
}

/* ============================================================
   LANDING PAGE V2 — design premium (glassmorphism, glow, premium)
   ============================================================ */
:root {
    --glass-bg: rgba(255, 255, 255, .045);
    --glass-brd: rgba(255, 255, 255, .09);
    --shadow-soft: 0 24px 60px -28px rgba(0, 0, 0, .9);
    --shadow-glow: 0 0 40px -6px rgba(227, 6, 19, .55);
}

/* Utilitaires */
.glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-brd);
}
.lp-eyebrow {
    display: inline-block;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: 10px;
}
.lp-section { padding: 70px 0; position: relative; }
.lp-section-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.lp-section-head h2 { font-size: 1.85rem; font-weight: 900; line-height: 1.2; }
.lp-section-head h2 .accent { color: var(--rouge); }
.lp-section-head p { color: var(--gris); margin-top: 8px; }

@keyframes floatY  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes driftUp { from { transform: translateY(100%); opacity: 0; } 15% { opacity: .9; } 85% { opacity: .9; } to { transform: translateY(-120vh); opacity: 0; } }
@keyframes glowPulse { 0%,100% { box-shadow: 0 0 22px -6px rgba(227,6,19,.6); } 50% { box-shadow: 0 0 46px 2px rgba(227,6,19,.85); } }
@keyframes lineSweep { 0% { transform: translateX(-120%); } 100% { transform: translateX(220%); } }

/* ---------- HERO ---------- */
.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 76px;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(227,6,19,.28), transparent 50%),
        radial-gradient(ellipse at 95% 90%, rgba(227,6,19,.16), transparent 45%),
        linear-gradient(180deg, #0a0a0a, #000);
    border-bottom: 1px solid var(--bordure);
}
.lp-particles { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; pointer-events: none; overflow: hidden; }
.lp-particle {
    position: absolute;
    bottom: -10px;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(227,6,19,.5);
    animation: driftUp linear infinite;
}
.lp-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: center;
}
.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gris-clair);
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-brd);
    margin-bottom: 18px;
}
.lp-hero h1 {
    font-size: 2.2rem;
    line-height: 1.14;
    font-weight: 900;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}
.lp-hero h1 .accent {
    color: var(--rouge);
    text-shadow: 0 0 30px rgba(227,6,19,.5);
}
.lp-lead { color: var(--gris-clair); font-size: 1.08rem; max-width: 560px; margin-bottom: 26px; }
.lp-cta-row { display: flex; flex-direction: column; gap: 12px; }

.glow-cta { animation: glowPulse 2.8s ease-in-out infinite; }
.btn-glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-brd);
    color: var(--blanc);
}
.btn-glass:hover { background: rgba(255,255,255,.1); border-color: var(--rouge); }

/* Hero visual : carte "boarding pass" en glassmorphism */
.lp-hero-visual { position: relative; display: flex; justify-content: center; }
.lp-pass {
    position: relative;
    width: 100%;
    max-width: 360px;
    border-radius: 22px;
    padding: 24px;
    background: linear-gradient(155deg, rgba(227,6,19,.22), rgba(255,255,255,.03));
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-brd);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
    animation: floatY 6s ease-in-out infinite;
    overflow: hidden;
}
.lp-pass::after {
    content: "";
    position: absolute; top: 0; left: 0;
    width: 40%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.14), transparent);
    animation: lineSweep 5s ease-in-out infinite;
}
.lp-pass-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.lp-pass-top span { font-size: .72rem; letter-spacing: 1px; color: var(--gris); text-transform: uppercase; }
.lp-pass-route { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.lp-pass-city { font-size: 1.5rem; font-weight: 900; }
.lp-pass-route svg { flex: 1; height: 22px; }
.lp-pass-info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-pass-info div span { display: block; font-size: .66rem; color: var(--gris); text-transform: uppercase; letter-spacing: .5px; }
.lp-pass-info div strong { font-size: .92rem; }
.lp-pass-code {
    margin-top: 18px; padding-top: 16px;
    border-top: 1px dashed var(--glass-brd);
    font-family: 'Courier New', monospace;
    font-weight: 800; letter-spacing: 2px; color: var(--rouge);
}

/* ---------- GUIDE OFFERT ---------- */
.lp-guide-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.lp-guide-text h2 { font-size: 1.9rem; font-weight: 900; line-height: 1.2; margin-bottom: 14px; }
.lp-checklist { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.lp-checklist li { position: relative; padding-left: 30px; color: var(--gris-clair); }
.lp-checklist li::before {
    content: "✓";
    position: absolute; left: 0; top: 0;
    width: 20px; height: 20px;
    background: var(--rouge); color: #fff;
    border-radius: 50%;
    font-size: .72rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
}
.lp-guide-visual { display: flex; justify-content: center; perspective: 1400px; }
.pdf-mockup {
    position: relative;
    width: 230px; height: 310px;
    border-radius: 10px;
    background: linear-gradient(160deg, #1c1c1c, #0a0a0a);
    border: 1px solid var(--bordure);
    box-shadow: var(--shadow-soft), 0 0 50px -10px rgba(227,6,19,.4);
    transform: rotateY(-22deg) rotateX(6deg);
    animation: floatY 7s ease-in-out infinite;
    padding: 22px 20px;
    transition: transform .5s var(--ease);
}
.pdf-mockup:hover { transform: rotateY(-8deg) rotateX(2deg) scale(1.03); }
.pdf-mockup::before {
    content: ""; position: absolute; top: 0; left: 0;
    width: 14px; height: 100%;
    background: linear-gradient(180deg, var(--rouge), var(--rouge-fonce));
    border-radius: 10px 0 0 10px;
}
.pdf-mockup .pm-logo { height: 34px; width: auto; margin-bottom: 16px; }
.pdf-mockup .pm-title { font-size: .9rem; font-weight: 900; color: #fff; line-height: 1.3; margin-bottom: 4px; }
.pdf-mockup .pm-sub { font-size: .64rem; color: var(--rouge); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.pdf-mockup .pm-line { height: 6px; border-radius: 3px; background: var(--noir-3); margin-bottom: 9px; }
.pdf-mockup .pm-line.s { width: 60%; }
.pdf-mockup .pm-badge {
    position: absolute; bottom: 18px; left: 20px; right: 20px;
    text-align: center; font-size: .62rem; font-weight: 800;
    color: var(--gris); text-transform: uppercase; letter-spacing: 1px;
}

/* ---------- STEPS ---------- */
.lp-steps { display: grid; grid-template-columns: 1fr; gap: 18px; }
.lp-step {
    position: relative;
    padding: 28px 24px 24px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-brd);
    transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.lp-step:hover { transform: translateY(-6px); border-color: var(--rouge); box-shadow: var(--shadow-glow); }
.lp-step-num {
    position: absolute; top: -18px; left: 24px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: linear-gradient(150deg, var(--rouge), var(--rouge-fonce));
    color: #fff; font-weight: 900; font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}
.lp-step h3 { margin: 14px 0 6px; font-size: 1.1rem; }
.lp-step p { color: var(--gris-clair); font-size: .95rem; }

/* ---------- TRUST ---------- */
.lp-trust-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.lp-trust-card {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-brd);
    transition: transform .35s var(--ease), border-color .35s ease;
}
.lp-trust-card:hover { transform: translateY(-4px); border-color: var(--rouge); }
.lp-trust-ico {
    flex-shrink: 0;
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(227,6,19,.14);
    color: var(--rouge);
    display: flex; align-items: center; justify-content: center;
}
.lp-trust-ico svg { width: 22px; height: 22px; }
.lp-trust-card h3 { font-size: 1rem; margin-bottom: 3px; color: #fff; }
.lp-trust-card p { font-size: .88rem; color: var(--gris); }

/* ---------- COUNTDOWN BLOCK ---------- */
.lp-countdown-block {
    text-align: center;
    border-radius: 24px;
    padding: 44px 24px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(227,6,19,.22), transparent 60%),
        var(--glass-bg);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-brd);
    box-shadow: var(--shadow-soft);
}
.lp-countdown-block h2 { font-size: 1.7rem; font-weight: 900; margin-bottom: 6px; }
.lp-countdown-block .countdown { justify-content: center; margin: 22px 0 16px; }
.lp-countdown-block p { color: var(--gris-clair); font-size: .95rem; }

/* ---------- TICKETS VALIDÉS ---------- */
.lp-tickets-block {
    text-align: center;
    border-radius: 24px;
    padding: 46px 24px;
    background: linear-gradient(150deg, rgba(227,6,19,.16), var(--glass-bg));
    border: 1px solid var(--glass-brd);
    box-shadow: var(--shadow-soft);
}
.lp-counter {
    font-size: 4rem; font-weight: 900; line-height: 1;
    color: var(--rouge);
    text-shadow: 0 0 40px rgba(227,6,19,.6);
}
.lp-tickets-block p { color: var(--gris-clair); margin: 6px 0 22px; text-transform: uppercase; letter-spacing: 1px; font-size: .85rem; }

/* ---------- CLARTÉ (disclaimer) ---------- */
.lp-clarity-box {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 24px 26px;
    border-radius: var(--radius);
    background: rgba(227,6,19,.07);
    border: 1px solid rgba(227,6,19,.35);
    border-left: 4px solid var(--rouge);
}
.lp-clarity-ico {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--rouge); color: #fff;
    font-weight: 900; font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
}
.lp-clarity-box p { color: var(--gris-clair); font-size: .96rem; line-height: 1.65; }

/* ---------- CONTACT ---------- */
.lp-contact-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.lp-contact-card {
    padding: 26px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-brd);
    border-top: 3px solid var(--rouge);
    transition: transform .35s var(--ease), box-shadow .35s ease;
}
.lp-contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.lp-contact-card .lp-eyebrow { margin-bottom: 6px; }
.lp-contact-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.lp-contact-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; color: var(--gris-clair); font-size: .92rem; }
.lp-contact-line svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--rouge); margin-top: 2px; }
.lp-contact-line a { color: var(--gris-clair); }
.lp-contact-line a:hover { color: var(--rouge); }

/* ---------- Navbar : bouton CTA "Participer" ---------- */
.nav .nav-cta {
    background: var(--rouge);
    color: #fff;
    padding: 9px 18px;
    border-radius: 10px;
    margin-left: 6px;
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--rouge-fonce); color: #fff; box-shadow: var(--shadow-glow); }

/* ---------- Responsive landing ---------- */
@media (min-width: 760px) {
    .lp-hero { padding: 84px 0 96px; }
    .lp-hero h1 { font-size: 3.2rem; }
    .lp-hero-inner { grid-template-columns: 1.05fr .95fr; gap: 48px; }
    .lp-cta-row { flex-direction: row; }
    .lp-section { padding: 90px 0; }
    .lp-section-head h2 { font-size: 2.3rem; }
    .lp-guide-inner { grid-template-columns: 1.1fr .9fr; }
    .lp-guide-text h2 { font-size: 2.3rem; }
    .lp-steps { grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .lp-trust-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-contact-grid { grid-template-columns: 1fr 1fr; }
    .lp-counter { font-size: 5rem; }
}
@media (max-width: 480px) {
    .lp-hero h1 { font-size: 1.92rem; }
    .lp-lead { font-size: 1rem; }
    .lp-cta-row .btn { width: 100%; }
    .lp-section-head h2 { font-size: 1.55rem; }
    .lp-counter { font-size: 3.2rem; }
    .lp-badge { font-size: .72rem; padding: 7px 12px; }
    .pdf-mockup { width: 200px; height: 270px; }
}

/* ---------- 5 faits clés (comprendre en 5 secondes) ---------- */
.lp-facts {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 42px;
    position: relative;
    z-index: 2;
}
.lp-facts li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-brd);
    border-left: 3px solid var(--rouge);
    transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.lp-facts li:hover { transform: translateY(-4px); border-color: var(--rouge); box-shadow: var(--shadow-glow); }
.lp-fact-k { font-weight: 900; font-size: 1.02rem; color: #fff; }
.lp-fact-v { font-size: .82rem; color: var(--gris); line-height: 1.4; }

/* ---------- Tickets flottants décoratifs (hero) ---------- */
.lp-float-tickets { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.lp-float-ticket {
    position: absolute;
    padding: 8px 14px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: 1px;
    color: var(--rouge);
    background: rgba(227, 6, 19, .08);
    border: 1px dashed rgba(227, 6, 19, .42);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.lp-float-ticket.t1 { top: 15%; left: 5%;  animation: floatTk1 7s ease-in-out infinite; }
.lp-float-ticket.t2 { top: 64%; left: 9%;  animation: floatTk2 9s ease-in-out infinite 1s; }
.lp-float-ticket.t3 { top: 30%; right: 6%; animation: floatTk3 8s ease-in-out infinite .5s; }
@keyframes floatTk1 { 0%,100% { transform: rotate(-12deg) translateY(0); } 50% { transform: rotate(-12deg) translateY(-15px); } }
@keyframes floatTk2 { 0%,100% { transform: rotate(8deg)  translateY(0); } 50% { transform: rotate(8deg)  translateY(-17px); } }
@keyframes floatTk3 { 0%,100% { transform: rotate(10deg) translateY(0); } 50% { transform: rotate(10deg) translateY(-13px); } }
@media (max-width: 759px) { .lp-float-tickets { display: none; } }

/* ---------- Timeline 3 étapes ---------- */
.lp-timeline { position: relative; }
.lp-timeline::before {
    content: "";
    position: absolute;
    left: 21px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--rouge), rgba(227, 6, 19, .15));
    z-index: 0;
}
.lp-timeline .lp-step { position: relative; z-index: 1; }
@media (min-width: 760px) {
    .lp-timeline::before {
        left: 16%; right: 16%; top: 4px; bottom: auto;
        width: auto; height: 2px;
        background: linear-gradient(90deg, transparent, var(--rouge), transparent);
    }
}

@media (min-width: 620px) { .lp-facts { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .lp-facts { grid-template-columns: repeat(5, 1fr); } }

/* ---------- Spot officiel — section dédiée ---------- */
.lp-spot-section { background: linear-gradient(180deg, #000, #0a0a0a); }
.lp-spot-frame {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-brd);
    background: #000;
    box-shadow: var(--shadow-soft), 0 0 60px -15px rgba(227,6,19,.55);
    transition: transform .4s var(--ease), box-shadow .4s ease;
}
.lp-spot-frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(227,6,19,.7), transparent 40%, transparent 60%, rgba(227,6,19,.5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
}
.lp-spot-frame:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft), 0 0 80px -10px rgba(227,6,19,.85); }
.lp-spot-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 0;
}

/* ---------- Vidéo de fond hero ---------- */
.lp-hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: .55;
    filter: saturate(.85) contrast(1.05);
}
.lp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(227,6,19,.22), transparent 55%),
        linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.78) 75%, #000 100%);
    pointer-events: none;
}
.lp-hero .lp-particles,
.lp-hero .lp-float-tickets { z-index: 2; }
.lp-hero .container { position: relative; z-index: 3; }

/* ---------- Mini ticket validator (hero) ---------- */
.lp-mini-verif {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 6px 6px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-brd);
    max-width: 100%;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s var(--ease);
}
.lp-mini-verif:focus-within {
    border-color: var(--rouge);
    box-shadow: 0 0 0 4px rgba(227,6,19,.18), 0 10px 28px -10px rgba(227,6,19,.55);
    transform: translateY(-1px);
}
.lp-mini-verif-label {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gris);
    white-space: nowrap;
}
.lp-mini-verif input {
    flex: 1 1 140px;
    min-width: 0;
    background: transparent;
    border: 0;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: .95rem;
    padding: 8px 4px;
    outline: none;
}
.lp-mini-verif input::placeholder { color: rgba(255,255,255,.35); letter-spacing: 1px; }
.lp-mini-verif button {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 0;
    background: var(--rouge);
    color: #fff;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}
.lp-mini-verif button:hover {
    background: var(--rouge-fonce);
    transform: scale(1.08);
    box-shadow: 0 0 22px -2px rgba(227,6,19,.7);
}
@media (max-width: 480px) {
    .lp-mini-verif { width: 100%; padding-left: 14px; }
    .lp-mini-verif-label { display: none; }
}

/* ---------- Témoignages — carrousel ---------- */
.lp-testi-carousel { position: relative; }
.lp-testi-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 22px;
    scrollbar-width: none;
}
.lp-testi-track::-webkit-scrollbar { display: none; }
.lp-testi-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 28px 24px;
    border-radius: 18px;
    background: linear-gradient(155deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-brd);
    box-shadow: var(--shadow-soft);
    transition: transform .3s var(--ease), border-color .3s ease;
}
.lp-testi-card:hover { transform: translateY(-4px); border-color: rgba(227,6,19,.55); }
.lp-testi-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rouge), var(--rouge-fonce));
    color: #fff;
    font-weight: 900;
    font-size: .98rem;
    letter-spacing: 1px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 22px -8px rgba(227,6,19,.85);
}
.lp-testi-quote {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--gris-clair);
    margin-bottom: 16px;
    font-style: italic;
}
.lp-testi-meta strong { display: block; color: #fff; font-size: .98rem; }
.lp-testi-meta span { color: var(--gris); font-size: .82rem; }
.lp-testi-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 6px;
}
.lp-testi-dots button {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.22);
    cursor: pointer;
    padding: 0;
    transition: background .25s ease, transform .25s var(--ease), width .25s ease;
}
.lp-testi-dots button:hover { background: rgba(255,255,255,.45); }
.lp-testi-dots button.active {
    background: var(--rouge);
    width: 22px; border-radius: 4px;
}
@media (min-width: 760px) {
    .lp-testi-card { flex: 0 0 calc(50% - 9px); }
}
@media (min-width: 1024px) {
    .lp-testi-card { flex: 0 0 calc(33.333% - 12px); }
}

/* ---------- Hover glow renforcé sur CTA principaux ---------- */
.btn-primary:hover, .btn-whatsapp:hover {
    box-shadow: 0 14px 36px -10px rgba(227,6,19,.75), 0 0 0 1px rgba(255,255,255,.06) inset;
}

/* ---------- Page de partage perso /p/CODE ---------- */
.partage-card {
    background: linear-gradient(160deg, #111 0%, #1a0507 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 36px 28px 32px;
    text-align: center;
    box-shadow: 0 30px 80px -30px rgba(227,6,19,.35), 0 0 0 1px rgba(255,255,255,.04) inset;
    position: relative;
    overflow: hidden;
}
.partage-card::before {
    content: ""; position: absolute; inset: -1px;
    background: radial-gradient(600px 200px at 50% -50px, rgba(227,6,19,.25), transparent 70%);
    pointer-events: none;
}
.partage-name {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 12px 0 4px;
    color: #fff;
    letter-spacing: -0.5px;
}
.partage-line { color: #d4d4d4; margin: 0 0 22px; }
.partage-code-block {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    background: rgba(0,0,0,.45);
    border: 1px dashed rgba(227,6,19,.4);
    border-radius: 16px;
    padding: 18px 16px;
    margin: 0 auto 22px;
    max-width: 320px;
}
.partage-code {
    font-family: 'DejaVu Sans Mono', 'Courier New', monospace;
    font-weight: 700;
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    color: var(--rouge);
    letter-spacing: 2px;
}
.partage-qr { background: #fff; padding: 6px; border-radius: 10px; width: 200px; height: auto; }
.partage-quote {
    color: #e4e4e4; font-style: italic; max-width: 460px;
    margin: 0 auto 22px; line-height: 1.45;
}
.partage-meta {
    display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
    margin-bottom: 22px;
}
.partage-meta div { display: flex; flex-direction: column; gap: 4px; }
.partage-meta span { color: #888; font-size: .8rem; letter-spacing: .5px; text-transform: uppercase; }
.partage-meta strong { color: #fff; font-size: 1rem; }
.partage-cta {
    display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
    margin-bottom: 8px; position: relative; z-index: 2;
}
.partage-share-menu {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 360px;
    margin-left: auto; margin-right: auto;
}
.partage-share-item {
    appearance: none;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: .92rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background .2s ease, transform .2s ease;
}
.partage-share-item:hover { background: rgba(227,6,19,.18); transform: translateY(-1px); }
.partage-verify { margin-top: 22px; font-size: .88rem; }
.partage-verify a { color: #aaa; text-decoration: underline; }
.partage-verify a:hover { color: #fff; }
.partage-disclaimer {
    margin-top: 24px; padding: 14px 16px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 10px;
    text-align: center; color: #888; font-size: .82rem; line-height: 1.5;
}
@media (max-width: 540px) {
    .partage-card { padding: 28px 16px 24px; border-radius: 18px; }
    .partage-share-menu { grid-template-columns: 1fr; }
}

/* ---------- Toast social proof live ---------- */
.vf-toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    max-width: 320px;
    padding: 12px 14px 12px 16px;
    background: rgba(18, 18, 20, .94);
    color: #fff;
    border: 1px solid rgba(255,255,255,.08);
    border-left: 3px solid var(--rouge, #e30613);
    border-radius: 12px;
    box-shadow: 0 16px 40px -10px rgba(0,0,0,.6);
    font-size: .92rem;
    line-height: 1.4;
    transform: translateX(120%);
    transition: transform .55s cubic-bezier(.2,.85,.3,1.1), opacity .35s ease;
    opacity: 0;
    pointer-events: none;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.vf-toast.show { transform: translateX(0); opacity: 1; pointer-events: auto; }
.vf-toast strong { color: #fff; font-weight: 700; }
.vf-toast .vf-toast-city { color: #bbb; font-weight: 400; }
.vf-toast .vf-toast-action { color: #d4d4d4; }
.vf-toast .vf-toast-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    background: #20c46a; margin-right: 8px; vertical-align: middle;
    animation: vfToastPulse 1.6s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(32,196,106,.6);
}
@keyframes vfToastPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(32,196,106,.5); }
    50%      { box-shadow: 0 0 0 6px rgba(32,196,106,0); }
}
@media (max-width: 600px) {
    .vf-toast {
        right: 10px; bottom: 10px; left: 10px; max-width: none;
        font-size: .85rem; padding: 10px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-particle, .lp-pass, .pdf-mockup, .glow-cta, .lp-pass::after,
    .lp-float-ticket, .lp-hero-video { animation: none !important; }
    .lp-hero-video { display: none; }
    .lp-testi-track { scroll-behavior: auto; }
    .vf-toast { transition: opacity .2s ease; transform: none; }
    .vf-toast-dot { animation: none; }
}

/* ---------- Page /verification-tirage ---------- */
.vt-phase-banner {
    display: flex; flex-direction: column; gap: 4px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    margin-top: 14px;
}
.vt-phase-banner strong { color: #fff; }
.vt-phase-banner span { color: #aaa; font-size: .9rem; }
.vt-phase-banner.phase-1 { border-left: 3px solid #888; }
.vt-phase-banner.phase-2 { border-left: 3px solid var(--rouge); }
.vt-phase-banner.phase-3 { border-left: 3px solid #20c46a; }

.vt-dl {
    display: grid; grid-template-columns: 200px 1fr; gap: 10px 16px;
    margin: 10px 0 0;
}
.vt-dl dt { color: #888; font-size: .88rem; }
.vt-dl dd { margin: 0; color: #eee; word-break: break-all; }
.vt-hash {
    font-family: 'DejaVu Sans Mono', 'Courier New', monospace;
    font-size: .8rem;
    background: rgba(0,0,0,.45);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,.08);
    display: inline-block;
    color: #ffb3b8;
}
.vt-table {
    width: 100%; border-collapse: collapse; margin-top: 14px;
    font-size: .92rem;
}
.vt-table th, .vt-table td {
    padding: 8px 10px; border-bottom: 1px solid rgba(255,255,255,.06);
    text-align: left;
}
.vt-table th { color: #888; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; }
.vt-table td code { font-family: 'DejaVu Sans Mono', 'Courier New', monospace; color: #ffb3b8; }
.btn-sm { padding: 8px 12px; font-size: .85rem; border-radius: 8px; }
@media (max-width: 700px) {
    .vt-dl { grid-template-columns: 1fr; gap: 4px 0; }
    .vt-dl dt { color: #888; font-size: .78rem; margin-top: 8px; }
    .vt-hash { font-size: .7rem; }
    .vt-table { font-size: .82rem; }
    .vt-table th, .vt-table td { padding: 6px 6px; }
}

/* ---------- /verifier : carte partage apres ticket valide ---------- */
.verif-share {
    display: flex; flex-direction: row; gap: 22px;
    align-items: stretch;
    margin-top: 24px;
    padding: 22px;
    border-radius: 16px;
    background: linear-gradient(160deg, #111 0%, #1a0507 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 60px -20px rgba(227,6,19,.35);
}
.verif-share-mini {
    flex: 0 0 180px;
    background: #000;
    border: 1px solid rgba(227,6,19,.4);
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    color: #fff;
    position: relative; overflow: hidden;
}
.verif-share-mini::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(140px 80px at 50% -20px, rgba(227,6,19,.35), transparent 80%);
    pointer-events: none;
}
.verif-share-mini-eyebrow { color: var(--rouge); font-size: .65rem; font-weight: 700; letter-spacing: 1px; }
.verif-share-mini-name { font-size: 1.05rem; font-weight: 700; }
.verif-share-mini-code {
    font-family: 'DejaVu Sans Mono', 'Courier New', monospace;
    color: var(--rouge); font-weight: 700;
    font-size: 1rem; letter-spacing: 1px; margin-top: 4px;
}
.verif-share-mini-date { color: #aaa; font-size: .72rem; margin-top: 2px; }
.verif-share-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.verif-share-body h3 { color: #fff; margin: 0 0 6px; font-size: 1.15rem; }
.verif-share-body p.muted { color: #aaa; margin: 0 0 14px; line-height: 1.45; font-size: .92rem; }
.verif-share-actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 600px) {
    .verif-share { flex-direction: column; padding: 18px; }
    .verif-share-mini { flex: 0 0 auto; }
    .verif-share-actions .btn { flex: 1 1 100%; text-align: center; }
}
