/* ===================================================================
   MOBILE APP DEVELOPMENT PAGE - 2026 DESIGN
   =================================================================== */

:root {
    --app-purple: #8B5CF6;
    --app-violet: #6366F1;
    --app-cyan: #06B6D4;
    --app-pink: #EC4899;
    --app-gradient: linear-gradient(135deg, var(--app-purple) 0%, var(--app-violet) 100%);
    --app-gradient-hover: linear-gradient(135deg, var(--app-violet) 0%, var(--app-purple) 100%);
    --background-color: #020617 !important;
    /* Force override global background to match hero */
}

body {
    background-color: #020617 !important;
    /* Ensure body matches hero section exactly */
}

/* ===================================================================
   1. HERO SECTION WITH ANIMATED GRADIENT
   =================================================================== */

.app-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #020617;
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(236, 72, 153, 0.3), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 20s ease-in-out infinite;
}

@keyframes particlesFloat {

    0%,
    100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 10%;
    }

    50% {
        background-position: 100% 100%, 0% 0%, 60% 40%, 20% 90%;
    }
}

@keyframes particlesTwinkle {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: var(--app-purple);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--app-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-app-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--app-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-app-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
    color: #fff;
}

.btn-app-primary i {
    transition: transform 0.3s;
}

.btn-app-primary:hover i {
    transform: translateX(5px);
}

.btn-app-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-app-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--app-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Phone Mockup */
.hero-phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Mockup Enhancements */
.hero-phone-mockup {
    perspective: 1000px;
    z-index: 10;
}

.phone-frame {
    width: 290px;
    height: 600px;
    background: #000;
    border-radius: 45px;
    padding: 10px;
    position: relative;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 0 2px #334155;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
}

.phone-frame.full-app {
    width: 380px;
    height: 780px;
    transform: translateY(-50px);
    z-index: 100;
}

.phone-dynamic-island {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #000;
    border-radius: 20px;
    z-index: 30;
    transition: width 0.3s;
}

.phone-frame:hover .phone-dynamic-island {
    width: 90px;
}

/* Advanced Glassmorphism & Scaling System */
:root {
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(25px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

    --app-font-scale: 0.8;
}

.phone-frame.full-app {
    --app-font-scale: 1;
    width: 380px;
    height: 780px;
}

.phone-frame {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ios-status-bar {
    position: absolute;
    top: 10px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 35;
    transition: all 0.4s;
    font-size: calc(14px * var(--app-font-scale));
}

.status-left .operator {
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.2px;
}

.scan-btn {
    width: calc(30px * var(--app-font-scale));
    height: calc(30px * var(--app-font-scale));
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(14px * var(--app-font-scale));
    color: #fff;
}

/* Glass Screen Content with Scrolling */
.screen-content {
    background: #000;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    scrollbar-width: none;
    /* Hide for Firefox */
    -ms-overflow-style: none;
    /* Hide for IE/Edge */
}

.screen-content::-webkit-scrollbar {
    display: none;
    /* Hide for Chrome/Safari */
}

.glass-bg-mesh {
    position: fixed;
    /* Keep it behind scrolling content */
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 70% 80%, rgba(30, 64, 175, 0.25), transparent 40%);
    z-index: 0;
    pointer-events: none;
}

/* Premium Dashboard - Pure Glass */
.dashboard-screen.premium {
    padding: calc(50px * var(--app-font-scale)) calc(20px * var(--app-font-scale)) 100px;
    display: flex;
    flex-direction: column;
    gap: calc(15px * var(--app-font-scale));
}

.dash-top-bar,
.premium-balance-card,
.nav-pill,
.p-action-item,
.p-trans-item,
.transaction-section {
    position: relative;
    z-index: 1;
}

.premium-balance-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    padding: calc(20px * var(--app-font-scale));
    color: #fff;
    transition: transform 0.3s;
}

.premium-balance-card:active {
    transform: scale(0.98);
}

.balance-label {
    color: rgba(255, 255, 255, 0.85);
    /* High contrast */
    font-size: calc(12px * var(--app-font-scale));
    margin-bottom: 5px;
}

.balance-amount {
    font-size: calc(30px * var(--app-font-scale));
    font-weight: 800;
    color: #fff;
}

.nav-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: calc(8px * var(--app-font-scale)) calc(18px * var(--app-font-scale));
    border-radius: 12px;
    font-size: calc(13px * var(--app-font-scale));
    color: #fff;
    /* High contrast */
    font-weight: 600;
    transition: 0.3s;
}

.nav-pill.active {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.p-icon {
    width: calc(55px * var(--app-font-scale));
    height: calc(55px * var(--app-font-scale));
    border-radius: calc(18px * var(--app-font-scale));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: calc(22px * var(--app-font-scale));
}

.p-action-item span {
    color: #fff;
    font-weight: 700;
    font-size: calc(11px * var(--app-font-scale));
}

.p-trans-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px;
}

.p-trans-item:active {
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.06);
}

.p-trans-info span {
    color: #fff;
    font-weight: 700;
}

.p-trans-info small {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.p-trans-brand-icon {
    width: calc(40px * var(--app-font-scale));
    height: calc(40px * var(--app-font-scale));
    font-size: calc(18px * var(--app-font-scale));
}

/* Animations for "Functional" feel */
.mock-btn,
.action-btn,
.tab-item,
.p-action-item,
.icon-circle {
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mock-btn:active,
.action-btn:active,
.tab-item:active,
.p-action-item:active,
.icon-circle:active {
    transform: scale(0.9) !important;
    opacity: 0.7;
}

/* Fixed Scaling for operator text */
.status-left .operator {
    font-size: calc(14px * var(--app-font-scale));
    opacity: 0.9;
}

.phone-screen {
    box-shadow:
        inset 0 0 15px rgba(255, 255, 255, 0.05),
        inset 0 0 40px rgba(0, 0, 0, 0.8);
    background: #000;
}

.ios-status-bar {
    position: absolute;
    top: 15px;
    width: 100%;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    z-index: 25;
}

.status-pill {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    font-size: 11px;
}

.scan-icon {
    font-size: 16px;
    opacity: 0.8;
}

/* Premium Dashboard Styles */
.dashboard-screen.premium {
    background: #000;
    padding: 60px 20px 80px;
}

.dash-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-img {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--app-purple), var(--app-violet));
    border-radius: 14px;
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.3);
}

.user-text {
    display: flex;
    flex-direction: column;
}

.user-text small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.user-text span {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.top-actions {
    display: flex;
    gap: 12px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.icon-circle:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.1);
}

/* Premium Balance Card */


.balance-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.balance-amount {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.balance-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.trend.up {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
}

.balance-stats .period {
    color: rgba(255, 255, 255, 0.5);
}

.card-dots {
    position: absolute;
    bottom: 20px;
    right: 25px;
    display: flex;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.dot.active {
    background: #fff;
    width: 14px;
    border-radius: 10px;
}

/* Quick Nav Pills */
.quick-nav-pills {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.quick-nav-pills::-webkit-scrollbar {
    display: none;
}

.nav-pill {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}

.nav-pill.active {
    background: #fff;
    color: #000;
}

/* Premium Actions Grid */
.premium-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.p-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.p-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: 0.3s;
}

.p-action-item:active .p-icon {
    transform: scale(0.9);
}

.p-action-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
}

/* Transaction Section */
.transaction-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.transaction-section h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.transaction-section a {
    color: var(--app-purple);
    font-size: 13px;
    text-decoration: none;
}

.p-trans-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.p-trans-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
    border-radius: 20px;
    transition: 0.3s;
}

.p-trans-item:active {
    background: rgba(255, 255, 255, 0.06);
    transform: scale(0.98);
}

.p-trans-brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.p-trans-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.p-trans-info span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.p-trans-info small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

.p-trans-val {
    font-weight: 700;
    font-size: 14px;
}

.p-trans-val.negative {
    color: #fff;
}

.p-trans-val.positive {
    color: #10b981;
}

.status-right {
    display: flex;
    gap: 5px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.ios-tab-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 10px 15px;
    z-index: 25;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    transition: all 0.3s;
}

.tab-item.active {
    color: var(--app-purple);
}

.tab-item i {
    font-size: 18px;
}

/* Expanding Hint */
.expand-hint {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--app-purple);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.7;
    white-space: nowrap;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Screen Content Styles */
.screen-content {
    padding-top: 50px;
    padding-bottom: 70px;
}

.wallet-screen,
.stats-screen,
.settings-screen {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 60px 20px;
}

.screen-title-bar {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

/* Wallet Styles */
.cards-stack {
    display: flex;
    flex-direction: column;
    gap: -20px;
}

.virtual-card {
    height: 160px;
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.virtual-card.visa {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.virtual-card.master {
    background: linear-gradient(135deg, #475569, #1e293b);
    transform: translateY(-20px);
}

.virtual-card:hover {
    transform: translateY(-30px) scale(1.02);
}

.add-card-btn {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Stats Styles */
.stats-chart {
    height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 30px;
}

.chart-bars {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 8px 8px 4px 4px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bar.active {
    background: linear-gradient(180deg, #8b5cf6 0%, #6366f1 100%);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.spending-categories {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.2s;
}

.cat-item:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.12);
}

.cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.cat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cat-info span {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.cat-info small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.cat-price {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

/* Settings Styles */
.settings-header {
    text-align: center;
    margin-bottom: 30px;
}

.avatar-large {
    width: 80px;
    height: 80px;
    background: var(--app-purple);
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.settings-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    transition: 0.3s;
}

.settings-item i:first-child {
    color: var(--app-purple);
    font-size: 1.2rem;
}

.settings-item i:last-child {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.2);
}

.settings-item.logout {
    color: #ef4444;
}

.settings-item.logout i {
    color: #ef4444;
}

/* Animation Overrides */
.screen-content.splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* ===================================================================
   2. SERVICES GRID
   =================================================================== */

.app-services {
    padding: 100px 0;
    background: #0f172a;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    color: var(--app-purple);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.15) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--app-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.service-card>p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.service-features i {
    color: var(--app-cyan);
    font-size: 1rem;
}

/* ===================================================================
   3. TECH STACK
   =================================================================== */

.tech-stack {
    padding: 100px 0;
    background: #020617;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 0;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.05);
}

.tech-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--app-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    transition: transform 0.3s;
}

.tech-item:hover .tech-logo {
    transform: rotate(360deg);
}

.tech-item h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===================================================================
   4. PROCESS TIMELINE
   =================================================================== */

.process-timeline {
    padding: 100px 0;
    background: #0f172a;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--app-purple), var(--app-cyan));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--app-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(10px);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(-10px);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ===================================================================
   5. FEATURES BENTO GRID
   =================================================================== */

.features-bento {
    padding: 100px 0;
    background: #020617;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    grid-auto-rows: minmax(200px, auto);
    max-width: 900px;
    margin: 0 auto;
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 35px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
}

.bento-wide {
    grid-column: span 1;
}

.bento-card i {
    font-size: 36px;
    background: var(--app-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.bento-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.bento-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* ===================================================================
   6. PRICING SECTION
   =================================================================== */

.pricing-section {
    padding: 100px 0;
    background: #0f172a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px 35px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--app-gradient);
    color: #fff;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price .currency {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--app-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features li i {
    color: var(--app-purple);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--app-gradient);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
    color: #fff;
}

/* ===================================================================
   7. CTA SECTION
   =================================================================== */

.cta-section {
    padding: 100px 0;
    background: #020617;
    position: relative;
    overflow: hidden;
}

.cta-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
    animation: ctaGradientMove 10s ease-in-out infinite;
}

@keyframes ctaGradientMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(50px);
    }
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.cta-feature i {
    color: var(--app-cyan);
    font-size: 1.2rem;
}

.contact-form-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-glass h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--app-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--app-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.btn-submit i {
    transition: transform 0.3s;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* ===================================================================
   8. RESPONSIVE DESIGN
   =================================================================== */

@media (max-width: 991px) {
    .app-hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 120px;
    }

    .timeline-number {
        position: absolute;
        left: 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-wide {
        grid-column: span 1;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-app-primary,
    .btn-app-secondary {
        width: 100%;
        justify-content: center;
    }

    .phone-frame {
        width: 250px;
        height: 500px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .cta-title {
        font-size: 2rem;
    }
}

/* ===================================================================
   9. APP SHOWCASE SECTION
   =================================================================== */

.app-showcase {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.showcase-carousel {
    padding: 20px 0 60px !important;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(139, 92, 246, 0.4);
}

.showcase-image {
    height: 250px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-category {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.btn-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--app-purple);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-card:hover .btn-play {
    transform: scale(1);
}

.showcase-content {
    padding: 25px;
}

.showcase-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.showcase-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.showcase-tags span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--app-purple);
    opacity: 1;
}

/* ===================================================================
   10. PHONE CAROUSEL & SCREEN DETAILS
   =================================================================== */

.phone-carousel {
    width: 100%;
    height: 100%;
}

.phone-screen .swiper-slide {
    width: 100%;
    height: 100%;
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Splash Screen */
.splash-screen {
    background: var(--app-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

.splash-screen::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    animation: bgScroll 20s linear infinite;
}

@keyframes bgScroll {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

.app-logo-mark {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.splash-screen h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Login Screen */
.login-screen {
    background: #0f172a;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    color: #fff;
}

.logo-small {
    font-size: 2rem;
    color: var(--app-cyan);
    margin-bottom: 10px;
}

.screen-header {
    margin-bottom: 40px;
    text-align: center;
}

.screen-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.screen-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.mock-input-group {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
}

.input-icon {
    color: rgba(255, 255, 255, 0.4);
}

.mock-input-line {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    flex: 1;
    width: 100px;
}

.mock-btn.primary {
    background: var(--app-gradient);
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    cursor: pointer;
}

.mock-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Dashboard Screen */
.dashboard-screen {
    background: #f8fafc;
    color: #1e293b;
    padding: 45px 20px 20px;
}

.dashboard-screen h1,
.dashboard-screen h2,
.dashboard-screen h3,
.dashboard-screen h4,
.dashboard-screen h5,
.dashboard-screen h6 {
    color: #1e293b;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #cbd5e1;
    border-radius: 50%;
    border: 2px solid #fff;
}

.greetings {
    display: flex;
    flex-direction: column;
}

.greetings span {
    font-weight: 700;
    font-size: 0.9rem;
}

.greetings small {
    font-size: 0.75rem;
    color: #64748b;
}

.notif-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.balance-card {
    background: var(--app-gradient);
    border-radius: 20px;
    padding: 20px;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.balance-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.balance-card span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.balance-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 5px 0 0;
    color: #fff;
}

.card-chip {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.5;
}

.quick-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.action-btn i {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--app-violet);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.action-btn span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.recent-trans h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.trans-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 12px;
    border-radius: 14px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.trans-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1rem;
}

.trans-icon.up {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.trans-icon.down {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.trans-info {
    flex: 1;
}

.trans-info span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.trans-info small {
    color: #94a3b8;
    font-size: 0.75rem;
}

.trans-amount {
    font-weight: 700;
    font-size: 0.9rem;
}

.trans-amount.positive {
    color: #10b981;
}

.phone-pagination {
    bottom: 20px !important;
}

.phone-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
    width: 6px;
    height: 6px;
    transition: all 0.3s;
}

.phone-pagination .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
    width: 18px;
    border-radius: 3px;
}

/* ===================================================================
   11. MODAL OVERLAY
   =================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay .modal-2026 {
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 420px;
    width: 100%;
    background: #ffffff;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-2026 {
    transform: scale(1) translateY(0);
}



.modal-2026 input:focus,
.modal-2026 textarea:focus {
    border-color: var(--app-purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

/* Removed custom modal button overrides to match other pages */

/* ===================================================================
   12. CTA REFINEMENTS
   =================================================================== */

/* ===================================================================
   12. CTA REFINEMENTS
   =================================================================== */

.cta-features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    /* Ensure wrapping on smaller screens */
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 16px;
    transition: all 0.3s;
    min-width: 200px;
    /* Prevent squashing */
}

/* Phone Mockup Contrast Fixes */
.screen-header p {
    color: rgba(255, 255, 255, 0.9);
    /* Increased contrast */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    /* Added shadow for readability */
}

.mock-links {
    color: rgba(255, 255, 255, 0.8);
    /* Better contrast for links */
}

.dashboard-screen {
    color: #0f172a;
    /* Darker text for dashboard */
}

.greetings small {
    color: #475569;
    /* Darker grey for subtext */
}

.pricing-card {
    display: flex;
    /* Flex container for pricing card */
    flex-direction: column;
}

.pricing-features {
    flex-grow: 1;
    /* Push button to bottom */
}

/* Removed modal label override to match index.html */

/* Pricing Button - New Style */
.pricing-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--app-purple);
    border: 2px solid var(--app-purple);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-btn:hover {
    background: var(--app-purple);
    color: #fff;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.cta-feature i {
    font-size: 2rem;
    color: #fff;
    background: var(--app-gradient);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.3);
}

.cta-feature span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #d1d5db;
}

.btn-app-primary {
    background: #fff;
    color: var(--app-purple);
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-app-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    background: #f8fafc;
    color: var(--app-violet);
}

/* Phone Mockup Alignment Fixes */
.screen-content {
    display: flex;
    flex-direction: column;
}

.mock-input-group {
    justify-content: flex-start;
    /* Ensure proper left alignment */
}

.screen-header {
    width: 100%;
}

.screen-body {
    width: 100%;
}

.login-screen {
    align-items: center;
    /* Center content horizontally */
}

/* Footer Customization for this page */
.v2-footer.dark-background {
    background: #020617 !important;
}