.features {
    padding: 120px 0;
}

.section-top {

    text-align: center;

    margin-bottom: 70px;
}

.section-badge {

    display: inline-block;

    padding: 12px 20px;

    border-radius: 999px;

    background: #eef3ff;

    color: var(--main);

    font-size: 14px;

    font-weight: 700;
}

.section-title {

    margin-top: 25px;

    font-size:
            clamp(40px, 5vw, 64px);

    font-weight: 900;

    color: var(--main);
}

.features-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;
}

.feature-card {

    padding: 45px;

    border-radius: 36px;

    background: white;

    border:
            1px solid #eef2ff;

    transition: .4s;

    box-shadow:
            var(--shadow);
}

.feature-card:hover {

    transform: translateY(-10px);

    box-shadow:
            0 25px 60px rgba(32,47,91,.08);
}

.feature-icon {

    width: 80px;
    height: 80px;

    border-radius: 24px;

    background:
            linear-gradient(
                    135deg,
                    var(--main),
                    var(--main-light)
            );

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 32px;

    font-weight: 900;

    margin-bottom: 25px;
}

.feature-card h3 {

    font-size: 30px;

    color: var(--main);
}

.feature-card p {

    margin-top: 18px;

    color: #64748b;

    line-height: 1.7;

    font-size: 17px;
}