/* Landing Page Specific Styles */
.landing-page {
    background: #0f172a;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.landing-nav .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
}

.landing-nav .logo {
    height: 36px;
    border-radius: 6px;
}

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

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links .nav-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    color: #fff;
}

.hero-section {
    padding: 8rem 5% 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    background: radial-gradient(circle at 70% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
}

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

.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

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

.hero-btn {
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.social-proof {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.social-proof span {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-proof .logos {
    margin-top: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.glowing-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #3b82f6;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
}

.features-grid-section {
    padding: 5rem 5%;
    background: rgba(255,255,255,0.02);
}

.features-grid-section h2 {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.5;
    font-size: 0.95rem;
}

.pricing-section {
    padding: 5rem 5%;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    transform: scale(1.05);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.pricing-card .pricing-actions {
    margin-top: auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-header .price {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
}

.pricing-header .price span {
    font-size: 1rem;
    color: #94a3b8;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #cbd5e1;
}

.landing-footer {
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #64748b;
    font-size: 0.85rem;
}

.landing-footer p {
    margin: 0.5rem 0;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.3);
    z-index: 1;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover .feature-image {
    transform: scale(1.02);
}

.neon-text {
    color: #00fbff;
    text-shadow: 0 0 10px rgba(0, 251, 255, 0.5), 0 0 20px rgba(0, 251, 255, 0.3);
}

.glow-btn {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.8);
    background: rgba(37, 99, 235, 0.8) !important;
}

.glow-btn:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.8);
    background: #2563eb !important;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding-top: 6rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-actions {
        flex-direction: column;
    }
}
