/* Landing Page Styles */

.landing-page {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    gap: 0;
}

/* Stats Bar */
.stats-bar {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stats-bar strong {
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 700;
    margin: 0 0 2.5rem 0;
    line-height: 1.3;
    color: var(--text-color);
}

/* CTA Buttons - Unified Styles */
.cta-button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--primary-button-color);
    color: white;
    border: none;
    border-radius: var(--radius-m);
    cursor: pointer;
    transition: all var(--transition-slow);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-hover-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-m);
    text-decoration: none;
}

/* CTA Button Variants */
.cta-button.large {
    padding: 1rem 3rem;
    font-size: 1.25rem;
}

.cta-button.secondary {
    background: var(--secondary-button-color);
}

.cta-button.secondary:hover {
    background: var(--secondary-hover-color);
}

/* Feature Sections */
.features-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

.feature-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: var(--overlay-dark-60);
    border-radius: var(--radius-xl);
    border: 1px solid var(--overlay-white-10);
    transition: all var(--transition-slow);
}

.feature-section:hover {
    background: var(--overlay-dark-80);
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-section.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-color);
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
    margin: 0;
}

.feature-content .cta-button {
    margin-top: 1rem;
    align-self: flex-start;
}

.feature-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 300px; */
}

.feature-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-m);
    background: var(--overlay-grey-50);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-placeholder {
    width: 100%;
    border-radius: var(--radius-m);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary-color);
}

.feature-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-xl);
}

/* Final CTA */
.final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: var(--text-color);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .feature-section,
    .feature-section.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-content {
        align-items: center;
    }
    
    .feature-content .cta-button {
        align-self: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem;
        min-height: 50vh;
        width: auto;
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-image img {
        max-height: 400px;
    }
    
    .cta-button.large {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .features-container {
        gap: 2rem;
    }
    
    .feature-section {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
    
    .stats-bar {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle,
    .hero-tagline {
        font-size: 1rem;
    }
    
    .feature-section {
        padding: 1.5rem 1rem;
    }
}
