:root {
    --bg-dark: #0A0A0C;
    --accent-orange: #FF6B35;
    --accent-gold: #FFB347;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: radial-gradient(circle at 15% 50%, rgba(255, 107, 53, 0.15), transparent 25%),
                      radial-gradient(circle at 85% 30%, rgba(255, 179, 71, 0.1), transparent 25%);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--accent-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nav {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    color: var(--bg-dark) !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

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

.badge-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ios-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-badge {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.app-store-btn img {
    height: 56px;
    transition: transform 0.2s ease;
}

.app-store-btn:hover img {
    transform: scale(1.05);
}

.hero-visual {
    flex: 1;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 260px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 0 10px rgba(255,255,255,0.05);
    background: #000;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    z-index: 10;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

.phone-mockup.offset {
    margin-top: 60px;
}

/* Features */
.features {
    padding: 100px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-visual img {
    width: 100%;
    max-width: 320px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
    border-color: rgba(255, 107, 53, 0.4);
}

.feature-list strong {
    font-size: 1.25rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.feature-list p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

/* CTA Group & Trust Signals */
.cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-signals {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-signals .stars {
    color: #FFB800;
    letter-spacing: 2px;
    font-size: 1rem;
}

/* Bottom CTA */
.bottom-cta {
    padding: 6rem 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.bottom-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.bottom-cta .trust-signals {
    justify-content: center;
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Language Switcher */
.lang-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.glass-select {
    appearance: none;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.4rem 1.5rem 0.4rem 1rem;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.glass-select:hover {
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.glass-select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.lang-select-wrapper::after {
    content: "▼";
    font-size: 10px;
    color: var(--text-secondary);
    position: absolute;
    right: 10px;
    pointer-events: none;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    
    .badge-container {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        margin-top: 2rem;
    }
    
    .features {
        flex-direction: column-reverse;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .nav-links a:not(.btn) {
        display: none;
    }
    
    .phone-mockup {
        width: 180px;
    }
    
    .phone-mockup.offset {
        margin-top: 30px;
    }
}
