/* Landing Page Styles */

/* Hero Section */
.landing-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    margin-bottom: 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-highlight {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    margin-bottom: 1.5rem;
}

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

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Section Styles */
.landing-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-text {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Benefit Cards */
.benefit-card {
    padding: 2rem;
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* SEO Content Block */
.seo-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.seo-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.seo-content p {
    margin-bottom: 1.5rem;
}

.seo-content ul {
    margin-bottom: 1.5rem;
}

.seo-content li {
    margin-bottom: 0.75rem;
}

.seo-content strong {
    color: var(--text-color);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-light {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .landing-hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-badge {
        text-align: center;
    }

    .landing-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Footer for Landing Page */
.footer {
    background: var(--card-bg);
    color: var(--text-muted);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Dark Mode Adjustments */
[data-theme="dark"] .landing-hero,
[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

[data-theme="dark"] .hero-highlight {
    color: #ffd700;
}

[data-theme="dark"] .benefit-card {
    background: #1a202c;
    border-color: #2d3748;
}

[data-theme="dark"] .benefit-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
