.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    background: linear-gradient(120deg, var(--color-emerald-600), var(--color-slate-900));
    border-radius: 1.5rem;
    margin: 2rem 0;
    padding: 3rem 1rem;
    color: #aeaaaa;
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.3rem;
    color: var(--color-slate-300);
    margin-bottom: 2rem;
}
.cta-btn {
    background: var(--color-emerald-500);
    color: #fff;
    font-size: 1.2rem;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.cta-btn:hover {
    background: var(--color-emerald-700);
}
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}
.feature-card {
    background: var(--color-slate-800);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    max-width: 340px;
    min-width: 260px;
    color: var(--color-slate-300);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: left;
}
.feature-card h3 {
    color: var(--color-emerald-400);
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}
.feature-card p {
    font-size: 1rem;
}
.footer-landing {
    text-align: center;
    color: var(--color-slate-400);
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.8;
}
@media (max-width: 700px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
    .hero h1 {
        font-size: 2rem;
    }
}
.logo-fs{
    max-width: 400px; 
    width: 90%; 
    margin-bottom: 3rem;
}