.home-help {
    background: var(--color-footer-dark);
    color: var(--color-white);
    padding: 80px 20px;
    text-align: center;
}

.home-help__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.home-help__eyebrow {
    display: block;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-white-65);
}

.home-help__row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-help__row--bottom {
    margin-top: 18px;
    gap: 80px;
}

.home-help__link-item {
    display: inline-block;
    white-space: nowrap;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.3;
    color: var(--color-beige);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.home-help__link-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color-white-70);
    transition: width 0.25s ease;
}

.home-help__link-item:hover {
    color: var(--color-white);
}

.home-help__link-item:hover::after {
    width: 100%;
}

.home-help__cta {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white-80);
    text-decoration: none;
    border-bottom: 1px solid var(--color-white-40);
    padding-bottom: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.home-help__cta:hover {
    color: var(--color-white);
    border-color: var(--color-white);
}

@media (max-width: 1024px) {

    .home-help__row {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .home-help__row--bottom {
        margin-top: 14px;
        gap: 14px;
    }

    .home-help__link-item {
        white-space: normal;
        text-align: center;
    }
}