/* Scoped landing page styles
   - All rules must be namespaced under .landing-page
   - Reuse theme variables: --primary-color, --background-color-light, --text-color
*/

.landing-page .hero-section {
    padding: 6rem 0;
    background-color: var(--background-color-light);
}

.landing-page .hero-title {
    color: var(--text-color);
    margin-bottom: 0.6rem;
}

.landing-page .hero-subtitle {
    color: rgba(30,41,59,0.85); /* uses same tone as --text-color */
    margin-bottom: 1.25rem;
}

.landing-page .features-section {
    padding: 4rem 0;
}

.landing-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.landing-page .feature-card {
    padding: 1.6rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(16,40,90,0.04);
}

.landing-page .feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    margin: 0 auto 1rem auto;
}

.landing-page .cta-section {
    padding: 4rem 0;
}

.landing-page .final-cta-content h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.landing-page .cta-hero {
    /* reuse existing visual tokens; keep scoped rules minimal */
}

/* Responsive tweaks: keep consistent with theme breakpoints */
@media (max-width: 992px) {
    .landing-page .hero-section { padding: 4rem 1rem; }
}
