.hero {
    min-height: calc(80vh - 78px);
    display: grid;
    place-items: center;
    padding: 44px 0 30px;
    text-align: center;
}

.hero__title {
    font-size: 5rem;
    letter-spacing: -0.8px;
    margin: 0;
    font-weight: 600;
}

.hero__subtitle {
    margin: 10px 0 0;
    color: #667085;
    font-size: 20px;
}

.features {
    width: min(980px, 100%);
    margin: 26px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature {
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    padding: 20px;
    transition: transform .16s ease, border-color .16s ease;
    text-align: left;
}

.feature:hover {
    transform: translateY(-4px);
    border-color: rgba(46,166,255,0.35);
}

.feature__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    border: 1px solid rgba(15,23,42,0.10);
    background: rgba(255,255,255,0.95);
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}

.icon {
    font-size: 24px;
    line-height: 1;
}

.icon-dumbbell::before {
    content: "\f44b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #f59e0b;
}

.icon-moon::before {
    content: "\f186";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #7c3aed;
}

.icon-apple::before {
    content: "\f5d1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #10b981;
}

.feature h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
}

.feature p {
    margin: 0;
    color: #667085;
    line-height: 1.5;
}

.hero__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 22px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .features {
        grid-template-columns: 1fr;
    }

    .feature {
        text-align: left;
    }

    .hero__title {
        font-size: 3.2rem;
    }
}
