/* ==========================================================================
   LegkoPay Unified Showcase Wrapper & Bento Grid ("Про нас")
   ========================================================================== */

.unified-showcase-section {
    position: relative;
    width: 100%;
    background-color: #f6faff;
    overflow: visible;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    z-index: 2; /* Fix overlap with parallax footer */
}

/* Unified background elements that stretch across the entire scroll height */
.unified-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 2;
    pointer-events: none;
}

.unified-auroras {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.unified-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    mix-blend-mode: screen;
    will-change: transform, opacity;
    pointer-events: none;
}

.unified-aurora.purple-top {
    top: 5%;
    left: 10%;
    width: 480px;
    height: 480px;
    background-color: #93c5fd;
    opacity: 0.4;
    animation: unifiedAuroraFloat1 16s infinite ease-in-out;
}

.unified-aurora.cyan-mid {
    top: 40%;
    right: 10%;
    width: 420px;
    height: 420px;
    background-color: #67e8f9;
    opacity: 0.6;
    animation: unifiedAuroraFloat2 20s infinite ease-in-out;
}

.unified-aurora.magenta-bottom {
    bottom: 10%;
    left: 15%;
    width: 450px;
    height: 450px;
    background-color: #bae6fd;
    opacity: 0.35;
    animation: unifiedAuroraFloat3 18s infinite ease-in-out;
}

@keyframes unifiedAuroraFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(30px, -20px) scale(1.08); opacity: 0.5; }
}

@keyframes unifiedAuroraFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-40px, 30px) scale(1.05); opacity: 0.45; }
}

@keyframes unifiedAuroraFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1.05); opacity: 0.35; }
    50% { transform: translate(-20px, 40px) scale(0.95); opacity: 0.4; }
}

/* ==========================================================================
   PART 1: UNIFIED PARALLAX SCROLL CONTAINER (Desktop Pinning system)
   ========================================================================== */

.unified-parallax-wrap {
    position: relative;
    width: 100%;
    height: 400vh; /* Beautiful expanded scroll depth track */
    background-color: transparent;
    overflow: visible;
    margin: 0 !important;
    padding: 0 !important;
}

@media (min-width: 992px) {
    .unified-sticky-container {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100%;
        overflow: hidden;
        z-index: 5;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* Flexbox Absolute Centering Phase Wrappers */
    .about-header-wrap,
    .about-grid-wrap,
    .features-header-wrap,
    .features-stage-wrap {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 5;
        opacity: 0;
        visibility: hidden;
        will-change: transform, opacity;
    }
    
    /* Enable pointer events only for interactive child content */
    .about-header-wrap > *,
    .about-grid-wrap > *,
    .features-header-wrap > *,
    .features-stage-wrap > * {
        pointer-events: auto;
    }
    
    /* Child element overrides to display fully within wrap4 parent animations */
    .features-central-stage,
    .features-tabs-wrapper,
    .features-descriptions-wrapper,
    .features-floating-decorations,
    .admin-demo-cta {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
    
    /* Natural Block layouts centered inside the wrappers (Zero offsets, zero shifts!) */
    .about-header,
    .features-header {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 800px;
        margin: 0 auto !important;
        z-index: 15;
        opacity: 1;
        visibility: visible;
        will-change: transform, opacity;
        transition: none !important;
    }
    
    .about-bento-grid {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 1140px;
        margin: 0 auto !important;
        z-index: 10;
        opacity: 1;
        visibility: visible;
        will-change: transform, opacity;
        transition: none !important;
    }
}

@media (max-width: 991.98px) {
    .unified-parallax-wrap {
        height: auto !important;
        padding: 5rem 0 3rem 0;
    }
    
    .unified-sticky-container {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        overflow: visible !important;
        display: block !important;
        padding: 0 1.25rem !important;
    }
    
    /* Reset all centering wrappers to stack naturally on mobile */
    .about-header-wrap,
    .about-grid-wrap,
    .features-header-wrap,
    .features-stage-wrap {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    .about-header-wrap,
    .about-grid-wrap,
    .features-header-wrap {
        margin-bottom: 3.5rem !important;
    }
    
    .features-stage-wrap {
        margin-bottom: 0 !important;
    }
    
    .about-header {
        opacity: 0;
        transform: translateY(30px);
        margin-bottom: 2.5rem !important;
        transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        will-change: transform, opacity;
    }
    
    .about-header.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 6px 16px;
    border-radius: 50px;
    color: #c084fc;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c084fc;
    box-shadow: 0 0 10px #c084fc;
    margin-right: 10px;
    animation: pulseBadgeDot 2s infinite ease-in-out;
}

@keyframes pulseBadgeDot {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.15); }
}

.about-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.about-subtitle {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: #475569;
    line-height: 1.6;
    max-width: 600px;
}

.text-gradient {
    color: #0ea5e9;
}

/* Bento Grid */
.about-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 992px) {
    .about-bento-grid {
        grid-template-columns: 1.2fr 1.8fr;
    }
    .bento-manifesto {
        grid-row: span 2;
    }
}

.bento-card {
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
    z-index: 10;
}

.bento-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.bento-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(
        400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(0, 0, 0, 0.02),
        transparent 40%
    );
    z-index: 3;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.bento-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-icon-fa {
    filter: drop-shadow(0 0 15px currentColor);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.bento-card:hover .bento-icon-fa {
    transform: scale(1.08) translateY(-2px);
}

.bento-card-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
}

.bento-card-text {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.98rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.6;
}

.bento-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(1.4rem, 3.5vw, 1.85rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.72rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* Make sure Font Awesome icon gradients match premium looks */
.fa-bolt, .fa-brain, .fa-chart-simple {
    display: inline-block;
}

/* Scoped Layout Tokens */
:root {
    --features-bg-color: #f6faff;
    --features-glow-purple: rgba(124, 58, 237, 0.3);
    --features-glow-cyan: rgba(6, 182, 212, 0.28);
    --features-glow-magenta: rgba(217, 70, 239, 0.26);
    --features-easing: cubic-bezier(0.22, 1, 0.36, 1);
    --features-stage-width: 940px;
    --features-stage-height: 500px;
}

/* Legacy features parallax containers unified under .unified-parallax-wrap */

/* ==========================================================================
   Emitting Aurora Backgrounds (Vibrant soft glowing blobs)
   ========================================================================== */
.features-aurora-glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    mix-blend-mode: screen;
    will-change: transform, opacity;
    pointer-events: none;
}

.aurora-blob.purple {
    top: 10%;
    left: 20%;
    width: 480px;
    height: 480px;
    background-color: #93c5fd; /* Neon Purple */
    opacity: 0.5;
    animation: auroraFloat1 18s infinite ease-in-out;
}

.aurora-blob.cyan {
    top: 25%;
    right: 25%;
    width: 420px;
    height: 420px;
    background-color: #67e8f9; /* Neon Cyan */
    opacity: 0.5;
    animation: auroraFloat2 22s infinite ease-in-out;
}

.aurora-blob.magenta {
    bottom: 15%;
    left: 35%;
    width: 450px;
    height: 450px;
    background-color: #bae6fd; /* Neon Magenta */
    opacity: 0.2;
    animation: auroraFloat3 20s infinite ease-in-out;
}

@keyframes auroraFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(40px, 30px) scale(1.1); opacity: 0.6; }
}

@keyframes auroraFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-50px, -40px) scale(1.08); opacity: 0.28; }
}

@keyframes auroraFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1.1); opacity: 0.2; }
    50% { transform: translate(-30px, 40px) scale(0.95); opacity: 0.25; }
}

/* Faint engineering grid lines */
.features-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 2;
    pointer-events: none;
}

/* ==========================================================================
   Header Typography (Centering & Alignment)
   ========================================================================== */
.features-header {
    max-width: 800px;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 5;
    will-change: transform, opacity;
    transition: opacity 0.5s ease, transform 0.5s var(--features-easing);
}

.features-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.features-subtitle {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 400;
    color: #475569;
    line-height: 1.6;
    max-width: 580px;
    margin-top: 0.85rem;
}

/* ==========================================================================
   FLOATING 3D AMBIENT DECORATIONS (GitHub Copilot Style)
   ========================================================================== */
.features-floating-decorations {
    position: absolute;
    top: 140px; /* Aligned right above the central stage when centered */
    left: 50%;
    transform: translateX(-50%) translateY(180px); /* Linked in sync with stage scroll rise! */
    width: var(--features-stage-width);
    height: 80px;
    z-index: 15;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
    transition: opacity 0.5s ease, transform 0.5s var(--features-easing), visibility 0.5s ease;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: drop-shadow(0 0 15px currentColor);
    animation: orbFloat 6s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purple-orb {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 30% 30%, #a855f7, #6b21a8);
    color: rgba(168, 85, 247, 0.4);
    left: 20%;
    top: 10px;
    animation-delay: 0s;
}

.cyan-orb {
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 30% 30%, #06b6d4, #0891b2);
    color: rgba(6, 182, 212, 0.4);
    right: 25%;
    top: -10px;
    animation-delay: 1.5s;
}

.gold-orb {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, #fbbf24, #d97706);
    color: rgba(251, 191, 36, 0.4);
    left: 45%;
    bottom: -5px;
    animation-delay: 3s;
}

.lightning-orb {
    font-size: 1.6rem;
    font-weight: 700;
    left: 75%;
    top: 15px;
    color: #ffb700;
    text-shadow: 0 0 15px currentColor;
    animation: lightningFloat 4s infinite ease-in-out;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.08); }
}

@keyframes lightningFloat {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    50% { transform: translateY(-10px) scale(1.1) rotate(10deg); }
}

/* ==========================================================================
   THE SHOWCASE GROUP CONTAINER (Absolute Wrapper for Perfect Centering)
   ========================================================================== */
.features-showcase-group {
    position: absolute;
    bottom: 3.5vh; /* Anchored beautifully near the bottom of the sticky viewport */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--features-stage-width);
    z-index: 10;
    pointer-events: none; /* Ignore pointer events on the wrapper itself */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Force child active interactives to capture events */
.features-central-stage,
.features-tabs-wrapper,
.features-descriptions-wrapper,
.admin-demo-cta {
    pointer-events: auto !important;
}

/* ==========================================================================
   THE GLASS STAGE CONTAINER (Strict Premium Glassmorphism Sized Large)
   ========================================================================== */
.features-central-stage {
    position: relative;
    width: 100%;
    max-width: var(--features-stage-width);
    height: var(--features-stage-height);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 1.5rem;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1), 
        0 24px 48px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(180px); /* Starts lower for dramatic rise */
    visibility: hidden;
    will-change: transform, opacity;
    transition: 
        border-color 0.4s var(--features-easing), 
        background-color 0.4s var(--features-easing), 
        box-shadow 0.4s var(--features-easing),
        opacity 0.5s ease,
        transform 0.5s var(--features-easing),
        visibility 0.5s ease;
}

/* Spotlight cursor highlight tracking */
.features-central-stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        450px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(0, 0, 0, 0.02),
        transparent 80%
    );
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.features-central-stage:hover::before {
    opacity: 1;
}

.features-central-stage:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: #475569;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1), 
        0 30px 60px rgba(0, 0, 0, 0.08), 
        0 0 35px rgba(22, 125, 240, 0.05);
}

.spotlight-radial-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(22, 125, 240, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   TAB CONTENT & ZERO LAYOUT SHIFT (Stacked absolute panels)
   ========================================================================== */
.stage-content-panels {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stage-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.95);
    transition: 
        opacity 0.6s var(--features-easing),
        transform 0.6s var(--features-easing),
        visibility 0.6s var(--features-easing);
    z-index: 1;
    padding: 2rem;
    will-change: transform, opacity;
}

.stage-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    z-index: 5;
}

/* ==========================================================================
   NAVIGATION TABS (Premium Pill Selector with horizontal scroll safe viewport)
   ========================================================================== */
.features-tabs-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 100;
    opacity: 0;
    transform: translateY(180px);
    visibility: hidden;
    will-change: transform, opacity;
    width: 100%;
    max-width: 100%;
    transition: opacity 0.5s ease, transform 0.5s var(--features-easing), visibility 0.5s ease;
}

.features-tabs-pill {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 50px;
    display: inline-flex;
    padding: 6px;
    gap: 6px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.05), 
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tab-pill-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #475569;
    padding: 8px 26px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.76rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--features-easing);
    outline: none !important;
}

.tab-pill-btn:hover {
    color: #0f172a;
}

.tab-pill-btn.active {
    background: #0f172a;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   DYNAMIC DESCRIPTIVE TEXT (Zero CLS layout approach)
   ========================================================================== */
.features-descriptions-wrapper {
    position: relative;
    margin-top: 3.5rem; /* Generous breathing room between tabs and description */
    min-height: 56px;
    max-width: 680px;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(180px);
    visibility: hidden;
    will-change: transform, opacity;
    transition: opacity 0.5s ease, transform 0.5s var(--features-easing), visibility 0.5s ease;
}

.feature-desc-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.15rem; /* Spacious, readable font size */
    color: #e2e8f0; /* Crisp bright high-contrast light text */
    line-height: 1.75; /* Premium reading line-height */
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 
        opacity 0.4s var(--features-easing), 
        transform 0.4s var(--features-easing), 
        visibility 0.4s var(--features-easing);
    will-change: transform, opacity;
}

.feature-desc-line.active {
    position: relative; /* Height Anchor */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================================================
   Micro-Visualizations Sizing: MOCKUPS ARE THE HEROES
   ========================================================================== */
.bento-visual-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.stage-panel::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    filter: blur(55px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.12;
    transition: opacity 0.5s ease, transform 0.5s var(--features-easing);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.autofill-visual-glow::after { background: radial-gradient(circle, #00b8ff 0%, transparent 70%); }
.banks-visual-glow::after { background: radial-gradient(circle, #167df0 0%, transparent 70%); opacity: 0.4; }
.qr-visual-glow::after { background: radial-gradient(circle, #ffb700 0%, transparent 70%); opacity: 0.4; }
.speed-visual-glow::after { background: radial-gradient(circle, #00b8ff 0%, transparent 70%); }

/* ==========================================================================
   HERO 1: Browser Autofill Sizing (Hero sized width)
   ========================================================================== */
.browser-mockup-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.browser-mockup {
    width: 90%;
    max-width: 780px;
    height: 380px;
    background: #070709;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 14px;
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.6),
        inset 0 0 15px rgba(255, 255, 255, 0.01);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
}

.browser-header {
    height: 36px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    padding: 0 14px;
    position: relative;
}

.browser-dots {
    display: flex;
    gap: 6px;
    position: absolute;
    left: 14px;
}

.browser-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.browser-dots .dot.red { background-color: #ef4444; }
.browser-dots .dot.yellow { background-color: #f59e0b; }
.browser-dots .dot.green { background-color: #10b981; }

.browser-address {
    margin: 0 auto;
    width: 220px;
    height: 20px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.35);
    gap: 4px;
}

.browser-content {
    flex: 1;
    position: relative;
    padding: 15px 25px;
    overflow: hidden;
}

.autofill-flow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.autofill-phase {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
}

.autofill-phase.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 5;
}

.phase-chat {
    background: #070709;
}

.chat-mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.chat-mock-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #167df0;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.7rem;
}

.chat-mock-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.chat-mock-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.chat-mock-online {
    font-size: 0.54rem;
    color: #10b981;
    margin-top: -1px;
}

.chat-mock-bubble {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px 12px 12px 2px;
    padding: 10px 14px;
    font-size: 0.72rem;
    line-height: 1.45;
    max-width: 85%;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
}

.chat-mock-link {
    margin-top: 10px;
    background: linear-gradient(135deg, #167df0 0%, #00b8ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(22, 125, 240, 0.35);
    width: fit-content;
}

.link-btn-text {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
}

.link-btn-sub {
    font-size: 0.56rem;
    color: #64748b;
}

.click-led-pointer {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #00b8ff;
    box-shadow: 0 0 10px #00b8ff;
    z-index: 100;
    pointer-events: none;
}

.click-led-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: scale(1);
    opacity: 0;
}

.phase-chat.active .click-led-pointer {
    animation: moveAndTapLed 2.0s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.phase-chat.active .click-led-ripple {
    animation: pointerLedRipple 2.0s forwards linear;
}

@keyframes moveAndTapLed {
    0% { top: 85%; left: 80%; opacity: 0; transform: scale(1.4); }
    15% { top: 80%; left: 75%; opacity: 1; transform: scale(1.2); }
    65% { top: 48%; left: 21%; opacity: 1; transform: scale(1.2); }
    75% { top: 48%; left: 21%; opacity: 1; transform: scale(0.9); }
    82% { top: 48%; left: 21%; opacity: 1; transform: scale(1.1); }
    92% { top: 48%; left: 21%; opacity: 0.8; transform: scale(1.1); }
    100% { top: 48%; left: 21%; opacity: 0; transform: scale(1.0); }
}

@keyframes pointerLedRipple {
    0%, 73% { transform: scale(0.8); opacity: 0; }
    75% { transform: scale(1); opacity: 1; }
    85% { transform: scale(2.4); opacity: 0; }
    100% { transform: scale(2.4); opacity: 0; }
}

.phase-splash {
    background-color: #070709;
    align-items: center;
    justify-content: center;
}

.splash-mock-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.splash-mock-logo {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #167df0 0%, #00b8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoPulseGlow 1.4s infinite ease-in-out;
}

.splash-mock-loader {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 0, 0, 0.02);
    border-top: 2.2px solid #00b8ff;
    border-radius: 50%;
    animation: spinBentoLoader 0.75s infinite linear;
}

.splash-mock-txt {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.45);
}

.phase-banking {
    background: #060608;
    justify-content: space-between;
    padding: 6px;
}

.bank-mock-header {
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    padding-bottom: 6px;
}

.bank-mock-title {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.bank-mock-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 6px 0 10px 0;
}

.bank-mock-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.bank-mock-group label {
    font-size: 0.54rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.bank-mock-input {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.9);
    min-height: 22px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
}

/* ==========================================================================
   HERO 1: Browser Autofill Sizing (Hero sized width)
   ========================================================================== */
.browser-mockup-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.browser-mockup {
    width: 90%;
    max-width: 780px;
    height: 380px;
    background: #070709;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 14px;
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.6),
        inset 0 0 15px rgba(255, 255, 255, 0.01);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
}

.browser-header {
    height: 36px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    padding: 0 14px;
    position: relative;
}

.browser-dots {
    display: flex;
    gap: 6px;
    position: absolute;
    left: 14px;
}

.browser-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.browser-dots .dot.red { background-color: #ef4444; }
.browser-dots .dot.yellow { background-color: #f59e0b; }
.browser-dots .dot.green { background-color: #10b981; }

.browser-address {
    margin: 0 auto;
    width: 220px;
    height: 20px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.35);
    gap: 4px;
}

.browser-content {
    flex: 1;
    position: relative;
    padding: 15px 25px;
    overflow: hidden;
}

.autofill-flow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.autofill-phase {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.96) translateY(12px);
    transition: 
        opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
        visibility 0.6s ease;
    display: flex;
    flex-direction: column;
}

.autofill-phase.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1) translateY(0);
    z-index: 5;
}

.phase-chat {
    background: #070709;
}

.chat-mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.chat-mock-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #167df0;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.7rem;
}

.chat-mock-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.chat-mock-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.chat-mock-online {
    font-size: 0.54rem;
    color: #10b981;
    margin-top: -1px;
}

.chat-mock-bubble {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px 12px 12px 2px;
    padding: 10px 14px;
    font-size: 0.72rem;
    line-height: 1.45;
    max-width: 85%;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
}

.chat-mock-link {
    margin-top: 10px;
    background: linear-gradient(135deg, #167df0 0%, #00b8ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(22, 125, 240, 0.35);
    width: fit-content;
}

.link-btn-text {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
}

.link-btn-sub {
    font-size: 0.56rem;
    color: #64748b;
}

.click-led-pointer {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #00b8ff;
    box-shadow: 0 0 10px #00b8ff;
    z-index: 100;
    pointer-events: none;
}

.click-led-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: scale(1);
    opacity: 0;
}

.phase-chat.active .click-led-pointer {
    animation: moveAndTapLed 2.3s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.phase-chat.active .click-led-ripple {
    animation: pointerLedRipple 2.3s forwards linear;
}

@keyframes moveAndTapLed {
    0% { top: 85%; left: 80%; opacity: 0; transform: scale(1.4); }
    15% { top: 80%; left: 75%; opacity: 1; transform: scale(1.2); }
    65% { top: 48%; left: 21%; opacity: 1; transform: scale(1.2); }
    72% { top: 48%; left: 21%; opacity: 1; transform: scale(0.9); }
    78% { top: 48%; left: 21%; opacity: 1; transform: scale(1.1); }
    90% { top: 48%; left: 21%; opacity: 0.8; transform: scale(1.1); }
    100% { top: 48%; left: 21%; opacity: 0; transform: scale(1.0); }
}

@keyframes pointerLedRipple {
    0%, 70% { transform: scale(0.8); opacity: 0; }
    72% { transform: scale(1); opacity: 1; }
    82% { transform: scale(2.4); opacity: 0; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* Stunning Screen Ripple Wipe Transition Overlay */
.click-ripple-overlay {
    position: absolute;
    top: 72%;
    left: 35%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 184, 255, 0.5);
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    z-index: 99;
}

.phase-chat.active .click-ripple-overlay {
    animation: clickRippleExpand 2.3s forwards cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes clickRippleExpand {
    0%, 70% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    72% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    88% { transform: translate(-50%, -50%) scale(60); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(60); opacity: 0; }
}

.phase-splash {
    background-color: #070709;
    align-items: center;
    justify-content: center;
}

.splash-mock-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.splash-mock-logo {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #167df0 0%, #00b8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoPulseGlow 1.4s infinite ease-in-out;
}

.splash-mock-loader {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 0, 0, 0.02);
    border-top: 2.2px solid #00b8ff;
    border-radius: 50%;
    animation: spinBentoLoader 0.75s infinite linear;
}

.splash-mock-txt {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.45);
}

.phase-banking {
    background: #060608;
    justify-content: space-between;
    padding: 10px;
}

.bank-mock-header {
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bank-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    color: #10b981;
    font-size: 0.52rem;
    font-weight: 700;
    margin-bottom: 4px;
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 4px rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 8px rgba(16, 185, 129, 0.35); border-color: rgba(16, 185, 129, 0.5); }
}

.secure-badge-svg {
    width: 9px;
    height: 9px;
}

.bank-mock-title {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.bank-mock-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0 12px 0;
}

.bank-mock-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    will-change: transform, opacity;
}

/* Staggered spring entrance inside banking form */
.phase-banking.active .bank-mock-group:nth-child(1) {
    animation: groupElasticEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.1s;
}
.phase-banking.active .bank-mock-group:nth-child(2) {
    animation: groupElasticEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
}
.phase-banking.active .bank-mock-group:nth-child(3) {
    animation: groupElasticEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.5s;
}
.phase-banking.active .bank-mock-group:nth-child(4) {
    animation: groupElasticEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.7s;
}

@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fillBorder {
    from {
        border-color: rgba(255, 255, 255, 0.05);
        background: rgba(255, 255, 255, 0.025);
    }
    to {
        border-color: rgba(0, 184, 255, 0.4);
        background: rgba(0, 184, 255, 0.05);
        box-shadow: 0 0 10px rgba(0, 184, 255, 0.1);
    }
}

@keyframes slideUpSuccessPop {
    0% { opacity: 0; transform: translateY(12px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes btnEntranceAndPulse {
    0% { opacity: 0; transform: scale(0.95); }
    15% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 rgba(22, 125, 240, 0); }
    50% { opacity: 1; transform: scale(1.02); box-shadow: 0 0 15px rgba(22, 125, 240, 0.4); }
    85% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 rgba(22, 125, 240, 0); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes spinBentoLoader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoPulseGlow {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(0, 184, 255, 0.4)); opacity: 0.9; }
    50% { filter: drop-shadow(0 0 12px rgba(0, 184, 255, 0.8)); opacity: 1; }
}

@keyframes groupElasticEntrance {
    0% { opacity: 0; transform: translateY(12px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.bank-mock-group label {
    font-size: 0.54rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.bank-mock-input {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.9);
    min-height: 22px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.phase-banking .bank-mock-input span {
    opacity: 0;
}

.phase-banking.active .bank-mock-input.f-receiver span {
    animation: revealText 0.4s forwards;
    animation-delay: 0.3s;
}
.phase-banking.active .bank-mock-input.f-receiver {
    animation: fillBorder 0.4s forwards;
    animation-delay: 0.3s;
}

.phase-banking.active .bank-mock-input.f-iban span {
    animation: revealText 0.4s forwards;
    animation-delay: 0.7s;
}
.phase-banking.active .bank-mock-input.f-iban {
    animation: fillBorder 0.4s forwards;
    animation-delay: 0.7s;
}

.phase-banking.active .bank-mock-input.f-sum span {
    animation: revealText 0.4s forwards;
    animation-delay: 1.1s;
}
.phase-banking.active .bank-mock-input.f-sum {
    animation: fillBorder 0.4s forwards;
    animation-delay: 1.1s;
}

.phase-banking.active .bank-mock-input.f-purpose span {
    animation: revealText 0.4s forwards;
    animation-delay: 1.5s;
}
.phase-banking.active .bank-mock-input.f-purpose {
    animation: fillBorder 0.4s forwards;
    animation-delay: 1.5s;
}

.bank-success-pop {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    gap: 8px;
    align-items: center;
    opacity: 0;
    transform: translateY(6px);
}

.pop-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    font-weight: 800;
}

.pop-info {
    text-align: left;
}

.pop-info h5 {
    font-size: 0.62rem;
    font-weight: 700;
    color: #10b981;
    margin: 0;
}

.pop-info p {
    font-size: 0.48rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.phase-banking.active .bank-success-pop {
    animation: slideUpSuccessPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 2.0s;
}

.bank-mock-btn {
    background: #167df0;
    color: white;
    border-radius: 6px;
    font-size: 0.64rem;
    font-weight: 700;
    text-align: center;
    padding: 6px;
    opacity: 0;
    cursor: pointer;
}

.phase-banking.active .bank-mock-btn {
    animation: btnEntranceAndPulse 3.5s infinite ease-in-out;
    animation-delay: 1.9s;
}

/* ==========================================================================
   HERO 2: Bank Cards Cascading Deck Fan-out (Vibrant 3D spring tilt)
   ========================================================================== */
.bank-cascade-wrapper {
    height: 300px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1.35); 
    will-change: transform;
    position: relative;
}

.bank-cascade-container {
    position: relative;
    width: 180px;
    height: 110px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transform: rotateX(var(--card-tilt-x, 0deg)) rotateY(var(--card-tilt-y, 0deg));
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.cascade-card {
    position: absolute;
    width: 175px;
    height: 110px;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    will-change: transform;
}

.card-brand {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.88rem;
    font-weight: 800;
    text-align: left;
}

.card-brand-lp {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: left;
}

.card-chip {
    width: 18px;
    height: 14px;
    border-radius: 2.2px;
    background: #d4af37;
    opacity: 0.75;
}

.card-number {
    font-family: monospace;
    font-size: 0.62rem;
    color: #94a3b8;
    text-align: left;
}

.card-mono {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    top: 0px;
    left: 0px;
    z-index: 3;
}

.card-privat {
    background: linear-gradient(135deg, #79bf27 0%, #5d931d 100%);
    color: white;
    top: 0px;
    left: 0px;
    z-index: 4;
}

.card-raiff {
    background: linear-gradient(135deg, #eedc00 0%, #d8c700 100%);
    color: #111;
    top: 0px;
    left: 0px;
    z-index: 5;
}

.card-raiff .card-number {
    color: rgba(0, 0, 0, 0.4);
}

.card-legkopay {
    background: linear-gradient(135deg, #167df0 0%, #00b8ff 100%);
    color: white;
    top: 0px;
    left: 0px;
    z-index: 6;
    box-shadow: 0 15px 35px rgba(22, 125, 240, 0.35);
}

/* Premium Card backglows elements */
.card-ambient-glows {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.glow-spot {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(35px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.mono-glow { background: #a855f7; left: 15%; top: 25%; }
.privat-glow { background: #79bf27; left: 35%; top: 30%; }
.raiff-glow { background: #eedc00; left: 55%; top: 30%; }
.lp-glow { background: #00b8ff; left: 45%; top: 40%; width: 140px; height: 140px; }

/* Staggered auto-intro fan-out when tab active */
.stage-panel.active .card-mono {
    animation: fanOutMono 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards, cardBobMono 5s infinite ease-in-out 1.2s;
}
.stage-panel.active .card-privat {
    animation: fanOutPrivat 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards, cardBobPrivat 6s infinite ease-in-out 1.2s;
}
.stage-panel.active .card-raiff {
    animation: fanOutRaiff 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards, cardBobRaiff 5.5s infinite ease-in-out 1.2s;
}
.stage-panel.active .card-legkopay {
    animation: fanOutLegkopay 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards, cardBobLP 4.5s infinite ease-in-out 1.2s;
}

.stage-panel.active .mono-glow { opacity: 0.12; }
.stage-panel.active .privat-glow { opacity: 0.35; }
.stage-panel.active .raiff-glow { opacity: 0.35; }
.stage-panel.active .lp-glow { opacity: 0.28; filter: blur(50px); }

@keyframes fanOutMono {
    0% { transform: rotate(0deg) translate(0, 0); }
    100% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(-12deg) translateX(-48px) translateY(-10px); }
}
@keyframes fanOutPrivat {
    0% { transform: rotate(0deg) translate(0, 0); }
    100% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(-3deg) translateX(-16px) translateY(-4px); }
}
@keyframes fanOutRaiff {
    0% { transform: rotate(0deg) translate(0, 0); }
    100% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(5deg) translateX(16px) translateY(-1px); }
}
@keyframes fanOutLegkopay {
    0% { transform: rotate(0deg) translate(0, 0) scale(0.9); }
    100% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(0deg) translateX(48px) translateY(8px); }
}

/* Card bobbing physics keyframes */
@keyframes cardBobMono { 0%, 100% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(-12deg) translateX(-48px) translateY(-10px); } 50% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(-12deg) translateX(-48px) translateY(-15px); } }
@keyframes cardBobPrivat { 0%, 100% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(-3deg) translateX(-16px) translateY(-4px); } 50% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(-3deg) translateX(-16px) translateY(-9px); } }
@keyframes cardBobRaiff { 0%, 100% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(5deg) translateX(16px) translateY(-1px); } 50% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(5deg) translateX(16px) translateY(-5px); } }
@keyframes cardBobLP { 0%, 100% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(0deg) translateX(48px) translateY(8px); } 50% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(0deg) translateX(48px) translateY(2px); } }

/* Deeper interactive fan-out layout on mouse hover stage */
.features-central-stage:hover .card-mono {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(-18deg) translateX(-94px) translateY(-20px) !important;
    animation: cardHoverBobMono 4s infinite ease-in-out !important;
}

.features-central-stage:hover .card-privat {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(-8deg) translateX(-42px) translateY(-8px) !important;
    animation: cardHoverBobPrivat 4.5s infinite ease-in-out !important;
}

.features-central-stage:hover .card-raiff {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(4deg) translateX(42px) translateY(-2px) !important;
    animation: cardHoverBobRaiff 5s infinite ease-in-out !important;
}

.features-central-stage:hover .card-legkopay {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.08) translateX(0px) translateY(16px) !important;
    box-shadow: 0 25px 50px rgba(22, 125, 240, 0.55);
    z-index: 10;
    animation: cardHoverBobLP 3.5s infinite ease-in-out !important;
}

/* Hover bobbing keyframes to keep cards breathing */
@keyframes cardHoverBobMono { 0%, 100% { transform: rotateX(0deg) rotateY(0deg) rotateZ(-18deg) translateX(-94px) translateY(-20px); } 50% { transform: rotateX(0deg) rotateY(0deg) rotateZ(-18deg) translateX(-94px) translateY(-25px); } }
@keyframes cardHoverBobPrivat { 0%, 100% { transform: rotateX(0deg) rotateY(0deg) rotateZ(-8deg) translateX(-42px) translateY(-8px); } 50% { transform: rotateX(0deg) rotateY(0deg) rotateZ(-8deg) translateX(-42px) translateY(-12px); } }
@keyframes cardHoverBobRaiff { 0%, 100% { transform: rotateX(0deg) rotateY(0deg) rotateZ(4deg) translateX(42px) translateY(-2px); } 50% { transform: rotateX(0deg) rotateY(0deg) rotateZ(4deg) translateX(42px) translateY(-6px); } }
@keyframes cardHoverBobLP { 0%, 100% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.08) translateX(0px) translateY(16px); } 50% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.08) translateX(0px) translateY(10px); } }

/* Amplified glow spots on mouseover stage */
.features-central-stage:hover .mono-glow { opacity: 0.25; transform: scale(1.2); }
.features-central-stage:hover .privat-glow { opacity: 0.28; transform: scale(1.2); }
.features-central-stage:hover .raiff-glow { opacity: 0.28; transform: scale(1.2); }
.features-central-stage:hover .lp-glow { opacity: 0.55; transform: scale(1.4); }

/* ==========================================================================
   HERO 3: Smartphone Viewfinder QR Laser Scanner
   ========================================================================== */
.qr-scanner-wrapper {
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-scanner-frame {
    position: relative;
    width: 240px;
    height: 360px;
    background: #030305;
    border: 5px solid #1a1a24;
    border-radius: 36px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.7),
        inset 0 0 20px rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.phone-speaker {
    position: absolute;
    top: 10px;
    width: 44px;
    height: 4px;
    background: #2a2a35;
    border-radius: 20px;
    z-index: 15;
}

.phone-camera {
    position: absolute;
    top: 8px;
    left: 36%;
    width: 8px;
    height: 8px;
    background: #111;
    border-radius: 50%;
    border: 1.5px solid #222;
    z-index: 15;
}

.phone-scanner-frame .qr-scanner-mock {
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.qr-sight {
    position: absolute;
    width: 22px; /* Thicker and more visible sights */
    height: 22px;
    border: 3px solid #10b981; /* Premium edge thickness */
    z-index: 10;
    opacity: 0;
    transition: all 0.5s ease;
}

.qr-sight.top-left {
    top: 0px;
    left: 0px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 6px;
}

.qr-sight.top-right {
    top: 0px;
    right: 0px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 6px;
}

.qr-sight.bottom-left {
    bottom: 0px;
    left: 0px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 6px;
}

.qr-sight.bottom-right {
    bottom: 0px;
    right: 0px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 6px;
}

/* Viewfinder lens autofocus spring animation when active */
.stage-panel.active .qr-sight {
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-fill-mode: forwards;
}
.stage-panel.active .qr-sight.top-left { animation-name: lensFocusTL; }
.stage-panel.active .qr-sight.top-right { animation-name: lensFocusTR; }
.stage-panel.active .qr-sight.bottom-left { animation-name: lensFocusBL; }
.stage-panel.active .qr-sight.bottom-right { animation-name: lensFocusBR; }

@keyframes lensFocusTL { 0% { top: -20px; left: -20px; opacity: 0; } 100% { top: 0px; left: 0px; opacity: 1; border-color: #10b981; } }
@keyframes lensFocusTR { 0% { top: -20px; right: -20px; opacity: 0; } 100% { top: 0px; right: 0px; opacity: 1; border-color: #10b981; } }
@keyframes lensFocusBL { 0% { bottom: -20px; left: -20px; opacity: 0; } 100% { bottom: 0px; left: 0px; opacity: 1; border-color: #10b981; } }
@keyframes lensFocusBR { 0% { bottom: -20px; right: -20px; opacity: 0; } 100% { bottom: 0px; right: 0px; opacity: 1; border-color: #10b981; } }

/* Lens continuous breathing pulse */
.stage-panel.active .qr-scanner-mock .qr-sight {
    animation-name: sightPulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-delay: 0.8s;
}

@keyframes sightPulse {
    0% { transform: scale(1); border-color: #10b981; }
    100% { transform: scale(0.96); border-color: #00b8ff; }
}

.qr-vector-code {
    width: 140px;
    height: 140px;
    color: #0f172a;
    opacity: 0.85;
    z-index: 5;
    transform: scale(0.8);
    opacity: 0;
}

.stage-panel.active .qr-vector-code {
    animation: qrEntrance 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes qrEntrance {
    0% { transform: scale(0.8); opacity: 0; filter: brightness(0.2); }
    100% { transform: scale(1); opacity: 0.85; filter: brightness(1); }
}

/* Scanned visual flash glow overlay */
.qr-vector-code.scanned {
    animation: qrFlashPulse 0.4s ease-out forwards;
}

@keyframes qrFlashPulse {
    0% { filter: brightness(1) drop-shadow(0 0 0px #10b981); transform: scale(1); }
    50% { filter: brightness(2) drop-shadow(0 0 25px #10b981); transform: scale(1.05); }
    100% { filter: brightness(1.2) drop-shadow(0 0 10px #10b981); transform: scale(1); color: #10b981; }
}

.qr-svg-vector {
    width: 100%;
    height: 100%;
}

/* High-tech thick scanning laser sweep (Constrained inside the 190px viewfinder!) */
.qr-laser-scanner {
    position: absolute;
    left: 4px;
    right: 4px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #10b981 20%, #ffffff 50%, #10b981 80%, transparent);
    z-index: 8;
    animation: sweepBentoLaser 2.0s infinite ease-in-out;
    box-shadow: 
        0 0 15px #10b981, 
        0 0 6px #10b981, 
        0 2px 4px rgba(16, 185, 129, 0.4);
}

@keyframes sweepBentoLaser {
    0%, 100% { top: 4px; }
    50% { top: 182px; }
}

.qr-grid-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(16, 185, 129, 0.08) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 3;
    opacity: 0.45;
}

/* Premium bottom sheet alert inside phone camera frame */
.qr-floating-alert {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(10, 25, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 16px;
    padding: 10px 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    z-index: 100;
}

.qr-floating-alert.active {
    transform: translateY(0);
    opacity: 1;
}

.qr-alert-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: linear-gradient(135deg, #167df0 0%, #00b8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.58rem;
    font-weight: 900;
    color: #0f172a;
}

.qr-alert-info h6 {
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.qr-alert-info p {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ==========================================================================
   HERO 4: Velocity Comparative dashboard (Hero sized width & Dial & Terminals)
   ========================================================================== */
.speed-dashboard-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.speed-dashboard {
    width: 90%;
    max-width: 780px;
    background: #070709;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    height: 36px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    font-family: monospace;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
}

.pulsing-green-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: dotPulseSpeed 1.5s infinite ease-in-out;
}

@keyframes dotPulseSpeed {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.dashboard-body {
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Speedometer needle gauge */
.velocity-gauge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
    position: relative;
}

.velocity-gauge {
    position: relative;
    width: 150px;
    height: 80px;
}

.gauge-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.gauge-track {
    stroke: rgba(0, 0, 0, 0.02);
}

.gauge-fill {
    stroke: url(#gauge-grad);
    stroke-dasharray: 251.2; 
    stroke-dashoffset: 125.6; 
    transition: stroke-dashoffset 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gauge-needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 42px;
    background: #ffffff;
    border-radius: 4px;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-70deg); 
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 10px #00b8ff;
    z-index: 10;
}

.gauge-center-point {
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border: 2px solid #00b8ff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 12;
    box-shadow: 0 0 8px #00b8ff;
}

.gauge-val-glow {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    color: #0f172a;
    text-shadow: 0 0 15px rgba(0, 184, 255, 0.6);
}

.gauge-lbl-glow {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    font-size: 0.54rem;
    font-weight: 600;
    color: rgba(0, 184, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.row-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.row-label {
    font-size: 0.68rem;
    color: #475569;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.row-time {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
}

.row-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    overflow: hidden;
}

.row-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.row-bar-fill.fill-old {
    background: #ef4444;
    animation: fillBentoOld 7.2s linear infinite;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.25);
}

.row-bar-fill.fill-new {
    background: linear-gradient(90deg, #167df0, #00b8ff);
    animation: fillBentoNew 7.2s cubic-bezier(0.075, 0.82, 0.165, 1) infinite;
    box-shadow: 0 0 8px rgba(22, 125, 240, 0.3);
}

/* Beautiful moving diagonal chevron pattern */
.bar-chevron-pattern {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        45deg, 
        rgba(255, 255, 255, 0.15) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0.15) 75%, 
        transparent 75%, 
        transparent
    );
    background-size: 16px 16px;
    animation: chevronMove 0.8s linear infinite;
}

@keyframes chevronMove {
    0% { background-position: 0 0; }
    100% { background-position: 16px 0; }
}

@keyframes fillBentoOld {
    0% { width: 0%; }
    100% { width: 12%; }
}

@keyframes fillBentoNew {
    0% { width: 0%; }
    14%, 100% { width: 100%; }
}

/* Dual Telemetry Terminals */
.telemetry-terminals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 6px;
}

.terminal-box {
    background: #020204;
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    height: 105px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.terminal-bar {
    height: 22px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-family: monospace;
    font-size: 0.54rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.terminal-content {
    flex: 1;
    padding: 6px 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2.2px;
    font-family: monospace;
    font-size: 0.58rem;
    text-align: left;
    scrollbar-width: none;
}

.terminal-content::-webkit-scrollbar {
    display: none;
}

.log-line {
    line-height: 1.3;
    opacity: 0;
    transform: translateX(-4px);
    animation: logLineEntrance 0.3s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes logLineEntrance {
    100% { opacity: 1; transform: translateX(0); }
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    padding-top: 14px;
}

.dash-stat {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.dash-stat-val {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.dash-stat-lbl {
    font-size: 0.52rem;
    color: #475569;
    margin-top: 2px;
}

/* ==========================================================================
   NEW PANEL 4: SPEED (Fast Flying Icon)
   ========================================================================== */
.speed-animation-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.speed-track {
    position: relative;
    width: 80%;
    height: 100px;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.target-wallet {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.wallet-icon {
    font-size: 2rem;
}

.flying-money-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.ico-img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 15px rgba(0, 184, 255, 0.8));
    z-index: 5;
}

.speed-lines {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-right: 15px;
}

.speed-lines .line {
    height: 3px;
    background: linear-gradient(90deg, transparent, #00b8ff);
    border-radius: 3px;
    animation: speedLineShoot 0.4s linear infinite;
}

.speed-lines .l1 { width: 40px; animation-delay: 0s; }
.speed-lines .l2 { width: 60px; animation-delay: 0.1s; }
.speed-lines .l3 { width: 30px; animation-delay: 0.2s; }

@keyframes speedLineShoot {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-50px); opacity: 0; }
}

.money-trail {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
    opacity: 0.6;
    z-index: 1;
}

.money-trail span {
    color: #10b981;
    font-weight: 800;
    font-size: 1.2rem;
    animation: trailFade 0.6s linear infinite;
    text-shadow: 0 0 5px #10b981;
}

.money-trail span:nth-child(1) { animation-delay: 0s; }
.money-trail span:nth-child(2) { animation-delay: 0.1s; }
.money-trail span:nth-child(3) { animation-delay: 0.2s; }
.money-trail span:nth-child(4) { animation-delay: 0.3s; }

@keyframes trailFade {
    0% { transform: translateX(0) scale(1); opacity: 1; }
    100% { transform: translateX(-30px) scale(0.5); opacity: 0; }
}

@keyframes flyMoneyFast {
    0% { left: 0%; transform: translateY(-50%) scale(0.8) rotate(0deg); opacity: 0; }
    15% { left: 5%; transform: translateY(-50%) scale(1.05) rotate(-5deg); opacity: 1; }
    55% { left: 85%; transform: translateY(-50%) scale(1.05) rotate(5deg); opacity: 1; }
    65% { left: 95%; transform: translateY(-50%) scale(0.7) rotate(0deg); opacity: 0; }
    100% { left: 95%; transform: translateY(-50%) scale(0) rotate(0deg); opacity: 0; }
}

.speed-caption {
    margin-top: 30px;
    text-align: center;
}

.speed-caption h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.speed-caption p {
    color: #475569;
    font-size: 1rem;
}

/* ==========================================================================
   NEW PANEL 5: ADMIN
   ========================================================================== */
.admin-visual-glow::after { background: radial-gradient(circle, #a855f7 0%, transparent 70%); opacity: 0.4; }

.admin-mockup-window {
    width: 95%;
    max-width: 820px;
    height: 410px; /* Slightly taller for perfect proportions */
    background: #060813;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.admin-header-bar {
    height: 34px;
    background: rgba(255, 255, 255, 0.015);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    padding: 0 14px;
    position: relative;
}

.admin-window-title {
    margin: 0 auto;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.admin-dots {
    display: flex;
    gap: 6px;
    position: absolute;
    left: 14px;
}

.admin-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}
.admin-dots .dot.red { background-color: #ef4444; }
.admin-dots .dot.yellow { background-color: #f59e0b; }
.admin-dots .dot.green { background-color: #10b981; }

.admin-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Sidebar Styling matching dashboard but Dark */
.admin-sidebar {
    width: 170px;
    background: rgba(10, 12, 26, 0.95);
    border-right: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    padding: 16px 12px;
    justify-content: space-between;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding-left: 8px;
}

.logo-bolt {
    color: #a855f7;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px #a855f7);
}

.logo-txt {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.05em;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-icon {
    font-size: 0.85rem;
}

.menu-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #94a3b8;
}

.menu-item:hover .menu-label {
    color: #0f172a;
}

.menu-item.active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(22, 125, 240, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.25);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.06);
}

.menu-item.active .menu-label {
    color: #0f172a;
    font-weight: 600;
}

.sidebar-support {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.support-icon {
    font-size: 0.85rem;
}

.support-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: #475569;
    font-weight: 500;
}

/* Dashboard Area Styling */
.admin-content {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
}

.admin-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.admin-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.admin-profile-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 4px 10px 4px 4px;
}

.profile-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7c4aed;
    color: #0f172a;
    font-size: 0.58rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

/* Purple/Blue Glowing Greeting Banner with Credit Card Mock */
.admin-greeting-banner {
    background: linear-gradient(135deg, #5b21b6 0%, #1d4ed8 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
}

.admin-greeting-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.banner-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.banner-greet-small {
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.banner-greet-large {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.banner-greet-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    color: #475569;
    margin-bottom: 14px;
}

.banner-buttons {
    display: flex;
    gap: 10px;
}

.banner-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.banner-btn.primary {
    background: #ffffff;
    color: #7c4aed;
}

.banner-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #0f172a;
    background: rgba(255, 255, 255, 0.05);
}

.banner-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Semi-Real Glowing Credit Card inside Banner */
.banner-mini-card {
    width: 170px;
    height: 110px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.mini-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-card-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    color: #0f172a;
}

.mini-card-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 6px #10b981;
}

.mini-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mini-card-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
}

.mini-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.52rem;
    color: #64748b;
    background: rgba(255, 255, 255, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
}

.mini-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-card-num {
    font-family: monospace;
    font-size: 0.54rem;
    color: #475569;
}

.mini-card-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.52rem;
    font-weight: 700;
    background: #ffffff;
    color: #1e4ed8;
    padding: 2px 8px;
    border-radius: 50px;
}

/* Recent Payments Section Row */
.admin-recent-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.64rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
}

.recent-all-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.64rem;
    color: #a855f7;
    cursor: pointer;
}

.recent-list {
    display: flex;
    flex-direction: column;
}

.recent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 8px 12px;
}

.item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-icon-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.item-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #0f172a;
}

.item-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.54rem;
    color: rgba(255, 255, 255, 0.35);
}

.item-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    color: #0f172a;
}

.item-badge.active {
    font-family: 'Inter', sans-serif;
    font-size: 0.54rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.08);
}

/* ==========================================================================
   Aesthetic Adaptive Breakpoints: Flawless mobile scrollable scaling!
   ========================================================================== */
@media (max-width: 991.98px) {
    .features-section {
        height: auto !important;
        padding: 5rem 0;
    }

    .features-sticky-container {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        overflow: visible !important;
        display: block !important;
        padding: 3rem 1.25rem !important; /* Adjusted padding on mobile */
    }

    .features-showcase-group {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        pointer-events: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .features-header {
        margin-bottom: 2rem !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .features-floating-decorations {
        display: none !important; /* Disabled decorations on mobile for cleaner height */
    }

    .features-central-stage {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        min-height: 420px;
        height: auto;
        border-radius: 1.25rem;
        padding: 0.5rem 0;
        overflow: hidden;
    }

    .stage-content-panels {
        position: relative !important;
        height: auto !important;
        min-height: 400px;
    }

    .stage-panel {
        padding: 0.5rem;
        transform: scale(0.95);
        transform-origin: center center;
    }

    .stage-panel.active {
        position: relative !important;
        transform: scale(1) !important;
    }

    /* Centered, Larger, Premium Carousel Tabs with scale-focus & right opacity fade */
    .features-tabs-wrapper {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        margin-top: 2rem;
        display: flex !important;
        justify-content: flex-start !important; /* Left aligned for scrolling */
        overflow-x: auto !important; /* Horizontal scrolling */
        overflow-y: hidden !important;
        padding: 10px 1.5rem !important; /* Extra top/bottom padding for scale overflow! */
        padding-right: 5rem !important; /* Spacious right fade offset */
        width: 100% !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important; /* Momentum physics */
        scrollbar-width: none !important;
        -webkit-mask-image: linear-gradient(to right, #000 82%, transparent 100%);
        mask-image: linear-gradient(to right, #000 82%, transparent 100%);
        scroll-padding: 0 40px;
    }
    
    .features-tabs-wrapper::-webkit-scrollbar {
        display: none !important;
    }

    .features-tabs-pill {
        display: inline-flex !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        gap: 12px !important;
        padding: 6px !important;
        margin: 0 !important; /* Clear center auto to allow precise JS center scrolling */
        background: transparent !important; /* No solid ugly cropped background! */
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .tab-pill-btn {
        background: rgba(0, 0, 0, 0.03) !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        color: #64748b !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        padding: 9px 20px !important; /* Larger comfortable touch targets */
        font-size: 0.82rem !important; /* Highly legible bold font */
        font-weight: 600 !important;
        white-space: nowrap !important;
        border-radius: 50px !important;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
        transform-origin: center center !important;
        transform: scale(1);
    }

    .tab-pill-btn.active {
    background: #0f172a;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .features-descriptions-wrapper {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        margin-top: 1.25rem;
        min-height: 72px;
        padding: 0 1rem;
        display: flex !important;
        justify-content: center !important;
    }

    .feature-desc-line {
        font-size: 0.92rem !important;
        text-align: center !important;
    }
}

@media (max-width: 575.98px) {
    .features-section {
        overflow: hidden !important;
    }

    .features-central-stage {
        min-height: 280px !important;
        height: 290px !important;
        overflow: hidden !important;
    }

    .stage-content-panels {
        min-height: 270px !important;
        height: 270px !important;
    }

    /* Magical Scale: centers a wide 640px layout canvas inside mobile screen perfectly and shrinks visually to fit W-32px */
    .bento-visual-wrapper {
        transform: scale(min(0.9, calc((100vw - 32px) / 640))) !important;
        transform-origin: center center !important;
        width: 640px !important;
        flex-shrink: 0 !important;
    }

    .browser-mockup {
        width: 600px !important;
        height: 420px !important; /* Desktop-roomy height for complete scroll display */
    }

    .admin-mockup-window {
        width: 600px !important;
        height: 410px !important;
    }

    .phone-scanner-frame {
        width: 250px !important;
        height: 380px !important;
    }

    .qr-scanner-mock {
        width: 200px !important;
        height: 200px !important;
    }

    .qr-vector-code {
        width: 120px !important;
        height: 120px !important;
    }

    .bank-cascade-wrapper {
        height: 220px !important;
    }

    .bank-cascade-container {
        width: 160px !important;
        height: 100px !important;
    }

    .cascade-card {
        width: 160px !important;
        height: 100px !important;
    }

    .card-mono { transform: rotate(-6deg) translateX(-10px); }
    .card-privat { transform: rotate(4deg) translateX(5px); }
    .card-raiff { transform: rotate(-3deg) translateX(-2px); }
    .card-legkopay { top: 12px; }

    .features-central-stage:hover .card-mono { transform: rotate(-14deg) translateX(-50px) translateY(-10px); }
    .features-central-stage:hover .card-privat { transform: rotate(-5deg) translateX(-22px) translateY(-4px); }
    .features-central-stage:hover .card-raiff { transform: rotate(6deg) translateX(24px) translateY(-2px); }
    .features-central-stage:hover .card-legkopay { transform: rotate(0deg) scale(1.02) translateY(8px); }

    .features-descriptions-wrapper {
        min-height: 84px !important;
        margin-top: 1rem !important;
    }

    .feature-desc-line {
        font-size: 0.86rem !important;
        line-height: 1.5 !important;
    }

    .admin-demo-cta {
        margin-top: 1.25rem !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* ==========================================================================
   Admin CTA Button Styles
   ========================================================================== */
.btn-admin-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 36px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid transparent;
}

.btn-admin-cta:hover {
    background: #0ea5e9;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.3);
    transform: translateY(-4px) scale(1.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-admin-cta i {
    transition: transform 0.3s ease;
}

.btn-admin-cta:hover i {
    transform: translateX(4px);
}