: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-pulse 3s infinite;
    position: relative;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.new-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
    animation: badge-shine 3s infinite;
}

@keyframes badge-shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
        border-color: rgba(99, 102, 241, 0.3);
    }

    50% {
        transform: scale(1.05);
        border-color: rgba(99, 102, 241, 0.6);
    }

    100% {
        transform: scale(1);
        border-color: 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-num i.fa-android {
    color: #3ddc84;
    filter: drop-shadow(0 0 10px rgba(61, 220, 132, 0.5));
}

.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: pointer;
    opacity: 1;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.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;
}

.supporter-tip {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.supporter-tip i {
    color: #f59e0b;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.supporter-tip strong {
    color: #fbbf24;
}

.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);
}

/* ==================== CRAZY ANIMATIONS PACK ==================== */

/* 1. Pulsing Icons in Cards */
.card-icon i {
    animation: icon-pulse 3s infinite ease-in-out;
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
    }

    50% {
        transform: scale(1.2);
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
    }
}

/* 2. Floating Bento Cards (Randomized delay handled via nth-child if needed, or JS) */
.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
    z-index: 10;
}

/* 3. Text Reveal Effect for Section Titles */
.section-title span {
    display: inline-block;
    animation: reveal-text 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    transform: translateY(100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

@keyframes reveal-text {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 4. Bug Report Button - Neon Glitch Style */
.footer-bug-report {
    text-align: center;
    margin: 40px 0;
}

.btn-bug-report {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-bug-report:hover {
    background: rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
    transform: scale(1.05);
    color: white;
}

.btn-bug-report i {
    animation: bug-shake 5s infinite;
}

@keyframes bug-shake {

    0%,
    90% {
        transform: rotate(0);
    }

    92% {
        transform: rotate(-15deg);
    }

    94% {
        transform: rotate(15deg);
    }

    96% {
        transform: rotate(-15deg);
    }

    98% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0);
    }
}

/* 5. Aurora Background Intensified */
.aurora-blob {
    animation-duration: 10s;
    /* Felgyorsítva */
    opacity: 0.5;
}

/* 6. Feature List Hover - Magnetic Effect Simulation */
.nav-links a:hover i {
    animation: bounce 0.5s;
}

/* 7. Pricing Cards - Breathing Effect */
.pricing-card.featured {
    animation: breathing-card 4s infinite ease-in-out;
}

@keyframes breathing-card {

    0%,
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
    }

    50% {
        transform: scale(1.07);
        box-shadow: 0 0 50px rgba(99, 102, 241, 0.3);
    }
}

/* ==================== 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 - OPTIMIZED DOCK */
    .nav-links {
        position: static;
        height: auto;
        width: 100%;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        gap: 0;
        transform: none;
        border-radius: 0;
        box-shadow: none;
    }

    .nav-links li {
        margin: 0;
        opacity: 1;
        transform: none;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.65rem;
        /* Kisebb betűhöz, hogy kiférjen */
        font-weight: 500;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4px 2px;
        gap: 4px;
        width: 100%;
        color: var(--text-muted);
        text-align: center;
    }

    .nav-links a.active {
        color: var(--primary);
        background: rgba(99, 102, 241, 0.1);
        border-radius: 12px;
    }

    .nav-links a::after {
        display: none;
        /* Alsó vonal eltüntetése mobilon */
    }

    .nav-links a i {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .nav-links span {
        display: block;
        line-height: 1;
        white-space: nowrap;
    }

    .hamburger {
        display: none !important;
        /* Hamburger elrejtése, mert dockot használunk */
    }

    .btn-download-nav {
        display: none;
    }

    /* Dock Container optimalizálás kis képernyőre */
    nav {
        width: 96%;
        bottom: 12px;
        padding: 8px 12px;
        border-radius: 24px;
        background: rgba(15, 23, 42, 0.95);
        /* Sötétebb háttér a jobb olvashatóságért */
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    @media (max-width: 380px) {
        .nav-links span {
            font-size: 0.6rem;
            /* Extra kicsi telefonokra */
        }

        nav {
            width: 98%;
            padding: 8px 6px;
        }
    }

    /* Sections */
    .section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Hero - Ultra Premium Mobile Placement (Side-by-Side Feel) */
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* Top Glow Effect - "Divine Light" */
    .hero::before {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 150%;
        height: 300px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
        animation: pulse-glow 4s ease-in-out infinite alternate;
    }

    @keyframes pulse-glow {
        from {
            opacity: 0.5;
            transform: translateX(-50%) scale(0.9);
        }

        to {
            opacity: 0.8;
            transform: translateX(-50%) scale(1.1);
        }
    }

    /* Scroll Indicator */
    .hero::after {
        content: '\f107';
        /* FontAwesome Chevron Down */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--text-muted);
        font-size: 1.5rem;
        animation: bounce 2s infinite;
        opacity: 0.7;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        40% {
            transform: translateX(-50%) translateY(-10px);
        }

        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 5%;
        z-index: 10;
        position: relative;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 3rem);
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 32px;
        color: var(--text-muted);
        line-height: 1.6;
        padding: 0 10px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .btn-primary,
    .btn-glass {
        width: 100%;
        justify-content: center;
        padding: 18px;
        font-size: 1rem;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        width: 100%;
        margin-top: 20px;
        padding: 0 10px;
    }

    .hero-feature {
        justify-content: center;
        font-size: 0.85rem;
        background: rgba(255, 255, 255, 0.03);
        padding: 10px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero-visual {
        position: absolute;
        right: -120px;
        top: 25%;
        transform: scale(0.7) rotate(-8deg);
        z-index: 2;
        pointer-events: none;
        opacity: 0.8;
        /* Kicsit láthatóbb legyen */
        filter: drop-shadow(0 0 50px rgba(99, 102, 241, 0.4));
        animation: hero-float-mobile 6s ease-in-out infinite;
    }

    @keyframes hero-float-mobile {

        0%,
        100% {
            transform: scale(0.7) rotate(-8deg) translateY(0);
        }

        50% {
            transform: scale(0.7) rotate(-8deg) translateY(-25px);
        }
    }

    /* Kaszkádolt belépés mobilon */
    .hero h1 {
        animation: fadeInUp 0.8s ease-out forwards 0.1s;
        opacity: 0;
    }

    .hero p {
        animation: fadeInUp 0.8s ease-out forwards 0.3s;
        opacity: 0;
    }

    .hero-btns {
        animation: fadeInUp 0.8s ease-out forwards 0.5s;
        opacity: 0;
    }

    .hero-features {
        animation: fadeInUp 0.8s ease-out forwards 0.7s;
        opacity: 0;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .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;
        overflow: hidden;
        /* Fénycsíkhoz */
    }

    /* Fénycsík animáció a gombon */
    .mobile-fab::after {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transform: skewX(-25deg);
        animation: shine-fab 4s infinite;
    }

    @keyframes shine-fab {
        0% {
            left: -150%;
        }

        20% {
            left: 150%;
        }

        100% {
            left: 150%;
        }
    }

    .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;
    }
}

/* ==================== BACK TO TOP BUTTON ==================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.cookie-accept {
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-accept:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

.cookie-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.cookie-decline:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ==================== QR CODE ==================== */
.qr-code-container {
    text-align: center;
}

.qr-code-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    display: inline-block;
    transition: all 0.3s;
}

.qr-code-wrapper:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
    transform: scale(1.05);
}

.qr-code-img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
}

.qr-label {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .qr-code-container {
        display: none;
    }
}

/* ==================== CHANGELOG SECTION ==================== */
.changelog-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--surface-glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}

.changelog-version {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.version-badge {
    background: linear-gradient(135deg, var(--primary), #a855f7);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.version-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.changelog-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.changelog-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.changelog-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border);
}

.changelog-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.changelog-item.new .changelog-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.changelog-item.improved .changelog-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.changelog-item.fixed .changelog-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.changelog-content {
    flex: 1;
}

.changelog-type {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.changelog-item.new .changelog-type {
    color: #10b981;
}

.changelog-item.improved .changelog-type {
    color: #3b82f6;
}

.changelog-item.fixed .changelog-type {
    color: #f59e0b;
}

.changelog-content p {
    color: var(--text-main);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .changelog-container {
        padding: 25px 20px;
    }

    .changelog-item {
        padding: 12px;
    }

    .changelog-icon {
        width: 32px;
        height: 32px;
    }

    .changelog-content p {
        font-size: 0.9rem;
    }
}

/* ==================== SCREENSHOT GALLERY ==================== */
.screenshot-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    perspective: 1000px;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-item:hover {
    transform: translateY(-15px);
}

.screenshot-item.featured {
    transform: scale(1.1);
    z-index: 10;
}

.screenshot-item.featured:hover {
    transform: scale(1.1) translateY(-15px);
}

.screenshot-phone {
    width: 220px;
    background: #000;
    border-radius: 36px;
    border: 8px solid #1a1a1a;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 2px #333,
        0 30px 60px -15px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(99, 102, 241, 0.1);
    transition: all 0.4s;
}

.screenshot-item:hover .screenshot-phone {
    box-shadow:
        0 0 0 2px #333,
        0 40px 80px -15px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(99, 102, 241, 0.2);
}

.screenshot-item.featured .screenshot-phone {
    border-color: var(--primary);
    box-shadow:
        0 0 0 2px var(--primary),
        0 40px 80px -15px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(99, 102, 241, 0.3);
}

.screenshot-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #000;
    border-radius: 15px;
    z-index: 10;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
}

.screenshot-label {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    transition: color 0.3s;
}

.screenshot-item:hover .screenshot-label {
    color: white;
}

.screenshot-item.featured .screenshot-label {
    color: var(--primary);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .screenshot-gallery {
        gap: 25px;
    }

    .screenshot-phone {
        width: 180px;
        border-radius: 30px;
        border-width: 6px;
    }

    .screenshot-notch {
        width: 60px;
        height: 18px;
    }

    .screenshot-item.featured {
        transform: scale(1.05);
    }

    .screenshot-item.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .screenshot-gallery {
        flex-direction: row;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 20px;
        padding: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .screenshot-gallery::-webkit-scrollbar {
        display: none;
    }

    .screenshot-item {
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .screenshot-item.featured {
        transform: scale(1);
    }

    .screenshot-item.featured:hover {
        transform: translateY(-10px);
    }

    .screenshot-phone {
        width: 200px;
        border-radius: 32px;
    }

    .screenshot-label {
        font-size: 0.9rem;
        margin-top: 15px;
    }
}

/* ==================== FLOATING 3D ELEMENTS (PARALLAX) ==================== */
.floating-elements {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    overflow: visible;
}

.floating-elements .floating-cube {
    pointer-events: auto;
}

.floating-cube {
    position: fixed;
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.15);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(99, 102, 241, 0.7);
    font-size: 1.5rem;
    backdrop-filter: blur(8px);
    opacity: 1;
    cursor: grab;
    user-select: none;
    z-index: 100;
    transition: box-shadow 0.2s, background 0.2s, transform 0.1s;
    pointer-events: auto !important;
}

.floating-cube:hover {
    background: rgba(99, 102, 241, 0.25);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
    border-color: rgba(99, 102, 241, 0.5);
    transform: scale(1.1);
}

.floating-cube:active {
    cursor: grabbing;
    transform: scale(1.15);
}

.floating-1 {
    top: 15%;
    left: 5%;
}

.floating-2 {
    top: 25%;
    left: 85%;
    width: 80px;
    height: 80px;
    font-size: 2rem;
    color: rgba(16, 185, 129, 0.6);
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.25);
}

.floating-2:hover {
    background: rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.floating-3 {
    top: 55%;
    left: 3%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    color: rgba(168, 85, 247, 0.6);
    background: rgba(168, 85, 247, 0.12);
    border-color: rgba(168, 85, 247, 0.25);
}

.floating-3:hover {
    background: rgba(168, 85, 247, 0.25);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.floating-4 {
    top: 70%;
    left: 90%;
}

.floating-5 {
    top: 40%;
    left: 8%;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    color: rgba(245, 158, 11, 0.6);
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.25);
}

.floating-5:hover {
    background: rgba(245, 158, 11, 0.25);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.floating-6 {
    top: 85%;
    left: 15%;
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    color: rgba(59, 130, 246, 0.6);
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
}

.floating-6:hover {
    background: rgba(59, 130, 246, 0.25);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

/* ==================== GRAVITY EFFECTS ==================== */
.gravity-fall {
    animation: shake 0.1s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(-3px) rotate(-5deg);
    }

    75% {
        transform: translateX(3px) rotate(5deg);
    }
}

.antigravity-float {
    animation: floatUp 0.5s ease-out;
}

@keyframes floatUp {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(2) drop-shadow(0 0 20px currentColor);
    }

    100% {
        filter: brightness(1);
    }
}

@keyframes gravityToast {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(-10deg);
        opacity: 0;
    }

    30% {
        transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) scale(0) rotate(10deg);
        opacity: 0;
    }
}

/* ==================== MOUSE PARTICLE EXTRA STYLES ==================== */
.mouse-particle {
    mix-blend-mode: screen;
}

/* ==================== SECRET HINT ==================== */
.secret-hint {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    z-index: 90;
    opacity: 0;
    animation: hintAppear 0.5s ease-out 5s forwards;
    pointer-events: none;
}

.secret-hint kbd {
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-family: inherit;
    margin: 0 4px;
}

@keyframes hintAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 768px) {
    .secret-hint {
        display: none;
    }
}

/* ==================== 🪩 DISCO PARTY MODE ==================== */
.disco-mode {
    animation: discoBackground 0.5s infinite;
}

.disco-mode * {
    transition: none !important;
}

@keyframes discoBackground {
    0% {
        background-color: #1a0a2e;
    }

    25% {
        background-color: #0a1a2e;
    }

    50% {
        background-color: #0a2e1a;
    }

    75% {
        background-color: #2e1a0a;
    }

    100% {
        background-color: #1a0a2e;
    }
}

.strobe-flash {
    filter: invert(1) hue-rotate(180deg);
}

.disco-spin {
    animation: discoSpin 0.5s linear infinite !important;
}

@keyframes discoSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(90deg) scale(1.5);
    }

    50% {
        transform: rotate(180deg) scale(1);
    }

    75% {
        transform: rotate(270deg) scale(1.5);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.disco-shake {
    animation: discoShake 0.1s infinite;
}

@keyframes discoShake {

    0%,
    100% {
        transform: translateX(0) rotate(0);
    }

    25% {
        transform: translateX(-10px) rotate(-2deg);
    }

    75% {
        transform: translateX(10px) rotate(2deg);
    }
}

.disco-pulse {
    animation: discoPulse 0.3s infinite alternate;
}

@keyframes discoPulse {
    0% {
        transform: scale(1);
        filter: hue-rotate(0deg) brightness(1);
    }

    100% {
        transform: scale(1.05);
        filter: hue-rotate(90deg) brightness(1.5);
    }
}

/* Disco Ball */
.disco-ball-container {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    pointer-events: none;
}

.disco-ball {
    width: 100px;
    height: 100px;
    animation: discoBallSpin 2s linear infinite;
}

.disco-ball-inner {
    font-size: 80px;
    filter: drop-shadow(0 0 30px white);
    animation: discoBallPulse 0.5s infinite alternate;
}

@keyframes discoBallSpin {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@keyframes discoBallPulse {
    0% {
        filter: drop-shadow(0 0 20px #fff) drop-shadow(0 0 40px #ff00ff);
    }

    100% {
        filter: drop-shadow(0 0 40px #fff) drop-shadow(0 0 80px #00ffff);
    }
}

/* Disco Lights */
.disco-lights {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.disco-light {
    position: absolute;
    width: 20px;
    height: 1000px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    transform-origin: top center;
    animation: discoLightSweep 1s ease-in-out infinite;
    opacity: 0.5;
}

.light-1 {
    animation-delay: 0s;
    left: 0;
}

.light-2 {
    animation-delay: 0.25s;
    left: 25%;
}

.light-3 {
    animation-delay: 0.5s;
    left: 50%;
}

.light-4 {
    animation-delay: 0.75s;
    left: 75%;
}

@keyframes discoLightSweep {

    0%,
    100% {
        transform: rotate(-30deg);
        background: linear-gradient(to bottom, #ff00ff, transparent);
    }

    25% {
        transform: rotate(30deg);
        background: linear-gradient(to bottom, #00ffff, transparent);
    }

    50% {
        transform: rotate(-20deg);
        background: linear-gradient(to bottom, #ffff00, transparent);
    }

    75% {
        transform: rotate(20deg);
        background: linear-gradient(to bottom, #ff0000, transparent);
    }
}

/* Confetti */
@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0;
    }
}

/* Disco Toast */
.disco-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    background-size: 400% 400%;
    animation: discoGradient 0.5s linear infinite, discoToastIn 0.5s ease-out;
    padding: 30px 60px;
    border-radius: 30px;
    z-index: 999999;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.5), 0 0 100px rgba(255, 0, 255, 0.5);
}

.disco-toast-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.disco-emoji {
    font-size: 3rem;
    animation: discoEmoji 0.2s infinite alternate;
}

.disco-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000;
    animation: discoTextPulse 0.1s infinite alternate;
}

.disco-subtext {
    margin-top: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes discoGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes discoToastIn {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(-180deg);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
    }

    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

@keyframes discoEmoji {
    0% {
        transform: scale(1) rotate(-10deg);
    }

    100% {
        transform: scale(1.2) rotate(10deg);
    }
}

@keyframes discoTextPulse {
    0% {
        transform: scale(1);
        filter: hue-rotate(0deg);
    }

    100% {
        transform: scale(1.1);
        filter: hue-rotate(30deg);
    }
}

.disco-toast-hide {
    animation: discoToastOut 0.5s ease-in forwards;
}

@keyframes discoToastOut {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0) rotate(180deg);
        opacity: 0;
    }
}

/* ==================== 🕳️ BLACK HOLE MODE ==================== */
.black-hole {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99998;
    pointer-events: none;
}

.black-hole-center {
    font-size: 100px;
    animation: blackHoleSpin 1s linear infinite, blackHolePulse 0.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 50px #a855f7) drop-shadow(0 0 100px #6366f1);
}

.black-hole-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 3px solid #a855f7;
    border-radius: 50%;
    animation: blackHoleRing 1s linear infinite;
    box-shadow: 0 0 50px #a855f7, inset 0 0 50px rgba(168, 85, 247, 0.3);
}

@keyframes blackHoleSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes blackHolePulse {
    0% {
        filter: drop-shadow(0 0 30px #a855f7);
    }

    100% {
        filter: drop-shadow(0 0 80px #6366f1) drop-shadow(0 0 120px #ec4899);
    }
}

@keyframes blackHoleRing {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2) rotate(180deg);
        opacity: 0;
    }
}

@keyframes blackHoleToast {
    0% {
        transform: translateX(-50%) scale(0);
    }

    50% {
        transform: translateX(-50%) scale(1.2);
    }

    70% {
        transform: translateX(-50%) scale(1);
    }

    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0;
    }
}

.being-sucked {
    animation: beingSucked 1.5s ease-in forwards !important;
}

@keyframes beingSucked {
    0% {
        filter: blur(0);
    }

    100% {
        filter: blur(10px) brightness(2);
    }
}

.black-hole-explode .black-hole-center {
    animation: explodeCenter 0.5s ease-out forwards;
}

@keyframes explodeCenter {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(3);
        filter: brightness(3);
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* ==================== 💀 GLITCH/HACK MODE ==================== */
.glitch-mode {
    animation: glitchBg 0.3s infinite;
}

@keyframes glitchBg {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    25% {
        filter: hue-rotate(90deg) saturate(2);
    }

    50% {
        filter: hue-rotate(-90deg);
    }

    75% {
        filter: hue-rotate(180deg) saturate(0.5);
    }
}

.glitch-shift {
    transform: translateX(5px);
}

.glitch-mode::before {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            rgba(0, 255, 0, 0.03) 0px,
            rgba(0, 255, 0, 0.03) 1px,
            transparent 1px,
            transparent 2px);
    pointer-events: none;
    z-index: 99999;
    animation: scanlines 0.1s infinite;
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(4px);
    }
}

.glitch-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    border: 2px solid #00ff00;
    padding: 30px 60px;
    z-index: 999999;
    animation: glitchToastAnim 0.1s infinite;
}

.glitch-text {
    font-family: monospace;
    font-size: 2rem;
    color: #00ff00;
    position: relative;
    text-shadow: 0 0 10px #00ff00;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    color: #ff0000;
    animation: glitch1 0.2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch-text::after {
    color: #00ffff;
    animation: glitch2 0.2s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch1 {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-3px);
    }

    80% {
        transform: translateX(3px);
    }
}

@keyframes glitch2 {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(5px);
    }

    40% {
        transform: translateX(-5px);
    }

    60% {
        transform: translateX(3px);
    }

    80% {
        transform: translateX(-3px);
    }
}

@keyframes glitchToastAnim {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    25% {
        transform: translate(-52%, -48%);
    }

    50% {
        transform: translate(-48%, -52%);
    }

    75% {
        transform: translate(-51%, -49%);
    }
}

.glitch-element {
    animation: glitchElement 0.2s steps(2) infinite !important;
}

@keyframes glitchElement {
    0% {
        transform: translateX(-5px) skewX(5deg);
        filter: hue-rotate(90deg);
    }

    50% {
        transform: translateX(5px) skewX(-5deg);
        filter: hue-rotate(-90deg);
    }

    100% {
        transform: translateX(-5px) skewX(5deg);
        filter: hue-rotate(90deg);
    }
}

@keyframes hackMsgAnim {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ==================== 🌀 BARREL ROLL ==================== */
.barrel-rolling {
    animation: barrelRoll 1s ease-in-out;
}

@keyframes barrelRoll {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==================== 🔮 MATRIX RAIN ==================== */
.matrix-column {
    position: absolute;
    top: -500px;
    font-family: monospace;
    font-size: 20px;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    line-height: 1;
    animation: matrixFall 5s linear forwards;
    opacity: 0.8;
}

.matrix-column::first-letter {
    color: #fff;
    text-shadow: 0 0 20px #fff;
}

@keyframes matrixFall {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(100vh + 500px));
    }
}

@keyframes neoFade {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ==================== 💥 THANOS SNAP ==================== */
@keyframes thanosFlash {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes thanosText {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    30% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }

    70% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
}

@keyframes dustFloat {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(100px, -50px) scale(0);
    }
}

@media (max-width: 768px) {
    .floating-elements {
        display: none;
    }
}

/* ==================== COMPARISON TABLE ==================== */
.comparison-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.comparison-title {
    text-align: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 30px;
}

.comparison-table-container {
    background: var(--surface-glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
    background: rgba(99, 102, 241, 0.1);
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.comparison-table th.feature-col {
    text-align: left;
    width: 50%;
}

.comparison-table th.plan-col {
    width: 25%;
}

.comparison-table th.pro-col {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
}

.comparison-table tbody tr {
    transition: background 0.3s;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.feature-name {
    text-align: left !important;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-name i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.feature-value {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-value.pro-value {
    color: white;
    font-weight: 600;
}

.check-icon {
    color: #10b981 !important;
    font-size: 1.1rem;
}

.x-icon {
    color: #64748b !important;
    font-size: 0.9rem;
}

.price-row {
    background: rgba(99, 102, 241, 0.05);
}

.price-row .feature-name {
    color: white;
}

.price-free {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #10b981 !important;
}

.price-pro {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
}

.price-unavailable {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

/* ==================== BETA NOTICE ==================== */
.beta-notice {
    max-width: 700px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.beta-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399, #10b981);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.beta-notice-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.beta-notice-icon i {
    font-size: 1.8rem;
    color: #10b981;
}

.beta-notice-content h4 {
    font-size: 1.2rem;
    color: #10b981;
    margin-bottom: 6px;
}

.beta-notice-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.beta-notice-content strong {
    color: white;
}

@media (max-width: 768px) {
    .beta-notice {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .beta-notice-icon {
        width: 50px;
        height: 50px;
    }

    .beta-notice-icon i {
        font-size: 1.5rem;
    }

    .beta-notice-content h4 {
        font-size: 1.1rem;
    }

    .beta-notice-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .comparison-wrapper {
        margin-top: 40px;
        padding: 0 10px;
    }

    .comparison-title {
        font-size: 1.2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .feature-name {
        font-size: 0.8rem;
        gap: 8px;
    }

    .feature-name i {
        font-size: 0.9rem;
    }

    .comparison-table th.feature-col {
        width: 45%;
    }

    .comparison-table th.plan-col {
        width: 27.5%;
    }

    .price-free,
    .price-pro {
        font-size: 1rem !important;
    }
}

/* ==================== GLOBAL THROWABLE BACKGROUND ICONS ==================== */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100 !important;
    /* Előtérben, hogy dobálható legyen */
    pointer-events: none;
    /* Átengedi a kattintást üres helyen */
    overflow: hidden;
}

.floating-cube {
    position: absolute;
    color: rgba(99, 102, 241, 0.2);
    /* Halvány, hogy ne zavarja az olvasást */
    font-size: 2rem;
    pointer-events: auto;
    /* A kockák klikkelhetők maradnak! */
    cursor: grab;
    transition: color 0.3s, transform 0.2s;
    will-change: transform;
}

.floating-cube:hover {
    color: rgba(99, 102, 241, 0.6);
    /* Ha ráviszed az egeret, kifényesedik */
    z-index: 1000;
}

.floating-cube:active {
    cursor: grabbing;
}

/* Elosztjuk őket a képernyőn */
.floating-1 {
    top: 15%;
    left: 10%;
    animation: float-1 20s infinite alternate;
}

.floating-2 {
    top: 75%;
    left: 85%;
    animation: float-2 25s infinite alternate;
    font-size: 3rem;
}

.floating-3 {
    top: 40%;
    left: 80%;
    animation: float-1 22s infinite alternate;
}

.floating-4 {
    top: 60%;
    left: 15%;
    animation: float-2 28s infinite alternate;
    font-size: 2.5rem;
}

.floating-5 {
    top: 85%;
    left: 40%;
    animation: float-1 24s infinite alternate;
}

.floating-6 {
    top: 20%;
    left: 60%;
    animation: float-2 26s infinite alternate;
    font-size: 1.5rem;
}

@keyframes float-1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, 50px) rotate(20deg);
    }
}

@keyframes float-2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-40px, -30px) rotate(-15deg);
    }
}

/* ==================== SCREENSHOT GALLERY ==================== */
.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: translateY(-10px);
}

.screenshot-item.featured {
    transform: scale(1.1);
    z-index: 2;
}

.screenshot-item.featured:hover {
    transform: scale(1.15) translateY(-10px);
}

/* Phone Mockup for Gallery */
.screenshot-phone {
    width: 240px;
    height: 480px;
    /* Aspect Ratio ~0.5 */
    background: #000;
    border-radius: 36px;
    border: 8px solid #1a1a1a;
    position: relative;
    box-shadow:
        0 0 0 2px #333,
        0 20px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transition: all 0.3s ease;
}

.screenshot-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #000;
    border-radius: 12px;
    z-index: 10;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the frame for thumbnails */
    border-radius: 28px;
    /* Inner radius */
    display: block;
}

.screenshot-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .screenshot-gallery {
        gap: 20px;
    }

    .screenshot-phone {
        width: 160px;
        height: 320px;
        border-width: 6px;
        border-radius: 24px;
    }

    .screenshot-notch {
        width: 50px;
        height: 14px;
        top: 4px;
    }

    .screenshot-item.featured {
        transform: scale(1);
    }
}