:root {
    --bg-dark: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --primary: #f97316;
    --primary-hover: #ea580c;
    --text-light: #f8fafc;
    --text-muted: #cbd5e1;
}

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

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(30, 41, 59, 1) 0%, transparent 50%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    text-decoration: none;
}

.logo-container img {
    height: 40px;
}

.lang-switch {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 80vh;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

h1 span {
    color: var(--primary);
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Buttons */
.cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

.btn-android {
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-android:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

/* Mockup */
.hero-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.floating-mockup {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

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

/* Selling Points */
.selling-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 5% 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.point-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
    transition: transform 0.2s ease;
}

.point-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.point-chip svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

/* Benefits Section */
.benefits {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-text {
    flex: 1;
}

.benefit-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.benefit-text h2 span {
    color: var(--primary);
}

.benefit-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.play-badge {
    display: inline-block;
    height: 64px;
    margin-bottom: 3rem;
    transition: transform 0.2s ease;
}

.play-badge:hover {
    transform: scale(1.05);
}

.play-badge img {
    height: 100%;
    width: auto;
    background: white;
    padding: 12px 20px;
    border-radius: 20px;
}

.benefit-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.benefit-image img, .benefit-image dotlottie-player {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 5px solid var(--primary);
    width: 100%;
}

dotlottie-player.padded-lottie {
    background: white;
    padding: 40px;
    box-sizing: border-box;
}

/* Upcoming Features */
.upcoming-features {
    text-align: center;
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 0 5%;
}

.upcoming-features h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 2rem;
}

.upcoming-features h2 span {
    color: var(--primary);
}

.upcoming-features > p {
    margin-top: 2.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.upcoming-features > p span {
    color: var(--primary);
    font-weight: 500;
}

.upcoming-features .selling-points {
    padding-top: 0;
    padding-bottom: 0;
}

/* FAQ Section */
.faq {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 5%;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

details {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

summary {
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details p {
    margin-top: 1rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

/* SEO Footer */
.seo-footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

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

.footer-seo-text {
    max-width: 800px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-content {
        margin: 0 auto;
    }

    .cta-group {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .benefit-row, .benefit-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}
