.home-service-card strong {
    display: block;
    font-size: clamp(4rem, 10vw, 7rem);
    line-height: .9;
    color: var(--brand-black);
}

.home-service-card .eyebrow {
    margin-top: 1rem;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1rem;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .8rem 1.1rem;
    border: 2px solid #000;
    border-radius: 999px;
    background: #ffd400;
    color: #000;
    font-weight: 900;
    text-decoration: none !important;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.icon-link:hover,
.icon-link:focus-visible {
    background: #000;
    color: #ffd400;
    transform: translateY(-1px);
}

.icon {
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
    fill: currentColor;
}

.home-section {
    background: #f4f4f1;
}