/* ═══════════════════════════════════════════
   VARIABLES & RESET
   ═══════════════════════════════════════════ */
:root {
    --blue-light: #007ac2;
    --blue-medium: #00416e;
    --blue-dark: #24375d;
    --blue-darker: #012340;
    --yellow: #ffbf35;
    --yellow-dark: #d4940a;
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --red-100: #fee2e2;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 2rem;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Lato', system-ui, -apple-system, sans-serif;
    color: var(--blue-darker);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ═══════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════ */
.cookie-overlay {
    position: fixed; inset: 0;
    background: rgba(1, 35, 64, 0.6);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 1; visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}
.cookie-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.cookie-popup {
    background: var(--white); border-radius: var(--radius-xl);
    max-width: 440px; width: 100%;
    padding: 40px 32px 32px; text-align: center;
    box-shadow: var(--shadow-xl);
}
.cookie-icon { margin: 0 auto 16px; width: 56px; height: 56px; background: var(--slate-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue-light); }
.cookie-title { font-size: 1.25rem; font-weight: 900; margin-bottom: 8px; }
.cookie-text { font-size: 0.85rem; color: var(--slate-500); margin-bottom: 24px; line-height: 1.6; }
.cookie-text a { color: var(--blue-light); text-decoration: underline; }
.cookie-buttons { display: flex; flex-direction: column; gap: 10px; }
.cookie-accept {
    padding: 14px 24px; background: #16a34a; color: white;
    font-weight: 700; font-size: 0.95rem; border-radius: 12px;
    transition: background 0.2s;
}
.cookie-accept:hover { background: #15803d; }
.cookie-refuse {
    padding: 12px 24px; background: transparent; color: var(--slate-400);
    font-weight: 600; font-size: 0.85rem; border-radius: 12px;
    border: 1px solid var(--slate-200); transition: all 0.2s;
}
.cookie-refuse:hover { border-color: var(--slate-400); color: var(--slate-600); }

/* ═══════════════════════════════════════════
   HERO LOGO (au-dessus du badge)
   ═══════════════════════════════════════════ */
.hero-logo {
    width: fit-content;
    margin: 0 auto 28px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}
.hero-logo img {
    height: 72px;
    width: auto;
    display: block;
}
@media (max-width: 600px) {
    .hero-logo { margin-bottom: 22px; }
    .hero-logo img { height: 56px; }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero-po {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 20px 80px; overflow: hidden;
    background: var(--blue-darker);
    text-align: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.55; }
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(1, 35, 64, 0.7) 0%, rgba(1, 35, 64, 0.85) 60%, rgba(1, 35, 64, 0.95) 100%);
}
.hero-content {
    position: relative; z-index: 10;
    max-width: 800px; margin: 0 auto; width: 100%;
    color: var(--white);
}

.hero-badge {
    display: flex; align-items: center; gap: 10px;
    width: fit-content;
    padding: 8px 18px;
    background: rgba(255, 191, 53, 0.15);
    color: var(--yellow);
    font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.5px;
    border-radius: 99px;
    border: 1px solid rgba(255, 191, 53, 0.4);
    margin: 0 auto 32px;
}
.badge-pulse {
    width: 8px; height: 8px; background: var(--yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-calendar {
    display: flex; flex-direction: column; align-items: center;
    width: fit-content;
    background: var(--white); color: var(--blue-darker);
    padding: 0; border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    margin: 0 auto 36px;
    overflow: hidden;
    min-width: 200px;
}
.cal-day {
    width: 100%;
    background: var(--yellow);
    padding: 12px 40px;
    font-size: 0.95rem; font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.cal-num {
    font-size: clamp(5rem, 18vw, 7.5rem);
    font-weight: 900;
    line-height: 1;
    padding: 16px 40px 4px;
    letter-spacing: -4px;
}
.cal-month {
    font-size: 1.1rem; font-weight: 700;
    letter-spacing: 6px;
    padding: 0 40px 18px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    line-height: 1;
}
.hero-title-big {
    font-size: clamp(2.8rem, 9vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.15),
        0 8px 30px rgba(0, 0, 0, 0.5);
}
.hero-title-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--yellow);
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    font-style: italic;
}
.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.hero-sub strong { color: var(--yellow); font-weight: 700; }

.hero-highlights {
    display: flex; justify-content: center; align-items: center;
    gap: 16px; flex-wrap: wrap;
    margin-bottom: 36px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.hl-item {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--white);
    font-size: 0.9rem; font-weight: 600;
}
.hl-item svg { color: var(--yellow); flex-shrink: 0; }
.hl-sep { color: rgba(255,255,255,0.3); font-size: 1.5rem; line-height: 1; }
@media (max-width: 600px) {
    .hl-sep { display: none; }
    .hero-highlights { flex-direction: column; gap: 8px; border-radius: var(--radius); }
}

.hero-cta-wrap {
    display: flex; justify-content: center; align-items: center;
    gap: 16px; flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-cta-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 20px 36px;
    background: var(--yellow); color: var(--blue-darker);
    font-size: 1rem; font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(255, 191, 53, 0.35);
    transition: all 0.2s;
}
.hero-cta-btn:hover { background: #ffc94d; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255, 191, 53, 0.45); }
.hero-cta-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 28px;
    background: transparent; color: var(--white);
    font-size: 0.9rem; font-weight: 700;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    transition: all 0.2s;
}
.hero-cta-secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--white); }

.hero-countdown {
    display: flex; flex-direction: column; align-items: center;
    width: fit-content;
    gap: 12px;
    padding: 18px 28px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    margin: 0 auto;
}
.cd-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
}
.cd-grid {
    display: flex; gap: 12px;
}
.cd-cell {
    display: flex; flex-direction: column; align-items: center;
    min-width: 60px;
    padding: 8px 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}
.cd-num {
    font-size: 1.6rem; font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.cd-lbl {
    font-size: 0.6rem; font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.anim-fade { animation: animFade 0.6s ease-out both; animation-delay: var(--d, 0s); }
.anim-up { animation: animUp 0.6s ease-out both; animation-delay: var(--d, 0s); }
.anim-scale { animation: animScale 0.6s ease-out both; animation-delay: var(--d, 0s); }
@keyframes animFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes animUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes animScale { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

.anim { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.anim.seen { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.section-eyebrow {
    display: inline-block;
    color: var(--blue-light);
    font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--blue-darker);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--slate-500);
    line-height: 1.7;
}
.section-sub strong { color: var(--blue-darker); font-weight: 700; }

/* ═══════════════════════════════════════════
   RARE SECTION (le wow différenciant)
   ═══════════════════════════════════════════ */
.rare-section {
    padding: 100px 0 80px;
    background: var(--white);
}
.rare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.rare-card {
    padding: 36px 28px;
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}
.rare-card:hover {
    background: var(--white);
    border-color: var(--slate-200);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.rare-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 16px;
}
.rare-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--blue-darker);
    margin-bottom: 12px;
    line-height: 1.3;
}
.rare-card p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.65;
}
.rare-card p strong { color: var(--blue-darker); font-weight: 700; }

/* ═══════════════════════════════════════════
   BANNER SECTION (showroom drone)
   ═══════════════════════════════════════════ */
.banner-section {
    padding: 0 0 80px;
    background: var(--white);
}
.banner-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 1100px;
    margin: 0 auto;
}
.banner-img-wrap img {
    width: 100%; height: auto;
    display: block;
}
.banner-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 32px 28px 24px;
    color: var(--white);
    background: linear-gradient(180deg, transparent 0%, rgba(1,35,64,0.85) 100%);
}
.banner-eyebrow {
    display: inline-block;
    color: var(--yellow);
    font-size: 0.7rem; font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
}
.banner-caption h3 {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    line-height: 1.3;
}

/* ═══════════════════════════════════════════
   REASSURE SECTION (objections)
   ═══════════════════════════════════════════ */
.reassure-section {
    padding: 90px 0;
    background: var(--slate-50);
}
.reassure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.reassure-card {
    padding: 32px 28px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--green-500);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.reassure-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.reassure-icon {
    width: 48px; height: 48px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-600);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.reassure-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--blue-darker);
}
.reassure-card p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.65;
}
.reassure-card p strong { color: var(--blue-darker); font-weight: 700; }

/* ═══════════════════════════════════════════
   PROGRAM SECTION (côté détente / projet)
   ═══════════════════════════════════════════ */
.program-section {
    padding: 90px 0;
}
.program-detente { background: var(--white); }
.program-projet { background: var(--slate-50); }

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.program-card {
    display: flex; align-items: flex-start;
    gap: 20px;
    padding: 26px 28px;
    background: var(--slate-50);
    border-radius: var(--radius);
    transition: all 0.2s;
}
.program-detente .program-card { background: #fffbf0; }
.program-card-blue { background: #f0f7fc !important; }
.program-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.program-num {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    flex-shrink: 0;
}
.program-num-yellow { color: var(--yellow); }
.program-num-blue { color: var(--blue-light); }
.program-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--blue-darker);
    margin-bottom: 6px;
    line-height: 1.3;
}
.program-body p {
    color: var(--slate-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   MOSAIC SECTION (showroom photos)
   ═══════════════════════════════════════════ */
.mosaic-section {
    padding: 0 0 60px;
    background: var(--white);
}
.mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.mosaic-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.mosaic-caption {
    text-align: center;
    color: var(--slate-500);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 18px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
@media (max-width: 640px) {
    .mosaic-grid { grid-template-columns: 1fr; }
    .mosaic-grid img { height: 220px; }
}

/* ═══════════════════════════════════════════
   VÉLO SECTION
   ═══════════════════════════════════════════ */
.velo-section {
    padding: 90px 0;
    background: var(--white);
}
.velo-wrap {
    background: var(--blue-darker);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    color: var(--white);
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}
.velo-header {
    text-align: center;
    margin-bottom: 40px;
}
.velo-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--yellow);
    color: var(--blue-darker);
    font-size: 0.7rem; font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 99px;
    margin-bottom: 14px;
}
.velo-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.velo-sub {
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.velo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 720px) {
    .velo-grid { grid-template-columns: 1fr; }
    .velo-wrap { padding: 36px 24px; }
}
.velo-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 191, 53, 0.3);
    border-radius: var(--radius);
}
.velo-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--yellow);
    color: var(--blue-darker);
    font-size: 0.7rem; font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 99px;
    margin-bottom: 14px;
}
.velo-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
    line-height: 1.3;
}
.velo-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.velo-steps {
    list-style: none;
    padding: 0;
}
.velo-steps li {
    display: flex; align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
}
.velo-steps li span {
    width: 22px; height: 22px;
    background: var(--yellow);
    color: var(--blue-darker);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.7rem;
    flex-shrink: 0;
}
.velo-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px;
    background: var(--yellow);
    color: var(--blue-darker);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s;
}
.velo-cta:hover { background: #ffc94d; transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   INFOS PRATIQUES
   ═══════════════════════════════════════════ */
.infos-section {
    padding: 90px 0;
    background: var(--slate-50);
}
.infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 40px;
}
.infos-card {
    padding: 32px 28px;
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}
.infos-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.infos-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    background: rgba(0, 122, 194, 0.1);
    color: var(--blue-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.infos-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--blue-darker);
}
.infos-card p {
    color: var(--slate-500);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.infos-link {
    display: inline-block;
    color: var(--blue-light);
    font-size: 0.85rem;
    font-weight: 700;
    background: transparent;
    padding: 0;
    transition: color 0.2s;
    cursor: pointer;
}
.infos-link:hover { color: var(--blue-medium); }
.infos-link-static { color: var(--slate-400); cursor: default; font-style: italic; }
.infos-link-static:hover { color: var(--slate-400); }

.map-wrap {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-wrap iframe { display: block; width: 100%; }

/* ═══════════════════════════════════════════
   FORM SECTION
   ═══════════════════════════════════════════ */
.form-section {
    padding: 100px 0;
    background: var(--white);
}
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
@media (max-width: 900px) {
    .form-wrapper { grid-template-columns: 1fr; gap: 0; }
}

.form-left {
    padding: 56px 48px;
    background:
        linear-gradient(135deg, rgba(1, 35, 64, 0.92) 0%, rgba(0, 65, 110, 0.92) 100%),
        url('img/showroomdrone.webp') center/cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.form-left::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255, 191, 53, 0.2) 0%, transparent 70%);
    pointer-events: none;
}
.form-left > * { position: relative; z-index: 1; }
@media (max-width: 900px) {
    .form-left { padding: 40px 28px; }
}
.form-badges {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 20px;
}
.badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 99px;
}
.badge-yellow { background: var(--yellow); color: var(--blue-darker); }
.badge-blue { background: rgba(255, 255, 255, 0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

.form-left h2 {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.form-left p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}
.form-left p strong { color: var(--yellow); font-weight: 700; }

.form-bullets {
    list-style: none;
    padding: 0;
}
.form-bullets li {
    display: flex; align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}
.form-bullets li svg {
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: 2px;
}
.form-bullets li strong { color: var(--white); font-weight: 700; }

.form-right {
    padding: 48px 40px;
}
@media (max-width: 900px) {
    .form-right { padding: 36px 24px; }
}

.field-hp {
    position: absolute; left: -9999px;
    width: 1px; height: 1px;
    overflow: hidden;
}

/* Multi-step form */
.form-progress {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0;
    margin-bottom: 12px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.fp-step {
    width: 36px; height: 36px;
    background: var(--slate-100);
    color: var(--slate-400);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; font-weight: 800;
    transition: all 0.3s;
    flex-shrink: 0;
}
.fp-step.active {
    background: var(--blue-light);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 122, 194, 0.15);
}
.fp-step.done {
    background: var(--blue-light);
    color: var(--white);
}
.fp-line {
    flex: 1; height: 3px;
    background: var(--slate-100);
    margin: 0 8px;
    border-radius: 2px;
    overflow: hidden;
}
.fp-fill {
    height: 100%; width: 0;
    background: var(--blue-light);
    transition: width 0.4s;
}
.fp-bar {
    width: 100%; height: 3px;
    background: var(--slate-100);
    border-radius: 2px;
    margin-bottom: 8px;
    overflow: hidden;
    display: none;
}
.fp-bar-fill {
    height: 100%; width: 0;
    background: var(--blue-light);
    transition: width 0.4s;
}
.fp-step-label {
    text-align: center;
    color: var(--slate-500);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.form-step {
    display: none;
    animation: stepFadeIn 0.3s ease-out;
}
.form-step.active { display: block; }
@keyframes stepFadeIn {
    from { opacity: 0; transform: translateX(8px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Navigation buttons */
.btn-row {
    display: flex; gap: 12px;
    margin-top: 20px;
}
.btn-next {
    flex: 1;
    padding: 16px 24px;
    background: var(--yellow);
    color: var(--blue-darker);
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(255, 191, 53, 0.25);
    transition: all 0.2s;
    margin-top: 20px;
    width: 100%;
}
.btn-next:not(:disabled):hover {
    background: #ffc94d;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 191, 53, 0.35);
}
.btn-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}
.btn-row .btn-next { margin-top: 0; }
.btn-back {
    padding: 16px 22px;
    background: var(--slate-100);
    color: var(--slate-600);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.2s;
}
.btn-back:hover {
    background: var(--slate-200);
    color: var(--blue-darker);
}
.btn-skip {
    display: block;
    margin: 12px auto 0;
    padding: 8px 16px;
    background: transparent;
    color: var(--slate-500);
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    border-bottom: 1px dashed var(--slate-300);
    border-radius: 0;
    transition: color 0.2s;
}
.btn-skip:hover { color: var(--blue-light); border-bottom-color: var(--blue-light); }

.field { margin-bottom: 14px; }
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-darker);
    margin-bottom: 6px;
}
.field input, .field select {
    width: 100%;
    padding: 13px 14px;
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--blue-darker);
    transition: all 0.2s;
}
.field input:focus, .field select:focus {
    outline: none;
    background: var(--white);
    border-color: var(--blue-light);
    box-shadow: 0 0 0 3px rgba(0, 122, 194, 0.1);
}
.field input::placeholder { color: var(--slate-400); }

.radio-group {
    display: flex; flex-direction: column;
    gap: 8px;
}
.radio-group-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
@media (max-width: 600px) {
    .radio-group-3 { grid-template-columns: 1fr; }
}
.radio-opt {
    display: flex; align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    position: relative;
}
.radio-opt:hover {
    background: var(--white);
    border-color: var(--blue-light);
}
.radio-opt input[type="radio"] {
    position: absolute;
    top: 0; left: 0;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
}
.radio-circle {
    display: inline-block;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    background: var(--white);
    border: 2px solid var(--slate-400);
    border-radius: 50% !important;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 22px;
    position: relative;
    transition: all 0.2s;
    margin-top: 1px;
    box-sizing: border-box !important;
    vertical-align: middle;
    padding: 0;
}
.radio-opt input[type="radio"]:checked + .radio-circle {
    border-color: var(--blue-light);
    background: var(--blue-light);
}
.radio-opt input[type="radio"]:checked + .radio-circle::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--white);
    border-radius: 50%;
}
.radio-opt:has(input[type="radio"]:checked) {
    background: rgba(0, 122, 194, 0.06);
    border-color: var(--blue-light);
}
.radio-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue-darker);
    display: flex; flex-direction: column;
    gap: 2px;
}
.radio-sub {
    font-size: 0.7rem;
    color: var(--slate-500);
    font-weight: 500;
}

.btn-submit {
    width: 100%;
    padding: 18px 24px;
    background: var(--yellow);
    color: var(--blue-darker);
    font-size: 1rem;
    font-weight: 800;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(255, 191, 53, 0.3);
    transition: all 0.2s;
    margin-top: 12px;
    position: relative;
}
.btn-submit:hover {
    background: #ffc94d;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 191, 53, 0.4);
}
.btn-submit.loading .btn-submit-text { opacity: 0.4; }
.btn-submit.loading .btn-submit-loader {
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid var(--blue-darker);
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
}
.btn-submit-loader { display: none; }
@keyframes spin { to { transform: translateX(50%) rotate(360deg); } }

.form-privacy {
    text-align: center;
    color: var(--slate-400);
    font-size: 0.75rem;
    margin-top: 14px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}
.form-success.show { display: block; animation: animUp 0.4s ease-out; }
.success-icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--green-600);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.form-success h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--blue-darker);
    margin-bottom: 12px;
}
.form-success p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}
.form-success p strong { color: var(--blue-darker); font-weight: 700; }

.success-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px;
    background: var(--blue-darker);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.2s;
}
.success-cta:hover { background: var(--blue-medium); }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-section {
    padding: 90px 0;
    background: var(--white);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--slate-50);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: background 0.2s;
}
.faq-item[open] { background: var(--white); border: 1px solid var(--slate-200); }
.faq-item summary {
    padding: 22px 28px;
    font-weight: 700;
    color: var(--blue-darker);
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--blue-light);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    padding: 0 28px 22px;
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-item p strong { color: var(--blue-darker); font-weight: 700; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.po-footer {
    padding: 48px 0 32px;
    background: var(--blue-darker);
    color: var(--white);
}
.footer-top {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-links {
    display: flex; gap: 24px; flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

/* ═══════════════════════════════════════════
   MOBILE OPTIMIZATIONS (≤ 600px)
   ═══════════════════════════════════════════ */
@media (max-width: 600px) {
    /* Container et padding global */
    .container { padding: 0 16px; }

    /* Hero — réduire les paddings et tailles */
    .hero-po { padding: 50px 16px 60px; min-height: auto; }
    .hero-badge { font-size: 0.7rem; padding: 7px 14px; letter-spacing: 1px; }
    .hero-calendar { min-width: 170px; }
    .cal-day { padding: 10px 28px; font-size: 0.85rem; letter-spacing: 3px; }
    .cal-num { padding: 12px 28px 4px; }
    .cal-month { padding: 0 28px 16px; font-size: 0.95rem; letter-spacing: 4px; }
    .hero-title { margin-bottom: 16px; gap: 6px; }
    .hero-title-big { font-size: 2.4rem; letter-spacing: -1.5px; }
    .hero-title-sub { font-size: 1rem; letter-spacing: 0.5px; }
    .hero-sub { font-size: 0.95rem; margin-bottom: 24px; padding: 0 4px; }
    .hero-cta-btn { padding: 16px 28px; font-size: 0.9rem; width: 100%; justify-content: center; }
    .hero-cta-secondary { padding: 14px 22px; font-size: 0.82rem; width: 100%; justify-content: center; }
    .hero-cta-wrap { flex-direction: column; gap: 10px; }
    .hero-countdown { padding: 14px 18px; }
    .cd-cell { min-width: 50px; padding: 6px 2px; }
    .cd-num { font-size: 1.3rem; }
    .cd-lbl { font-size: 0.55rem; }
    .cd-grid { gap: 8px; }

    /* Sections — réduire paddings */
    .rare-section, .reassure-section, .program-section,
    .gallery-section, .pack-section, .velo-section,
    .infos-section, .form-section, .faq-section { padding: 60px 0; }
    .banner-section { padding: 0 0 40px; }
    .mosaic-section { padding: 0 0 40px; }

    /* Section headers */
    .section-title { font-size: 1.5rem; line-height: 1.25; }
    .section-sub { font-size: 0.95rem; }
    .section-eyebrow { font-size: 0.7rem; letter-spacing: 2px; }
    .section-header { margin-bottom: 36px; }

    /* Stats strip */
    .stats-strip { padding: 24px 0; }
    .stats-grid { gap: 8px; }
    .stat-item { padding: 10px 4px; }
    .stat-num { font-size: 1.4rem; }
    .stat-lbl { font-size: 0.65rem; letter-spacing: 1px; }

    /* Banner showroom */
    .banner-caption { padding: 24px 18px 16px; }
    .banner-caption h3 { font-size: 0.95rem; }

    /* Pack section */
    .pack-urgency { font-size: 0.78rem; padding: 10px 18px; gap: 10px; text-align: left; }
    .pack-amount { font-size: 3rem; letter-spacing: -2px; }
    .pack-amount-sub { font-size: 0.95rem; }
    .pack-sub { font-size: 0.92rem; }
    .pack-equipments { padding: 24px 16px; gap: 14px; }
    .equip-item { min-width: 42%; max-width: 42%; }
    .equip-icon { width: 50px; height: 50px; }
    .equip-item span { font-size: 0.72rem; }
    .pack-benefits { gap: 10px; }
    .benefit-card { padding: 22px 16px; }
    .benefit-num { font-size: 1.8rem; }
    .benefit-txt { font-size: 0.85rem; }
    .pack-cta { padding: 16px 24px; font-size: 0.9rem; width: 100%; justify-content: center; }
    .pack-cta-sub { font-size: 0.78rem; }

    /* Vélo */
    .velo-wrap { padding: 32px 18px; }
    .velo-header { margin-bottom: 28px; }
    .velo-card { padding: 22px 18px; }
    .velo-card h3 { font-size: 1.05rem; }
    .velo-card p { font-size: 0.88rem; }
    .velo-steps li { font-size: 0.82rem; }
    .velo-cta { width: 100%; justify-content: center; }

    /* Form */
    .form-wrapper { box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-radius: 16px; }
    .form-left { padding: 32px 20px; }
    .form-left h2 { font-size: 1.3rem; }
    .form-left p { font-size: 0.9rem; }
    .form-right { padding: 28px 18px; }
    .form-progress { max-width: 280px; }
    .fp-step { width: 30px; height: 30px; font-size: 0.8rem; }
    .fp-step-label { font-size: 0.7rem; letter-spacing: 1px; }
    .field-row { grid-template-columns: 1fr; gap: 12px; }
    .field input, .field select { padding: 14px 14px; font-size: 16px; /* iOS no-zoom */ }
    .btn-next { padding: 16px 18px; font-size: 0.92rem; }
    .btn-back { padding: 16px 18px; font-size: 0.85rem; }
    .btn-row { flex-direction: column-reverse; gap: 8px; }
    .btn-row .btn-back, .btn-row .btn-next, .btn-row .btn-submit { width: 100%; }
    .btn-submit { padding: 18px 18px; font-size: 0.95rem; }
    .radio-group-3 { grid-template-columns: 1fr; gap: 8px; }

    /* Rare cards */
    .rare-card { padding: 28px 22px; }
    .rare-card h3 { font-size: 1.05rem; }
    .rare-card p { font-size: 0.88rem; }
    .rare-num { font-size: 2.4rem; }

    /* Reassure */
    .reassure-card { padding: 26px 22px; }
    .reassure-card h3 { font-size: 1.05rem; }
    .reassure-card p { font-size: 0.88rem; }

    /* Program cards */
    .program-card { padding: 22px 20px; gap: 14px; }
    .program-num { font-size: 2.2rem; }
    .program-body h3 { font-size: 0.98rem; }
    .program-body p { font-size: 0.85rem; }

    /* Infos cards */
    .infos-card { padding: 26px 22px; }
    .infos-card h3 { font-size: 0.98rem; }
    .infos-card p { font-size: 0.88rem; }
    .map-wrap iframe { height: 260px; }

    /* FAQ */
    .faq-item summary { padding: 18px 20px; font-size: 0.92rem; }
    .faq-item p { padding: 0 20px 18px; font-size: 0.9rem; }

    /* Footer */
    .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; padding-bottom: 20px; }
    .footer-links { flex-direction: column; gap: 10px; }
    .footer-bottom p { font-size: 0.75rem; }

    /* Touch targets minimum 44px */
    .infos-link, .nav-cta, .pack-cta, .velo-cta { min-height: 44px; display: inline-flex; align-items: center; }
}

/* ═══════════════════════════════════════════
   VERY SMALL SCREENS (≤ 360px)
   ═══════════════════════════════════════════ */
@media (max-width: 360px) {
    .hero-title { font-size: 1.4rem; }
    .pack-amount { font-size: 2.4rem; }
    .stats-grid { flex-direction: column; gap: 14px; }
    .stat-item { min-width: 100%; }
}

/* ═══════════════════════════════════════════
   AMBIANCE VISUELLE — Patterns, blobs, déco
   ═══════════════════════════════════════════ */

/* Déco vélo SVG dans la section vélos */
.velo-wrap { position: relative; overflow: hidden; }
.velo-deco {
    position: absolute;
    top: 24px; right: -40px;
    width: 280px;
    color: var(--yellow);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 720px) {
    .velo-deco { width: 200px; top: 12px; right: -60px; }
}
.velo-header, .velo-grid { position: relative; z-index: 1; }

/* Pattern dots décoratif réutilisable */
.rare-section, .reassure-section {
    position: relative;
    overflow: hidden;
}
.rare-section::before, .reassure-section::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background-image: radial-gradient(circle, var(--slate-200) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.rare-section::before {
    top: 40px; right: -60px;
    transform: rotate(15deg);
}
.reassure-section::after {
    bottom: 40px; left: -60px;
    transform: rotate(-15deg);
}
.rare-section .container, .reassure-section .container { position: relative; z-index: 1; }

/* Blob jaune décoratif (côté détente) */
.program-detente {
    position: relative;
    overflow: hidden;
}
.program-detente::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255, 191, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.program-detente .container { position: relative; z-index: 1; }

/* Blob bleu décoratif (côté projet) */
.program-projet {
    position: relative;
    overflow: hidden;
}
.program-projet::before {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(0, 122, 194, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.program-projet .container { position: relative; z-index: 1; }

/* Cards rare améliorées avec accent coloré au top */
.rare-card {
    position: relative;
    overflow: hidden;
}
.rare-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, transparent 100%);
    transition: opacity 0.3s;
    opacity: 0;
}
.rare-card:hover::before { opacity: 1; }

/* Reassure cards améliorées */
.reassure-card {
    position: relative;
    overflow: hidden;
}
.reassure-card::after {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Section pack — accent jaune en background */
.pack-section {
    position: relative;
    overflow: hidden;
}
.pack-section::before {
    content: '';
    position: absolute;
    top: 60px; left: -100px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255, 191, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.pack-section::after {
    content: '';
    position: absolute;
    bottom: 60px; right: -100px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(0, 122, 194, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.pack-wrap { position: relative; z-index: 1; }

/* Form section : background plus chaleureux */
.form-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
    position: relative;
    overflow: hidden;
}
.form-section::before {
    content: '';
    position: absolute;
    top: 100px; right: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 191, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.form-section .container { position: relative; z-index: 1; }

/* FAQ : background subtil */
.faq-section {
    background: var(--slate-50);
    position: relative;
    overflow: hidden;
}
.faq-section::before {
    content: '';
    position: absolute;
    top: 60px; left: -100px;
    width: 280px; height: 280px;
    background-image: radial-gradient(circle, var(--slate-200) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.5;
    pointer-events: none;
}
.faq-section .container { position: relative; z-index: 1; }

/* Hover plus marqué partout */
.rare-card, .reassure-card, .program-card, .infos-card, .benefit-card, .gallery-cell, .equip-item {
    will-change: transform;
}

/* Animation subtile sur les chiffres clés (stats) */
.stat-num {
    background: linear-gradient(180deg, var(--yellow) 0%, #ffa800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Décoration : citation visuelle dans le hero (badge pulse plus visible) */
.hero-badge {
    box-shadow: 0 4px 16px rgba(255, 191, 53, 0.15);
}

/* Marqueurs visuels supplémentaires pour les cards programme */
.program-card { position: relative; overflow: hidden; }
.program-card::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.program-detente .program-card { color: var(--yellow); }
.program-projet .program-card { color: var(--blue-light); }
.program-card:hover::after { opacity: 0.06; }

/* ═══════════════════════════════════════════
   PROGRAM CARDS WITH PHOTO (Côté projet)
   ═══════════════════════════════════════════ */
.program-grid-photo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.program-card-photo {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 !important;
    overflow: hidden;
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}
.program-card-photo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-light);
}
.program-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e0eef9 0%, #c8e0f3 100%);
}
.program-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease-out;
}
.program-card-photo:hover .program-photo img {
    transform: scale(1.05);
}
.photo-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px;
    color: var(--blue-light);
    background: linear-gradient(135deg, rgba(0, 122, 194, 0.08) 0%, rgba(0, 122, 194, 0.16) 100%);
    position: relative;
}
.photo-placeholder::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px dashed rgba(0, 122, 194, 0.25);
    border-radius: 12px;
    pointer-events: none;
}
.photo-placeholder span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue-light);
    opacity: 0.7;
}
.program-content {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 24px 28px;
}

@media (max-width: 600px) {
    .program-content { padding: 20px 18px 22px; gap: 14px; }
    .photo-placeholder span { font-size: 0.7rem; }
}

/* ═══════════════════════════════════════════
   RARE CARDS WITH PHOTO (Rare PO section)
   ═══════════════════════════════════════════ */
.rare-card-photo {
    padding: 0 !important;
    overflow: hidden;
    background: var(--white) !important;
    display: flex;
    flex-direction: column;
}
.rare-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}
.rare-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transition: transform 0.6s ease-out;
}
.rare-card-photo:hover .rare-photo img {
    transform: scale(1.05);
}
.rare-card-body {
    padding: 28px 26px 32px;
    flex: 1;
}
.rare-card-body .rare-num {
    margin-bottom: 12px;
}
@media (max-width: 600px) {
    .rare-card-body { padding: 22px 20px 26px; }
}

/* Velo cards — petit accent visuel */
.velo-card { position: relative; }

/* Infos cards — accent coloré au hover */
.infos-card {
    position: relative;
    overflow: hidden;
}
.infos-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 3px;
    background: var(--blue-light);
    transition: width 0.3s;
}
.infos-card:hover::before { width: 80%; }

/* ═══════════════════════════════════════════
   STICKY CTA BAR
   ═══════════════════════════════════════════ */
.sticky-cta-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background: rgba(1, 35, 64, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
    max-width: calc(100% - 32px);
}
.sticky-cta-bar.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.sticky-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--yellow);
    color: var(--blue-darker);
    font-size: 0.92rem;
    font-weight: 800;
    border-radius: 99px;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 191, 53, 0.3);
}
.sticky-cta-primary:hover {
    background: #ffc94d;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 191, 53, 0.45);
}
.sticky-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 22px;
    background: transparent;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 99px;
    transition: all 0.2s;
    white-space: nowrap;
}
.sticky-cta-secondary strong {
    color: var(--yellow);
    font-weight: 800;
}
.sticky-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile : on ne garde que le bouton primaire pour ne pas surcharger */
@media (max-width: 640px) {
    .sticky-cta-bar {
        left: 16px;
        right: 16px;
        bottom: 16px;
        transform: translateY(20px);
        max-width: none;
        padding: 6px;
    }
    .sticky-cta-bar.show { transform: translateY(0); }
    .sticky-cta-primary {
        flex: 1;
        justify-content: center;
        padding: 14px 18px;
        font-size: 0.92rem;
    }
    .sticky-cta-secondary { display: none; }
}

/* ═══════════════════════════════════════════
   AGENDA POPUP
   ═══════════════════════════════════════════ */
.agenda-overlay {
    position: fixed; inset: 0;
    background: rgba(1, 35, 64, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}
.agenda-overlay.show { opacity: 1; visibility: visible; }
.agenda-popup {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 420px; width: 100%;
    padding: 36px 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.25s ease-out;
}
.agenda-overlay.show .agenda-popup { transform: translateY(0); }
.agenda-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 32px; height: 32px;
    background: var(--slate-100);
    border: none; border-radius: 50%;
    color: var(--slate-500);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
}
.agenda-close:hover { background: var(--slate-200); color: var(--blue-darker); }
.agenda-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    background: rgba(0, 122, 194, 0.1);
    color: var(--blue-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.agenda-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--blue-darker);
    margin-bottom: 4px;
}
.agenda-sub {
    color: var(--slate-500);
    font-size: 0.9rem;
    margin-bottom: 22px;
}
.agenda-options {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}
.agenda-opt {
    display: flex; align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: 12px;
    color: var(--blue-darker);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    transition: all 0.2s;
    cursor: pointer;
}
.agenda-opt:hover {
    background: var(--white);
    border-color: var(--blue-light);
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(0, 122, 194, 0.1);
}
.agenda-opt span {
    flex: 1;
}
.agenda-opt svg:first-child { flex-shrink: 0; }
.agenda-arrow {
    color: var(--slate-400);
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
}
.agenda-opt:hover .agenda-arrow {
    color: var(--blue-light);
    transform: translateX(2px);
}
.agenda-event {
    font-size: 0.78rem;
    color: var(--slate-500);
    line-height: 1.6;
    padding-top: 18px;
    border-top: 1px solid var(--slate-100);
}
.agenda-event strong { color: var(--blue-darker); font-weight: 700; }

/* ═══════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════ */
.stats-strip {
    padding: 36px 0;
    background: var(--blue-darker);
    color: var(--white);
    border-bottom: 4px solid var(--yellow);
}
.stats-grid {
    display: flex; align-items: center; justify-content: space-around;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    flex: 1; min-width: 120px;
    padding: 8px 12px;
}
.stat-num {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}
.stat-plus {
    font-size: 0.7em;
    margin-left: 2px;
}
.stat-lbl {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}
.stat-sep {
    width: 1px; height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}
@media (max-width: 720px) {
    .stat-sep { display: none; }
    .stat-item { min-width: 45%; padding: 14px 8px; }
}

/* ═══════════════════════════════════════════
   GALLERY (5 photos)
   ═══════════════════════════════════════════ */
.gallery-section {
    padding: 90px 0 60px;
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 0.7fr;
    grid-template-areas:
        "large medium"
        "small1 small2"
        "small3 small3";
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
    height: 600px;
}
@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1.4fr 1fr;
        grid-template-areas:
            "large large medium"
            "small1 small2 small3";
        height: 540px;
    }
}
.gallery-cell {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-cell:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.gallery-cell img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transition: transform 0.6s ease-out;
}
.gallery-cell:hover img {
    transform: scale(1.06);
}
.gallery-large { grid-area: large; }
.gallery-medium { grid-area: medium; }
.gallery-grid > .gallery-small:nth-of-type(3) { grid-area: small1; }
.gallery-grid > .gallery-small:nth-of-type(4) { grid-area: small2; }
.gallery-grid > .gallery-small:nth-of-type(5) { grid-area: small3; }

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "large large"
            "medium medium"
            "small1 small2"
            "small3 small3";
        height: auto;
    }
    .gallery-cell { height: 180px; }
    .gallery-large { height: 240px; }
    .gallery-medium { height: 200px; }
}
.gallery-caption {
    text-align: center;
    color: var(--slate-500);
    font-size: 0.95rem;
    margin-top: 28px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PACK ZÉRO ÉNERGIE SECTION
   ═══════════════════════════════════════════ */
.pack-section {
    padding: 100px 0;
    background:
        linear-gradient(135deg, rgba(1, 35, 64, 0.96) 0%, rgba(0, 65, 110, 0.96) 100%),
        url('img/projet-03.webp') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.pack-section::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 191, 53, 0.18) 0%, transparent 60%);
    pointer-events: none;
    animation: floatGlow 8s ease-in-out infinite;
}
.pack-section::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(0, 122, 194, 0.25) 0%, transparent 60%);
    pointer-events: none;
    animation: floatGlow 10s ease-in-out infinite reverse;
}
@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    50% { transform: translate(40px, 30px); opacity: 1; }
}

.pack-wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.pack-urgency {
    display: flex; align-items: center;
    width: fit-content;
    gap: 14px;
    padding: 14px 26px;
    background: rgba(220, 38, 38, 0.18);
    border: 1.5px solid rgba(248, 113, 113, 0.5);
    border-radius: 99px;
    color: #fca5a5;
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0 auto 36px;
    text-align: left;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.2);
}
.pack-urgency strong { color: #fff; font-weight: 800; }
.urgency-pulse {
    width: 10px; height: 10px;
    background: var(--red-500);
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
    flex-shrink: 0;
}
@keyframes pulse-red {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}
.pack-urgency strong { font-weight: 800; }

.pack-header {
    text-align: center;
    margin-bottom: 48px;
}
.pack-eyebrow {
    display: inline-block;
    color: var(--yellow);
    font-size: 0.78rem; font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 22px;
}
.pack-title {
    display: flex; flex-direction: column; align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}
.pack-amount {
    font-size: clamp(4rem, 12vw, 7.5rem);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -3px;
    text-shadow:
        0 0 40px rgba(255, 191, 53, 0.5),
        0 0 80px rgba(255, 191, 53, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.3);
    animation: amountGlow 3s ease-in-out infinite;
}
@keyframes amountGlow {
    0%, 100% { text-shadow: 0 0 40px rgba(255, 191, 53, 0.5), 0 0 80px rgba(255, 191, 53, 0.3), 0 4px 20px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 0 0 60px rgba(255, 191, 53, 0.7), 0 0 100px rgba(255, 191, 53, 0.4), 0 4px 20px rgba(0, 0, 0, 0.3); }
}
.pack-amount-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
}
.pack-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 36px;
}
.pack-sub strong { color: var(--yellow); font-weight: 800; }

/* Countdown visuel pack */
.pack-cd-wrap {
    display: inline-flex; flex-direction: column; align-items: center;
    width: fit-content;
    gap: 14px;
    padding: 22px 32px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    margin: 0 auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.pack-cd-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px;
}
.pack-cd-grid {
    display: flex; gap: 14px;
}
.pack-cd-cell {
    display: flex; flex-direction: column; align-items: center;
    min-width: 70px;
    padding: 12px 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
}
.pack-cd-num {
    font-size: 2rem; font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(255, 191, 53, 0.4);
}
.pack-cd-lbl {
    font-size: 0.62rem; font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 6px;
}
@media (max-width: 600px) {
    .pack-cd-wrap { padding: 18px 20px; gap: 10px; }
    .pack-cd-grid { gap: 8px; }
    .pack-cd-cell { min-width: 56px; padding: 10px 4px; }
    .pack-cd-num { font-size: 1.5rem; }
    .pack-cd-lbl { font-size: 0.55rem; }
}

/* Equipements */
.pack-equipments {
    display: flex; align-items: center; justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    margin-bottom: 48px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.equip-item {
    text-align: center;
    flex: 1; min-width: 110px; max-width: 150px;
    position: relative;
}
.equip-icon {
    width: 64px; height: 64px;
    margin: 0 auto 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px;
    transition: all 0.3s;
}
.equip-icon img {
    width: 100%; height: 100%; object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.equip-item:hover .equip-icon {
    background: var(--yellow);
    transform: translateY(-4px) scale(1.05);
}
.equip-item:hover .equip-icon img {
    filter: brightness(0);
    opacity: 1;
}
.equip-item span {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}
.equip-plus {
    color: var(--yellow);
    font-size: 1.8rem;
    font-weight: 900;
    flex-shrink: 0;
    text-shadow: 0 0 20px rgba(255, 191, 53, 0.5);
}
.equip-bonus { padding-top: 14px; }
.equip-tag {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--yellow);
    color: var(--blue-darker);
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 99px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 191, 53, 0.4);
}
@media (max-width: 720px) {
    .equip-plus { display: none; }
    .pack-equipments { gap: 18px; }
    .equip-item { min-width: 38%; }
}

/* Bénéfices chiffrés */
.pack-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}
.benefit-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--yellow);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.benefit-highlight {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffa800 100%);
    color: var(--blue-darker);
    border-color: var(--yellow);
    box-shadow: 0 16px 40px rgba(255, 191, 53, 0.3);
    transform: scale(1.02);
}
.benefit-highlight:hover {
    background: linear-gradient(135deg, #ffd166 0%, #ffb700 100%);
    transform: translateY(-5px) scale(1.04);
    border-color: var(--white);
}
.benefit-num {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(255, 191, 53, 0.3);
}
.benefit-highlight .benefit-num {
    color: var(--blue-darker);
    text-shadow: none;
}
.benefit-unit {
    font-size: 0.6em;
    margin-left: 2px;
}
.benefit-txt {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}
.benefit-highlight .benefit-txt { color: var(--blue-darker); font-weight: 600; }
.benefit-txt strong { color: var(--white); font-weight: 800; }
.benefit-highlight .benefit-txt strong { color: var(--blue-darker); font-weight: 900; }

/* CTA Pack */
.pack-cta-wrap { text-align: center; }
.pack-cta {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 22px 44px;
    background: var(--yellow);
    color: var(--blue-darker);
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(255, 191, 53, 0.4), 0 0 0 1px rgba(255, 191, 53, 0.5);
    transition: all 0.2s;
    text-shadow: none;
}
.pack-cta:hover {
    background: #ffd166;
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(255, 191, 53, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.pack-cta-sub {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}
.pack-cta-sub strong { color: #fca5a5; font-weight: 800; }

