:root {
    --primary: #00d2ff;
    --primary-dark: #0081ff;
    --accent: #ff00c1;
    --secondary: #0a0a0b;
    --bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, .logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gradient);
    color: #000 !important;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.3);
}

.btn-outline {
    border-color: var(--glass-border);
    color: var(--text);
    background: var(--glass);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.playstore-btn {
    background: #000;
    border: 1px solid #333;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s ease;
}

.playstore-btn:hover {
    background: #111;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.playstore-btn i {
    font-size: 1.8rem;
}

.playstore-btn .text-small {
    font-size: 0.7rem;
    display: block;
    opacity: 0.8;
    font-weight: 400;
}

.playstore-btn .text-large {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo img {
    height: 38px;
    width: 38px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
}

/* Hero */
.hero {
    padding: 220px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 0, 193, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 5rem;
}

.hero-content h1 {
    font-size: 4.8rem;
    line-height: 1.05;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -3px;
}

.hero-content p {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 100%;
    max-width: 420px;
    position: relative;
    padding: 12px;
    background: #121214;
    border-radius: 48px;
    box-shadow: 
        0 0 0 1px #27272a,
        0 50px 100px -20px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

.phone-mockup img {
    width: 100%;
    border-radius: 38px;
    display: block;
}

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

/* Stats */
.stats {
    padding: 80px 0;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--glass-border);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* Features */
.features {
    padding: 140px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 3.5rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(255,255,255,0.05);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Screenshots */
.screenshots {
    padding: 140px 0;
    background: #000;
    position: relative;
}

.screenshots h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 6rem;
    color: var(--white);
    letter-spacing: -2px;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.slider-container {
    display: flex;
    gap: 4rem;
    padding: 0 4rem;
    cursor: grab;
    user-select: none;
    overflow-x: scroll;
    scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex: 0 0 320px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.screenshot-item:hover {
    transform: scale(1.1) translateY(-20px);
    z-index: 10;
}

.screenshot-item img {
    width: 100%;
    border-radius: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}

/* Testimonials */
.testimonials {
    padding: 140px 0;
    background: var(--bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    position: relative;
}

.testimonial-card i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h4 {
    color: var(--white);
    font-size: 1rem;
}

.user-details p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Footer */
footer {
    padding: 120px 0 60px;
    background: #050505;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.footer-logo {
    font-weight: 800;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: -1px;
}

.footer-links h4 {
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

/* Subpages Specific */
.subpage-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.05), transparent 50%),
                radial-gradient(circle at bottom left, rgba(255, 0, 193, 0.03), transparent 50%);
}

.subpage-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.content-section {
    padding: 80px 0;
}

.rich-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.rich-text h2 {
    color: var(--white);
    margin: 3rem 0 1.5rem;
    font-size: 2rem;
}

.rich-text p {
    margin-bottom: 1.5rem;
}

/* Mobile */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-content p {
        margin: 0 auto 3rem;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .stat-item::after {
        display: none;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--white);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--secondary);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .subpage-hero {
        padding: 140px 0 60px;
    }

    .subpage-hero h1 {
        font-size: 2.5rem;
    }
}
