/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0b0720;
    --text: #e2e8f0;
    --muted: #94a3b8;
    --neon-pink: #ff3cac;
    --neon-violet: #784BA0;
    --neon-yellow: #f9c80e;
    --neon-cyan: #08F7FE;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    background-image: radial-gradient(1200px 600px at 50% -10%, rgba(255,60,172,0.25), transparent), radial-gradient(800px 400px at 80% 20%, rgba(8,247,254,0.12), transparent);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(5, 3, 20, 0.6);
    backdrop-filter: saturate(160%) blur(8px);
    box-shadow: 0 2px 20px rgba(8, 247, 254, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 12px rgba(255,60,172,0.5), 0 0 18px rgba(8,247,254,0.35);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255, 60, 172, 0.08);
    box-shadow: 0 0 12px rgba(8, 247, 254, 0.15) inset;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #64748b;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle:hover {
    color: #6366f1;
}

/* Language Switcher */
.language-switcher {
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(8,247,254,0.35);
    border-radius: 20px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    min-height: 44px;
    min-width: 80px;
}

.language-switcher:hover {
    border-color: #6366f1;
    background: #f8fafc;
}

.language-switcher span {
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #64748b;
}

.language-switcher span.active {
    background: #6366f1;
    color: white;
}

.language-switcher .lang-ru.active ~ .lang-en,
.language-switcher .lang-en.active ~ .lang-ru {
    color: #94a3b8;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    color: var(--text);
    background: radial-gradient(1200px 600px at 50% -10%, rgba(255,60,172,0.25), transparent), 
                radial-gradient(800px 400px at 80% 20%, rgba(8,247,254,0.12), transparent);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-violet));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-yellow));
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.gradient-orb-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--neon-violet), var(--neon-pink));
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text) 0%, var(--neon-cyan) 50%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(8, 247, 254, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-download {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(8, 247, 254, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
}

.btn-content {
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(8, 247, 254, 0.5);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 500;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
}

.btn-primary {
    background: #fff;
    color: #6366f1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.store-badge {
    height: 40px;
    width: auto;
}

.store-badge-large {
    height: 60px;
    width: auto;
}

/* Telegram Badge Styling */

.btn[href*="t.me"] {
    background: #0088cc !important;
    color: white !important;
    border: none;
    position: relative;
    min-width: 160px;
    justify-content: center;
    padding: 0.75rem 1.5rem;
}

.btn[href*="t.me"]:hover {
    background: #006699 !important;
}

.btn[href*="t.me"]::before {
    content: "📱";
    margin-right: 8px;
    font-size: 1.2em;
}

.btn-large[href*="t.me"] {
    min-width: 180px;
    padding: 1rem 2rem;
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    position: relative;
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a, #2a2a2a);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(8, 247, 254, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s ease;
    overflow: hidden;
    margin: 0 auto;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(8, 247, 254, 0.3) 0%, 
        rgba(255, 60, 172, 0.3) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(8, 247, 254, 0.3) 75%,
        rgba(255, 60, 172, 0.3) 100%);
    border-radius: 52px;
    z-index: -1;
    animation: gradientShift 3s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-radius: 42px;
    padding: 0;
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(8, 247, 254, 0.1);
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-screen:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(8, 247, 254, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    border: 1px solid rgba(8, 247, 254, 0.2);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.app-preview {
    width: 100%;
    height: 100%;
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 38px;
    transition: transform 0.3s ease;
}

.phone-screen:hover .app-screenshot {
    transform: scale(1.05);
}

.mesh-network {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.mesh-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: pulseNode 2s ease-in-out infinite;
}

.mesh-node-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.mesh-node-2 {
    top: 25%;
    right: 25%;
    animation-delay: 0.5s;
}

.mesh-node-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 1s;
}

.mesh-node-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.mesh-signal {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    border-radius: 1px;
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: signalTravel 3s linear infinite;
}

.mesh-signal-1 {
    top: 20%;
    left: 0;
    width: 60%;
    animation-delay: 0s;
}

.mesh-signal-2 {
    top: 50%;
    right: 0;
    width: 50%;
    transform: rotate(45deg);
    transform-origin: right center;
    animation-delay: 1s;
}

.mesh-signal-3 {
    bottom: 25%;
    left: 0;
    width: 70%;
    animation-delay: 2s;
}

.mesh-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.3;
    animation: connectionPulse 4s ease-in-out infinite;
}

.mesh-connection-1 {
    top: 20%;
    left: 20%;
    width: 30%;
    transform: rotate(15deg);
    animation-delay: 0.5s;
}

.mesh-connection-2 {
    top: 40%;
    left: 15%;
    width: 40%;
    transform: rotate(-20deg);
    animation-delay: 1.5s;
}

.mesh-connection-3 {
    bottom: 25%;
    right: 20%;
    width: 35%;
    transform: rotate(30deg);
    animation-delay: 2.5s;
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.1;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1.2);
    }
}

.mesh-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--neon-cyan);
    animation: particleMove 5s linear infinite;
}

.mesh-particle-1 {
    top: 18%;
    left: 22%;
    animation-delay: 0s;
}

.mesh-particle-2 {
    top: 28%;
    right: 27%;
    animation-delay: 1.5s;
}

.mesh-particle-3 {
    bottom: 28%;
    left: 17%;
    animation-delay: 3s;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -50px);
        opacity: 0;
    }
}

@keyframes pulseNode {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes signalTravel {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b0720 0%, #1a0b2e 50%, #0b0720 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px 400px at 50% 50%, rgba(8, 247, 254, 0.1), transparent);
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(8, 247, 254, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 247, 254, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.features-badge:hover {
    background: rgba(8, 247, 254, 0.15);
    transform: translateY(-2px);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
    background: linear-gradient(135deg, var(--text) 0%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 247, 254, 0.1), rgba(255, 60, 172, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(8, 247, 254, 0.3);
    box-shadow: 0 20px 40px rgba(8, 247, 254, 0.2);
}

.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-icon {
    position: relative;
}

.icon-bg {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(8, 247, 254, 0.2), rgba(255, 60, 172, 0.2));
    border-radius: 15px;
    border: 1px solid rgba(8, 247, 254, 0.3);
    transition: all 0.3s ease;
}

.feature-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(8, 247, 254, 0.3));
}

.feature-card:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(8, 247, 254, 0.3), rgba(255, 60, 172, 0.3));
}

.feature-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
    opacity: 0.6;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-content p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(8, 247, 254, 0.2), rgba(255, 60, 172, 0.2));
    border: 1px solid rgba(8, 247, 254, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-highlight {
    background: linear-gradient(135deg, rgba(8, 247, 254, 0.3), rgba(255, 60, 172, 0.3));
    transform: scale(1.05);
}

.highlight-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neon-cyan);
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b0720 0%, #1a0b2e 50%, #0b0720 100%);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.download-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.gradient-orb-4 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-violet));
    top: 20%;
    left: -10%;
    animation-delay: 1s;
}

.gradient-orb-5 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-yellow));
    bottom: 10%;
    right: -5%;
    animation-delay: 3s;
}

.download-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.download-header {
    margin-bottom: 4rem;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 60, 172, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 60, 172, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neon-pink);
    transition: all 0.3s ease;
}

.download-badge:hover {
    background: rgba(255, 60, 172, 0.15);
    transform: translateY(-2px);
}

.download-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-content p {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.download-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 60, 172, 0.1), rgba(8, 247, 254, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.download-card:hover::before {
    opacity: 1;
}

.download-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 60, 172, 0.3);
    box-shadow: 0 20px 40px rgba(255, 60, 172, 0.2);
}

.card-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.download-card .icon-bg {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 60, 172, 0.2), rgba(8, 247, 254, 0.2));
    border-radius: 20px;
    border: 1px solid rgba(255, 60, 172, 0.3);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.download-card:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 60, 172, 0.3), rgba(8, 247, 254, 0.3));
}

.download-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
    position: relative;
    z-index: 2;
}

.download-card p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.download-btn {
    display: inline-block;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
}

.store-badge {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-item .feature-icon {
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0b0720 0%, #1a0b2e 100%);
    color: var(--text);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px 300px at 50% 0%, rgba(8, 247, 254, 0.05), transparent);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(8, 247, 254, 0.4));
    transition: all 0.3s ease;
}

.logo-icon-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(8, 247, 254, 0.6));
}

.footer-logo h3 {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text) 0%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.footer-brand p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: none; /* Hidden since no social links are available */
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: rgba(8, 247, 254, 0.1);
    border-color: rgba(8, 247, 254, 0.3);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 1px;
}

.link-group a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-stats span {
    background: rgba(255, 60, 172, 0.1);
    border: 1px solid rgba(255, 60, 172, 0.2);
    border-radius: 15px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
}

/* Additional Animations and Effects */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for interactive elements */
.interactive-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Glow effects */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--neon-yellow));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 0.7;
    animation: pulse 2s infinite;
}

/* Text gradient animation */
.gradient-text {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--neon-yellow));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Loading animation for images */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-radius: 0;
        width: 100%;
        justify-content: flex-start;
    }

    /* Hero Section */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Store badges */
    .store-badge {
        height: 50px;
    }

    .store-badge-large {
        height: 60px;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }

    .phone-screen {
        width: 100%;
        height: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .download-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        max-width: 100%;
        font-size: 0.9rem;
    }

    /* Smaller store badges for very small screens */
    .store-badge {
        height: 45px;
    }

    .store-badge-large {
        height: 55px;
    }

    .features {
        padding: 60px 0;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .download {
        padding: 60px 0;
    }

    .download-content h2 {
        font-size: 1.8rem;
    }

    .download-content p {
        font-size: 1rem;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .phone-screen {
        width: 100%;
        height: 100%;
    }

    /* Language switcher adjustments */
    .language-switcher {
        font-size: 0.8rem;
        min-width: 70px;
        padding: 0.4rem 0.6rem;
    }

    /* Logo size adjustment */
    .logo-text {
        font-size: 1.5rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(8, 247, 254, 0.1), rgba(255, 60, 172, 0.1));
    border: 1px solid rgba(8, 247, 254, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.faq-badge .badge-icon {
    font-size: 1rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(5, 3, 20, 0.6);
    border: 1px solid rgba(8, 247, 254, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(8, 247, 254, 0.4);
    box-shadow: 0 4px 20px rgba(8, 247, 254, 0.1);
}

.faq-item.active {
    border-color: var(--neon-cyan);
    box-shadow: 0 4px 20px rgba(8, 247, 254, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(8, 247, 254, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(8, 247, 254, 0.02);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
    }

    .faq-icon {
        font-size: 1.2rem;
    }
}