/* ========== RESET FONDAMENTAL ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Palette Chromatique */
    --palette-lime-primary: #c4ff00;
    --palette-lime-bright: #d4ff4d;
    --palette-violet-accent: #9d2eff;
    --palette-violet-deep: #7b1fa2;
    --palette-magenta-flash: #ff00ff;
    --palette-dark-void: #000000;
    --palette-dark-base: #0a0a0a;
    --palette-dark-mid: #1a1a1a;
    --palette-dark-card: #121212;
    --palette-text-white: #ffffff;
    --palette-text-grey: #b0b0b0;
    --palette-text-muted: #5a5a5a;
    --palette-success-green: #00ff41;
    --palette-alert-orange: #ff9500;
    --palette-neon-cyan: #00e5ff;
    --palette-neon-fire: #ff6b00;
    
    /* Typographie */
    --font-stack: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --weight-thin: 300;
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semi: 600;
    --weight-bold: 700;
    --weight-extra: 800;
    --weight-black: 900;
    
    /* Espacements */
    --gap-xs: 0.5rem;
    --gap-sm: 1rem;
    --gap-md: 1.5rem;
    --gap-lg: 2rem;
    --gap-xl: 3rem;
    --gap-2xl: 5rem;
    
    /* Arrondis */
    --curve-sm: 8px;
    --curve-md: 12px;
    --curve-lg: 18px;
    --curve-xl: 24px;
    --curve-pill: 100px;
    
    /* Animations */
    --motion-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --motion-quick: all 0.2s ease-out;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-stack);
    background: var(--palette-dark-void);
    color: var(--palette-text-white);
    line-height: 1.75;
    overflow-x: hidden;
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--motion-smooth);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
}

/* ========== UTILITAIRES GLOBAUX ========== */
.wrapper-global {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.segment-spacing {
    padding: var(--gap-2xl) 0;
}

.highlight-neon {
    color: var(--palette-lime-primary);
    font-weight: var(--weight-bold);
    text-shadow: 0 0 25px rgba(196, 255, 0, 0.7);
}

.highlight-violet {
    color: var(--palette-violet-accent);
    text-shadow: 0 0 25px rgba(157, 46, 255, 0.7);
}

.centered-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: var(--weight-black);
    margin-bottom: 2rem;
    text-shadow: 0 0 35px rgba(196, 255, 0, 0.25);
}

.centered-heading-block {
    text-align: center;
    margin-bottom: 4rem;
}

.centered-heading-block h2 {
    font-size: 3rem;
    font-weight: var(--weight-black);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 35px rgba(196, 255, 0, 0.25);
}

.centered-heading-block p {
    font-size: 1.2rem;
    color: var(--palette-text-grey);
    max-width: 850px;
    margin: 0 auto;
}

/* ========== MASTHEAD (HEADER) ========== */
.masthead-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--palette-lime-primary);
    box-shadow: 0 5px 35px rgba(196, 255, 0, 0.12);
}

.masthead-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    font-size: 2.1rem;
    font-weight: var(--weight-black);
    background: linear-gradient(145deg, var(--palette-lime-primary), var(--palette-violet-accent), var(--palette-magenta-flash));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.navigation-hub {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.menu-items {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.menu-anchor {
    color: var(--palette-text-grey);
    font-weight: var(--weight-semi);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.menu-anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--palette-lime-primary), var(--palette-violet-accent));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.menu-anchor:hover {
    color: var(--palette-lime-primary);
}

.menu-anchor:hover::after {
    width: 100%;
}

.action-trigger-nav {
    background: linear-gradient(145deg, var(--palette-lime-primary), var(--palette-success-green));
    color: var(--palette-dark-void);
    padding: 0.85rem 2.2rem;
    border-radius: var(--curve-pill);
    font-weight: var(--weight-bold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 25px rgba(196, 255, 0, 0.4);
}

.action-trigger-nav:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(196, 255, 0, 0.6);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--palette-lime-primary);
    border-radius: 2px;
    transition: var(--motion-quick);
}

/* ========== SHOWCASE (HERO) ========== */
.showcase-banner {
    margin-top: 80px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top right, rgba(157, 46, 255, 0.18), transparent 65%),
        radial-gradient(ellipse at bottom left, rgba(196, 255, 0, 0.12), transparent 65%),
        var(--palette-dark-void);
}

.showcase-banner::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -12%;
    width: 850px;
    height: 850px;
    background: radial-gradient(circle, rgba(157, 46, 255, 0.28), transparent 55%);
    border-radius: 50%;
    animation: orb-pulse 7s ease-in-out infinite;
}

.showcase-banner::after {
    content: '';
    position: absolute;
    bottom: -18%;
    left: -8%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(196, 255, 0, 0.22), transparent 55%);
    border-radius: 50%;
    animation: orb-pulse 9s ease-in-out infinite reverse;
}

@keyframes orb-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.25); opacity: 0.9; }
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.showcase-narrative h1 {
    font-size: 3.8rem;
    font-weight: var(--weight-black);
    line-height: 1.12;
    margin-bottom: 1.8rem;
    text-shadow: 0 0 35px rgba(196, 255, 0, 0.25);
}

.showcase-narrative p {
    font-size: 1.3rem;
    color: var(--palette-text-grey);
    margin-bottom: 2.5rem;
    line-height: 1.85;
}

.showcase-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.action-primary {
    background: linear-gradient(145deg, var(--palette-lime-primary), var(--palette-success-green));
    color: var(--palette-dark-void);
    padding: 1.15rem 2.8rem;
    border-radius: var(--curve-pill);
    font-size: 1.15rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    box-shadow: 0 6px 30px rgba(196, 255, 0, 0.5);
}

.action-primary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 45px rgba(196, 255, 0, 0.7);
}

.action-outline {
    background: transparent;
    color: var(--palette-text-white);
    padding: 1.15rem 2.8rem;
    border: 3px solid var(--palette-violet-accent);
    border-radius: var(--curve-pill);
    font-size: 1.15rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
}

.action-outline:hover {
    background: var(--palette-violet-accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(157, 46, 255, 0.6);
}

.metrics-showcase {
    display: flex;
    gap: 3.5rem;
    margin-top: 2rem;
}

.metric-unit {
    text-align: left;
}

.metric-digit {
    font-size: 2.7rem;
    font-weight: var(--weight-black);
    color: var(--palette-lime-primary);
    display: block;
    text-shadow: 0 0 30px rgba(196, 255, 0, 0.65);
}

.metric-label {
    color: var(--palette-text-grey);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: var(--weight-semi);
}

.showcase-imagery {
    position: relative;
}

.imagery-container {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(145deg, rgba(157, 46, 255, 0.25), rgba(196, 255, 0, 0.18));
    border-radius: var(--curve-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(196, 255, 0, 0.25);
    box-shadow: 0 18px 65px rgba(157, 46, 255, 0.35);
    animation: levitate 5s ease-in-out infinite;
    overflow: hidden;
}

.imagery-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes levitate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* ========== PRESENTATION ========== */
.presentation-zone {
    background: linear-gradient(180deg, var(--palette-dark-void) 0%, var(--palette-dark-base) 100%);
}

.narrative-container {
    max-width: 1000px;
    margin: 0 auto;
}

.narrative-content p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--palette-text-grey);
    margin-bottom: 1.8rem;
}

/* ========== AVANTAGES ========== */
.advantages-zone {
    background: linear-gradient(180deg, var(--palette-dark-base) 0%, var(--palette-dark-void) 100%);
}

.advantages-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.advantage-tile {
    background: var(--palette-dark-card);
    padding: 2.5rem;
    border-radius: var(--curve-lg);
    border: 2px solid rgba(196, 255, 0, 0.12);
    transition: var(--motion-smooth);
    position: relative;
    overflow: hidden;
}

.advantage-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--palette-lime-primary), var(--palette-violet-accent), var(--palette-magenta-flash));
}

.advantage-tile:hover {
    transform: translateY(-10px);
    border-color: var(--palette-lime-primary);
    box-shadow: 0 18px 55px rgba(157, 46, 255, 0.35);
}

.tile-symbol {
    font-size: 3.2rem;
    margin-bottom: 1.3rem;
    filter: drop-shadow(0 0 18px rgba(196, 255, 0, 0.55));
}

.advantage-tile h3 {
    font-size: 1.55rem;
    margin-bottom: 1.1rem;
    color: var(--palette-lime-primary);
    font-weight: var(--weight-bold);
}

.advantage-tile p {
    color: var(--palette-text-grey);
    line-height: 1.95;
}

/* ========== GRATIFICATIONS ========== */
.rewards-zone {
    background: 
        radial-gradient(ellipse at center, rgba(157, 46, 255, 0.08), transparent 65%),
        var(--palette-dark-void);
}

.rewards-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reward-tile {
    background: var(--palette-dark-card);
    padding: 2.5rem;
    border-radius: var(--curve-lg);
    border: 2px solid transparent;
    transition: var(--motion-smooth);
    position: relative;
    overflow: hidden;
}

.reward-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--palette-lime-primary), var(--palette-violet-accent));
}

.reward-tile:hover {
    border-color: var(--palette-violet-accent);
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(157, 46, 255, 0.45);
}

.reward-badge {
    color: var(--palette-lime-primary);
    font-size: 0.85rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.7rem;
}

.reward-tile h3 {
    font-size: 1.85rem;
    margin-bottom: 1.1rem;
    color: var(--palette-text-white);
    font-weight: var(--weight-bold);
}

.reward-amount {
    font-size: 1.35rem;
    color: var(--palette-text-grey);
    margin-bottom: 1.8rem;
    font-weight: var(--weight-semi);
}

.reward-specs {
    list-style: none;
    margin-bottom: 2rem;
}

.reward-specs li {
    padding: 0.65rem 0;
    color: var(--palette-text-grey);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reward-specs li::before {
    content: '✓';
    color: var(--palette-success-green);
    font-weight: var(--weight-bold);
    font-size: 1.25rem;
}

.action-reward {
    width: 100%;
    display: block;
    text-align: center;
    background: linear-gradient(145deg, var(--palette-violet-accent), var(--palette-violet-deep));
    color: var(--palette-text-white);
    padding: 1.05rem;
    border-radius: var(--curve-md);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    box-shadow: 0 6px 28px rgba(157, 46, 255, 0.4);
}

.action-reward:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 38px rgba(157, 46, 255, 0.6);
}

/* ========== CATALOGUE LUDIQUE ========== */
.catalogue-zone {
    background: var(--palette-dark-base);
}

.catalogue-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.catalogue-tile {
    background: var(--palette-dark-card);
    padding: 2.5rem;
    border-radius: var(--curve-lg);
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.12);
    transition: var(--motion-smooth);
    cursor: pointer;
}

.catalogue-tile:hover {
    border-color: var(--palette-lime-primary);
    transform: translateY(-10px);
    box-shadow: 0 18px 50px rgba(196, 255, 0, 0.28);
}

.tile-emblem {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 22px rgba(196, 255, 0, 0.55));
}

.catalogue-tile h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    font-weight: var(--weight-bold);
}

.tile-quantity {
    color: var(--palette-text-muted);
    font-size: 0.95rem;
    font-weight: var(--weight-semi);
    margin-bottom: 1rem;
}

.tile-description {
    color: var(--palette-text-grey);
    line-height: 1.8;
}

.partners-showcase {
    text-align: center;
    padding: 4rem;
    background: rgba(157, 46, 255, 0.04);
    border-radius: var(--curve-xl);
    border: 1px solid rgba(196, 255, 0, 0.08);
}

.partners-showcase h3 {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    color: var(--palette-text-grey);
    font-weight: var(--weight-bold);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.8rem;
    align-items: center;
}

.partner-tag {
    padding: 1.1rem 1.8rem;
    background: var(--palette-dark-card);
    border-radius: var(--curve-md);
    color: var(--palette-text-grey);
    font-weight: var(--weight-semi);
    transition: var(--motion-smooth);
    border: 2px solid rgba(196, 255, 0, 0.08);
}

.partner-tag:hover {
    color: var(--palette-lime-primary);
    transform: scale(1.08);
    border-color: var(--palette-lime-primary);
    box-shadow: 0 8px 28px rgba(196, 255, 0, 0.28);
}

/* ========== EXPLORATION ========== */
.exploration-zone {
    background: var(--palette-dark-void);
}

.exploration-container {
    max-width: 1000px;
    margin: 0 auto;
}

.exploration-segment {
    margin-bottom: 3.5rem;
}

.exploration-segment h3 {
    font-size: 1.95rem;
    margin-bottom: 1.6rem;
    color: var(--palette-lime-primary);
    font-weight: var(--weight-bold);
}

.exploration-segment p {
    font-size: 1.12rem;
    line-height: 2.05;
    color: var(--palette-text-grey);
    margin-bottom: 1.6rem;
}

/* ========== IDENTITÉ ========== */
.identity-zone {
    background: linear-gradient(180deg, var(--palette-dark-base) 0%, var(--palette-dark-void) 100%);
}

.identity-container {
    max-width: 1000px;
    margin: 0 auto;
}

.identity-segment {
    margin-bottom: 3.5rem;
}

.identity-segment h3 {
    font-size: 1.95rem;
    margin-bottom: 1.6rem;
    color: var(--palette-lime-primary);
    font-weight: var(--weight-bold);
}

.identity-segment p {
    font-size: 1.12rem;
    line-height: 2.05;
    color: var(--palette-text-grey);
    margin-bottom: 1.6rem;
}

/* ========== BANKING ========== */
.banking-zone {
    background: var(--palette-dark-void);
}

.banking-showcase {
    background: var(--palette-dark-card);
    padding: 3rem;
    border-radius: var(--curve-lg);
    border: 2px solid rgba(196, 255, 0, 0.15);
}

.banking-subtitle {
    font-size: 1.95rem;
    margin-bottom: 2rem;
    color: var(--palette-lime-primary);
    text-align: center;
}

.banking-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.banking-tile {
    background: var(--palette-dark-base);
    padding: 2rem;
    border-radius: var(--curve-md);
    border: 2px solid rgba(196, 255, 0, 0.12);
}

.banking-tile.featured {
    border-color: var(--palette-success-green);
}

.banking-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.banking-icon {
    font-size: 2.4rem;
}

.banking-header h4 {
    font-size: 1.25rem;
    color: var(--palette-lime-primary);
    margin-bottom: 0.25rem;
}

.banking-badge {
    font-size: 0.75rem;
    font-weight: var(--weight-bold);
    padding: 0.25rem 0.6rem;
    border-radius: 5px;
}

.banking-badge.popular {
    color: var(--palette-success-green);
    background: rgba(0, 255, 65, 0.15);
}

.banking-badge.recommended {
    color: var(--palette-success-green);
    background: rgba(0, 255, 65, 0.15);
}

.banking-specs {
    display: grid;
    gap: 0.85rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
}

.spec-row span {
    color: var(--palette-text-grey);
}

.spec-row strong.free {
    color: var(--palette-success-green);
}

.spec-row strong.fast {
    color: var(--palette-success-green);
}

.banking-notice {
    background: rgba(196, 255, 0, 0.04);
    padding: 2rem;
    border-radius: var(--curve-md);
    border-left: 5px solid var(--palette-lime-primary);
}

.banking-notice h4 {
    color: var(--palette-lime-primary);
    margin-bottom: 1.1rem;
    font-size: 1.15rem;
}

.banking-notice ul {
    list-style: none;
    color: var(--palette-text-grey);
    line-height: 2.2;
}

/* ========== ONBOARDING ========== */
.onboarding-zone {
    background: linear-gradient(145deg, rgba(157, 46, 255, 0.08), rgba(196, 255, 0, 0.04));
}

.onboarding-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.onboarding-tile {
    background: var(--palette-dark-card);
    padding: 3rem 2rem;
    border-radius: var(--curve-lg);
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.15);
    position: relative;
}

.step-number {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--palette-lime-primary);
    color: var(--palette-dark-void);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--weight-black);
    font-size: 1.4rem;
}

.step-icon {
    font-size: 3.3rem;
    margin-bottom: 1.4rem;
}

.onboarding-tile h3 {
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
    color: var(--palette-lime-primary);
    font-weight: var(--weight-bold);
}

.onboarding-tile p {
    color: var(--palette-text-grey);
    margin-bottom: 1.7rem;
    line-height: 1.85;
}

.action-step {
    display: inline-block;
    background: var(--palette-violet-accent);
    color: var(--palette-text-white);
    padding: 0.85rem 2.2rem;
    border-radius: var(--curve-pill);
    font-weight: var(--weight-bold);
    transition: var(--motion-smooth);
}

.action-step:hover {
    background: var(--palette-violet-deep);
    transform: translateY(-3px);
}

/* ========== UNIVERSE ========== */
.universe-zone {
    background: var(--palette-dark-void);
}

.universe-container {
    max-width: 1000px;
    margin: 0 auto;
}

.universe-segment {
    margin-bottom: 3rem;
}

.universe-segment h3 {
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
    color: var(--palette-lime-primary);
    font-weight: var(--weight-bold);
}

.universe-segment p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--palette-text-grey);
    margin-bottom: 1.5rem;
}

/* ========== FAQ ========== */
.faq-zone {
    background: var(--palette-dark-base);
}

.faq-container {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background: var(--palette-dark-card);
    margin-bottom: 1.4rem;
    border-radius: var(--curve-md);
    overflow: hidden;
    border: 2px solid rgba(196, 255, 0, 0.12);
}

.faq-trigger {
    width: 100%;
    padding: 1.7rem;
    background: transparent;
    color: var(--palette-text-white);
    text-align: left;
    font-size: 1.15rem;
    font-weight: var(--weight-semi);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--motion-smooth);
}

.faq-trigger:hover {
    color: var(--palette-lime-primary);
}

.faq-symbol {
    font-size: 1.7rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-symbol {
    transform: rotate(45deg);
}

.faq-response {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-response {
    max-height: 600px;
}

.faq-text {
    padding: 0 1.7rem 1.7rem;
    color: var(--palette-text-grey);
    line-height: 1.95;
}

/* ========== CTA FINALE ========== */
.finale-cta {
    background: linear-gradient(145deg, var(--palette-violet-accent), var(--palette-violet-deep));
    text-align: center;
    padding: 5.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.finale-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 255, 0, 0.12), transparent 45%);
    animation: spin-slow 25s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.finale-cta h2 {
    font-size: 2.9rem;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 35px rgba(255, 255, 255, 0.25);
}

.cta-highlight {
    color: var(--palette-lime-primary);
}

.finale-cta p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.action-finale {
    background: var(--palette-lime-primary);
    color: var(--palette-dark-void);
    padding: 1.4rem 3.8rem;
    font-size: 1.35rem;
    font-weight: var(--weight-bold);
    border-radius: var(--curve-pill);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 45px rgba(196, 255, 0, 0.5);
}

.action-finale:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 18px 60px rgba(196, 255, 0, 0.7);
}

/* ========== FOOTER ========== */
.footer-wrapper {
    background: var(--palette-dark-void);
    border-top: 3px solid var(--palette-lime-primary);
    padding: 4rem 0 1.5rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--palette-lime-primary);
    margin-bottom: 1.4rem;
    font-size: 1.15rem;
    font-weight: var(--weight-bold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--palette-text-grey);
    font-weight: var(--weight-medium);
}

.footer-links a:hover {
    color: var(--palette-lime-primary);
    padding-left: 8px;
}

.age-restriction {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--palette-dark-card);
    border-radius: var(--curve-md);
    text-align: center;
    border: 2px solid var(--palette-alert-orange);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: var(--palette-lime-primary);
    color: var(--palette-dark-void);
    font-size: 1.75rem;
    font-weight: var(--weight-black);
    border-radius: 50%;
    margin-bottom: 1.4rem;
}

.age-restriction p {
    color: var(--palette-text-grey);
    line-height: 1.85;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.legal-notice {
    color: var(--palette-text-muted);
    font-size: 0.88rem;
    line-height: 1.85;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-narrative h1 {
        font-size: 2.9rem;
    }
    
    .showcase-imagery {
        display: none;
    }
}

@media (max-width: 768px) {
    .navigation-hub {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .showcase-narrative h1 {
        font-size: 2.3rem;
    }
    
    .metrics-showcase {
        flex-direction: column;
        gap: 1.8rem;
    }
    
    .centered-heading-block h2,
    .centered-heading {
        font-size: 2.2rem;
    }
    
    .wrapper-global {
        padding: 0 1.4rem;
    }
    
    .advantages-mosaic,
    .rewards-mosaic,
    .catalogue-mosaic,
    .onboarding-mosaic,
    .banking-mosaic {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .showcase-narrative h1 {
        font-size: 1.9rem;
    }
    
    .action-primary,
    .action-outline {
        width: 100%;
        text-align: center;
    }
    
    .metric-digit {
        font-size: 2.2rem;
    }
}