.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    gap: 1rem;
}

.hero h1 {
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.hero p {
    font-size: 1em;
    color: #555;
    max-width: 36ch;
    line-height: 1.5;
    margin: 0;
}

.hero-cta {
    margin-top: 0.5rem;
    padding: 0.6em 1.8em;
    font-size: 1em;
    font-weight: 600;
    background: #2d6ef5;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.hero-cta:hover {
    background: #1a58d4;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 2rem 1.5rem 4rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    background: #f1f3f8;
    color: #2d6ef5;
}

.feature-card h2 {
    font-size: 1em;
    font-weight: 700;
    margin: 0;
}

.feature-card p {
    font-size: 0.85em;
    color: #555;
    line-height: 1.5;
    margin: 0;
}
