.landing-navbar {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
}
 
.nav-button {
    background: #1D61E7;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.hero {
    background: linear-gradient(135deg, #1D61E7, #0A2472);
    color: white;
    padding: 160px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.login-prompt {
    text-align: center;
}

.login-prompt p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 16px;
    margin-bottom: 28px;
}

.login-button {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 24px;
    border: 2px solid #ffff;
    border-radius: 8px;
    transition: all 0.2s;
}

.login-button:hover {
    border-color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.1);
}

.cta-button {
    background: white;
    color: #1D61E7;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 32px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.pricing {
    background: #f8f9fa;
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 48px;
}

.price-card {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #1D61E7;
    margin: 24px 0;
}

.features-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.features-list li {
    padding: 8px 0;
    color: #444;
}

.buy-button {
    background: #1D61E7;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

footer {
    padding: 24px 0;
    text-align: center;
    color: #666;
}

.coming-soon {
    background: #f0f4ff;
    padding: 60px 0;
    text-align: center;
}

.mobile-announcement {
    max-width: 600px;
    margin: 0 auto;
}

.mobile-announcement h2 {
    color: #1D61E7;
    margin-bottom: 16px;
}

.mobile-announcement p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.store-badge {
    height: 40px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.store-badge:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    .hero-text {
        font-size: 18px;
        padding: 0 16px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    .price-card {
        margin: 0 16px;
    }
    .coming-soon {
        padding: 40px 16px;
    }
    
    .mobile-announcement p {
        font-size: 16px;
    }
    
    .store-badges {
        flex-direction: column;
        align-items: center;
    }
}