/* Landing Page Specific Styles */
.landing-page {
    overflow-x: hidden;
}

/* Floating Navbar */
.navbar-floating {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-md);
}

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

/* Hero Section */
.hero-v2 {
    min-height: 100vh;
    padding: 10rem 5% 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
}

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

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
    transition: transform 0.3s ease;
}

.hero-visual img:hover {
    transform: scale(1.02) rotate(1deg);
}

/* Trusted By */
.trusted-by {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 5rem;
}

/* Features Grid */
.features-section {
    padding: 5rem 5%;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 400px;
    padding: 3rem 2rem;
    text-align: center;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    padding: 5rem 5% 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-glass);
    margin-top: 10rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo strong {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-v2 {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-text p {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar-floating {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        width: 95%;
        top: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-v2 {
        padding-top: 12rem;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .features-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Light Theme Overrides */
[data-theme="light"] footer {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .hero-v2::before {
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
}

[data-theme="light"] .hero-visual img {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .navbar-floating {
    background: rgba(255, 255, 255, 0.8);
}