:root {
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #10b981;
    --bg: #020617;
    --surface: #0f172a;
    --surface-glass: rgba(15, 23, 42, 0.6);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --revolut-blue: #0075FF;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* ==================== BACKGROUND EFFECTS ==================== */
.noise-overlay {
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.2;
}

.scanlines {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 50%,
            rgba(0, 0, 0, 0.1) 50%);
    background-size: 100% 4px;
    z-index: 1001;
    pointer-events: none;
    opacity: 0.3;
}

.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s;
    display: none;
}

@media (min-width: 769px) {
    .cursor-glow {
        display: block;
    }
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.aurora-container {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.aurora-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: aurora-float 20s infinite alternate;
}

.aurora-1 {
    top: -10%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, var(--primary-glow), transparent 60%);
    animation-delay: 0s;
}

.aurora-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 60%);
    animation-delay: -5s;
}

.aurora-3 {
    top: 40%;
    left: 40%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 60%);
    animation-delay: -10s;
}

@keyframes aurora-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* ==================== LIVE TICKER ==================== */
.live-ticker {
    position: fixed;
    top: 90px;
    right: 20px;
    background: #0f172a;
    /* Solid dark like screenshot */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    opacity: 0;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-size: 0.75rem;
    color: white;
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 2s infinite;
}

.live-ticker.active {
    opacity: 1;
    transform: translateX(0);
}

.ticker-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.ticker-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .live-ticker {
        display: none;
    }
}

/* ==================== NAVIGATION ==================== */
/* ==================== NAVIGATION (BOTTOM DOCK) ==================== */
nav {
    position: fixed;
    bottom: 24px;
    /* Floats at bottom */
    top: auto !important;
    /* Override any top setting */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.7);
    /* More transparent for dock feel */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    /* Pill shape */
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

nav.scrolled {
    /* Slightly wider or different style when scrolled? 
       Actually for a dock, it usually stays consistent or shrinks.
       Let's just keep it consistent. */
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Adjust hamburger for dock */
.hamburger {
    display: none;
    /* Hide by default on desktop, show on mobile if needed */
}

/* Adjust nav actions and logo sizes for dock */
.logo {
    font-size: 1.1rem;
    /* Smaller logo for dock */
}

.nav-links li {
    margin: 0 12px;
}

.btn-download-nav {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Mobile specific for Dock */
@media (max-width: 768px) {
    nav {
        width: 92%;
        bottom: 16px;
        padding: 10px 20px;
    }

    .hamburger {
        display: block;
    }

    .logo {
        font-size: 1rem;
    }

    .btn-download-nav {
        display: none;
        /* Hide download button on mobile dock to save space */
    }
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary));
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-download-nav {
    background: white;
    color: var(--bg);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 5% 80px;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.new-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #818cf8;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: badge-glow 2s infinite;
}

@keyframes badge-glow {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(99, 102, 241, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #fff, var(--primary), #fff, var(--secondary), #fff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 5s linear infinite, hero-glitch 10s step-end infinite;
    position: relative;
    z-index: 1;
}

@keyframes hero-glitch {

    0%,
    90%,
    100% {
        transform: none;
        filter: none;
    }

    92% {
        transform: skewX(10deg);
        filter: hue-rotate(90deg);
    }

    94% {
        transform: skewX(-10deg);
        filter: hue-rotate(-90deg);
    }

    96% {
        transform: translateX(5px);
    }

    98% {
        transform: translateX(-5px);
    }
}

@keyframes textShine {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px -10px var(--primary);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px var(--primary);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-feature i {
    color: var(--secondary);
}

/* ==================== PHONE MOCKUP ==================== */
.tilt-wrapper {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Orbiting Elements */
.orbital-container {
    position: absolute;
    inset: -100px;
    pointer-events: none;
    z-index: -1;
}

.orbital {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: orbit-rotate 20s linear infinite;
}

.orbital-1 {
    top: 10%;
    left: -10%;
    animation-duration: 15s;
}

.orbital-2 {
    bottom: 20%;
    right: -15%;
    animation-duration: 25s;
    color: var(--secondary);
}

.orbital-3 {
    top: 60%;
    left: -20%;
    animation-duration: 22s;
    color: #a855f7;
}

@keyframes orbit-rotate {
    0% {
        transform: rotate(0deg) translateY(30px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateY(30px) rotate(-360deg);
    }
}

.phone-mockup {
    width: 320px;
    height: 660px;
    background: #000;
    border-radius: 54px;
    border: 12px solid #1a1a1a;
    position: relative;
    box-shadow:
        0 0 0 2px #333,
        0 50px 100px -20px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(99, 102, 241, 0.15);
    overflow: hidden;
    z-index: 2;
    transition: transform 0.3s ease;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 11;
}

.notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.notch::after {
    content: '';
    width: 40px;
    height: 4px;
    background: #1a1a1a;
    border-radius: 4px;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, #1e1b4b 0%, #020617 60%);
    display: flex;
    flex-direction: column;
    padding: 40px 16px 20px 16px;
    position: relative;
    color: white;
    font-family: 'Inter', sans-serif;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.app-title h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.app-title span {
    color: #22c55e;
}

.app-subtitle {
    font-size: 0.65rem;
    color: #94a3b8;
}

.time-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 700;
}

.time-badge i {
    color: #22c55e;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mock-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 14px;
    position: relative;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.mock-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}

.mock-card.large {
    grid-column: span 2;
    height: 120px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.icon-box {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.icon-calc {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
}

.icon-warehouse {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.icon-printer {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.icon-log {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.icon-inv {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.mock-card.large .icon-box {
    position: absolute;
    top: 16px;
    left: 16px;
}

.mock-title {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 600;
}

.mock-value {
    font-size: 0.95rem;
    font-weight: 800;
    color: white;
}

.mock-desc {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    margin-top: 2px;
}

.balance-section {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 20px;
}

.balance-label {
    font-size: 0.6rem;
    color: #22c55e;
    font-weight: 800;
    letter-spacing: 1px;
}

.balance-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.wallet-btn {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1rem;
}

.mock-nav {
    position: absolute;
    bottom: 15px;
    left: 12px;
    right: 12px;
    height: 50px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.9rem;
    border-radius: 50%;
    transition: all 0.3s;
}

.nav-item.active {
    color: #10b981;
}

.circle-plus {
    background: var(--primary) !important;
    color: white !important;
    width: 45px !important;
    height: 45px !important;
    transform: translateY(-15px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5) !important;
    border: 3px solid #0f172a !important;
}

/* ==================== STATS BAR ==================== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==================== SECTIONS ==================== */
/* Section Index & Decorations */
.section {
    position: relative;
    padding: 100px 5%;
}

.section-index {
    position: absolute;
    top: 50px;
    left: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .section-index {
        font-size: 5rem;
        top: 20px;
        left: 10px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.section-tag {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ==================== BENTO GRID ==================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: var(--surface-glass);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bento-card.wide {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.card-visual-invoice {
    flex-shrink: 0;
    width: 120px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    position: relative;
    transform: rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.wide:hover .card-visual-invoice {
    transform: rotate(0deg) scale(1.1);
}

.invoice-mini {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inv-mini-head {
    width: 40%;
    height: 8px;
    background: var(--primary);
    border-radius: 4px;
    margin-bottom: 10px;
}

.inv-mini-line {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.inv-mini-total {
    margin-top: auto;
    width: 100%;
    height: 12px;
    background: var(--secondary);
    border-radius: 4px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .bento-card.wide {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 50px;
    }

    .card-visual-invoice {
        position: absolute;
        bottom: -20px;
        right: 20px;
        width: 80px;
        height: 100px;
    }
}

.bento-card.tall {
    grid-row: span 2;
}

/* Neon Accent Borders */
.spotlight-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(var(--card-angle, 135deg),
            transparent,
            rgba(99, 102, 241, 0.3),
            transparent);
    border-radius: inherit;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.spotlight-card:hover::after {
    opacity: 1;
    animation: border-rotate 4s linear infinite;
}

@keyframes border-rotate {
    0% {
        --card-angle: 0deg;
    }

    100% {
        --card-angle: 360deg;
    }
}

@property --card-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.bento-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: white !important;
    box-shadow: 0 0 20px var(--primary-glow);
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: white;
}

.card-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== ABOUT SECTION ==================== */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: var(--surface-glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--primary);
}

/* ==================== PRICING SECTION ==================== */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: var(--surface-glass);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.1), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.25);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.price {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-subtitle {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.pricing-features li strong {
    color: white;
}

.pricing-btn {
    width: 100%;
    margin-top: auto;
}

/* Spotlight & Reflection Utilities */
.spotlight-card {
    position: relative;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.spotlight-card:hover::before {
    opacity: 1;
}

.glass-reflection {
    position: relative;
    overflow: hidden;
}

.glass-reflection::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: reflection 8s infinite;
}

@keyframes reflection {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==================== DOWNLOAD SECTION ==================== */
.download-container {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(15, 23, 42, 0.8));
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    overflow: hidden;
    position: relative;
}

.download-content {
    flex: 1;
}

.download-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.download-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    cursor: not-allowed;
    opacity: 0.6;
}

.download-btn i {
    font-size: 2rem;
    color: var(--primary);
}

.download-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-store {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.download-btn-secondary i {
    color: var(--secondary);
}

.download-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--primary);
}

.download-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-phone {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s infinite ease-in-out;
}

.download-phone i {
    font-size: 5rem;
    color: white;
    z-index: 2;
}

.phone-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--primary), #a855f7);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

/* ==================== SUPPORT SECTION ==================== */
.support-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid var(--border);
    border-radius: 32px;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.support-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.support-content p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.rev-handle-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    font-family: monospace;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    max-width: 100%;
}

.rev-handle-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.copy-icon {
    color: var(--text-muted);
    transition: color 0.3s;
}

.rev-handle-box:hover .copy-icon {
    color: var(--primary);
}

.support-visual {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, var(--revolut-blue), #2563eb);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.rev-card-mockup {
    width: 280px;
    height: 170px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    transition: transform 0.3s;
}

.rev-card-mockup:hover {
    transform: rotate(0deg);
}

.rev-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rev-logo {
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
}

.rev-card-header i {
    transform: rotate(90deg);
    color: rgba(255, 255, 255, 0.7);
}

.rev-card-qr {
    text-align: center;
    opacity: 0.8;
    font-size: 3.5rem;
    color: white;
}

.rev-card-handle {
    font-family: monospace;
    font-size: 0.95rem;
    color: white;
}

/* ==================== FAQ SECTION ==================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    user-select: none;
}

.faq-toggle {
    transition: transform 0.3s;
    color: var(--text-muted);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-muted);
    transition: all 0.4s ease;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px 24px;
}

/* ==================== PRICING ==================== */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px 40px 40px 40px;
    /* Increased top padding for badge space */
    width: 100%;
    max-width: 350px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    overflow: visible;
    /* Fix for clipped badge */
    margin-top: 20px;
    /* Space for the scaled up card */
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(99, 102, 241, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--secondary);
    font-size: 1rem;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    border-radius: 12px;
}

/* ==================== FOOTER ==================== */
footer {
    border-top: 1px solid var(--border);
    background: #020617;
    padding: 70px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--primary);
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-made {
    margin-top: 8px;
    font-size: 0.85rem;
}

/* ==================== ANIMATIONS ==================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .phone-mockup {
        width: 75vw;
        max-width: 300px;
        height: auto;
        aspect-ratio: 9/19.5;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card.wide {
        grid-column: span 2;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Navigation Mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
    }

    .hamburger {
        display: flex;
    }

    .btn-download-nav {
        display: none;
    }

    /* Sections */
    .section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Hero - Ultra Premium Mobile Placement (Side-by-Side Feel) */
    .hero {
        padding-top: 100px;
        min-height: 90vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        position: relative;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 5%;
        z-index: 10;
        position: relative;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 9vw, 2.8rem);
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 20px;
        max-width: 85%;
    }

    .hero p {
        font-size: 0.95rem;
        max-width: 80%;
        margin-bottom: 30px;
        color: var(--text-muted);
        line-height: 1.5;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 260px;
    }

    .hero-visual {
        position: absolute;
        right: -120px;
        /* Precise peek for that screenshot look */
        top: 25%;
        transform: scale(0.7) rotate(-8deg);
        z-index: 2;
        pointer-events: none;
        opacity: 0.6;
        /* Balanced visibility */
        filter: drop-shadow(0 0 50px rgba(99, 102, 241, 0.4));
    }

    .orbital-container {
        inset: -40px;
    }

    .orbital {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .orbital-container {
        inset: -40px;
    }

    .orbital {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Mobile Aurora optimization */
    .aurora-blob {
        filter: blur(60px);
        opacity: 0.3;
    }

    .aurora-1 {
        width: 100vw;
        height: 100vw;
    }

    .aurora-2 {
        width: 90vw;
        height: 90vw;
    }

    /* Features Redesign - 2 Column Grid for Impact */
    .bento-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 10px 0;
        margin: 0;
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .bento-card {
        min-width: 0;
        height: auto;
        min-height: 180px;
        padding: 20px 15px;
        border-radius: 20px;
        margin-right: 0;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        justify-content: flex-start;
    }

    .bento-card.wide {
        grid-column: span 2;
        min-height: 120px;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .bento-card .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 12px;
        flex-shrink: 0;
        background: var(--primary);
        color: white;
    }

    .bento-card.wide .card-icon {
        margin-bottom: 0;
    }

    .bento-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
        color: white;
    }

    .bento-card p {
        display: block;
        font-size: 0.8rem;
        line-height: 1.4;
        color: var(--text-muted);
        opacity: 0.9;
    }

    .bento-card.wide p {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Stats */
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem 5%;
    }

    .stat-item:last-child {
        grid-column: span 2;
    }

    /* About - Compact Grid handled below */

    /* Compact Download */
    .download-container {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .download-visual {
        display: none;
        /* Keep it simple on mobile */
    }

    /* Compact Support */
    .support-card {
        flex-direction: column;
    }

    .support-content {
        padding: 30px 20px;
        text-align: center;
    }

    .support-visual {
        min-width: 100%;
        padding: 30px;
    }

    .rev-card-mockup {
        width: 240px;
        height: 140px;
        transform: rotate(0);
    }

    /* Compact About */
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-card {
        padding: 20px 15px;
        border-radius: 20px;
    }

    .about-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .about-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .about-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    /* Floating Action Button (Mobile Only) */
    .mobile-fab {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        background: var(--primary);
        color: white;
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 10px 30px var(--primary-glow);
        z-index: 1000;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        white-space: nowrap;
    }

    .mobile-fab.visible {
        transform: translateX(-50%) translateY(0);
    }

    /* High-Density Pricing - Side-by-Side Mobile */
    .pricing-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        align-items: stretch;
        margin: 0 -2%;
    }

    .pricing-card {
        min-width: 0;
        padding: 16px 10px;
        border-radius: 16px;
        background: rgba(15, 23, 42, 0.6);
        border: 1px solid var(--border);
    }

    /* High-Density Side-by-Side Pricing - Centered for Single Card */
    .pricing-container {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 20px 0;
        padding: 10px 0;
        flex-wrap: wrap;
    }

    .pricing-card {
        padding: 15px 10px;
        border-radius: 12px;
        background: rgba(15, 23, 42, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pricing-card.featured {
        transform: scale(1.05);
        border: 1px solid var(--primary);
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
    }

    .pricing-header h3 {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .price {
        font-size: 1.3rem;
    }

    .price span {
        font-size: 0.6rem;
    }

    .pricing-features {
        margin-bottom: 12px;
    }

    .pricing-features li {
        font-size: 0.65rem;
        margin-bottom: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pricing-btn {
        padding: 10px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
    }

    .download-btn {
        width: 100%;
    }
}

/* ==================== HERO MOBILE FIX ==================== */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 110px;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        margin-top: 20px;
        transform: scale(0.9);
    }

    .phone-mockup {
        margin: 0 auto;
    }
}

/* ==================== INVOICE SHOWCASE ==================== */
.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.feature-list li i {
    color: var(--secondary);
}

.invoice-mockup {
    width: 320px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotate(3deg);
    position: relative;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    transition: transform 0.3s ease;
}

.invoice-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.inv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
}

.inv-logo {
    font-size: 1.5rem;
    color: var(--primary);
}

.inv-title {
    font-weight: 800;
    letter-spacing: 1px;
    color: #64748b;
}

.inv-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.inv-label {
    color: #94a3b8;
    font-weight: 500;
}

.inv-val {
    font-weight: 600;
}

.inv-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 16px 0;
}

.inv-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.inv-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-weight: 800;
    font-size: 1.1rem;
}

.total-price {
    color: var(--primary);
}

.inv-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: #22c55e;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
    transform: rotate(-5deg);
}

@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    .invoice-mockup {
        width: 100%;
        max-width: 320px;
    }
}

/* ==================== FINAL HERO MOBILE OVERRIDE ==================== */
@media (max-width: 992px) {
    .hero {
        flex-direction: column !important;
        padding-top: 140px !important;
        padding-bottom: 60px !important;
        height: auto !important;
        min-height: auto !important;
        gap: 60px !important;
        overflow: visible !important;
    }

    .hero-content {
        margin-bottom: 40px !important;
        max-width: 90% !important;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        margin-top: 0 !important;
        width: 100% !important;
        transform: scale(0.9);
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
    }

    .phone-mockup {
        margin: 0 auto !important;
    }
}

/* ==================== NEW DASHBOARD DOCK (FINAL) ==================== */
nav {
    position: fixed !important;
    bottom: 30px !important;
    top: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    min-width: 380px;
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 100px !important;
    padding: 8px 12px !important;
    z-index: 9999 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: all 0.3s ease;
}

/* Hide legacy elements */
.logo,
.hamburger,
.btn-download-nav,
.nav-actions {
    display: none !important;
}

.nav-links {
    list-style: none;
    display: flex !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    position: static !important;
    flex-direction: row !important;
    height: auto !important;
    width: auto !important;
    transform: none !important;
}

.nav-links li {
    margin: 0 !important;
    opacity: 1 !important;
    transform: none !important;
}

.nav-links a {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
}

.nav-links a i {
    font-size: 1.1rem !important;
    margin: 0 !important;
}

.nav-links a:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.nav-links a.active {
    color: white !important;
    background: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4) !important;
}

/* Mobile Overrides for Dock */
@media (max-width: 768px) {
    nav {
        bottom: 20px !important;
        width: 92% !important;
        min-width: unset !important;
        justify-content: space-between !important;
        padding: 12px 16px !important;
        border-radius: 24px !important;
        left: 4% !important;
        transform: none !important;
    }

    .nav-links {
        width: 100% !important;
        justify-content: space-between !important;
        gap: 0 !important;
    }

    .nav-links a {
        flex-direction: column !important;
        gap: 5px !important;
        padding: 8px 12px !important;
        font-size: 0.7rem !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        opacity: 0.6 !important;
        width: auto !important;
    }

    .nav-links a.active {
        opacity: 1 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .nav-links a.active i {
        color: var(--primary) !important;
        filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
        transform: translateY(-2px);
    }

    .nav-links a.active span {
        color: white !important;
    }

    .nav-links a i {
        font-size: 1.4rem !important;
    }

    .nav-links a span {
        display: block !important;
    }
}