/* ============================================================
   Hero Section
   ============================================================ */

.huc-hero {
    --huc-hero-accent: var(--huc-accent-clr);
    --huc-hero-accent-soft: rgba(var(--huc-accent-rgb), 0.12);
    --huc-hero-border: color-mix(in srgb, var(--huc-darkGray-clr) 10%, transparent);

    position: relative;
    display: flex;
    align-items: center;
    align-items: safe center;
    min-height: calc(100vh - 112px);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: var(--huc-bg-clr);
    overflow-x: hidden;
    overflow-y: visible;
}

.huc-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(to right,
            rgba(254, 253, 253, 0.82) 0%,
            rgba(254, 253, 253, 0.55) 45%,
            rgba(254, 253, 253, 0.12) 100%);
}

.huc-hero>.container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.huc-hero-row {
    align-items: center;
    align-items: safe center;
}

@media (max-width: 767.98px) {
    .huc-hero::after {
        background-image: linear-gradient(to bottom,
                rgba(254, 253, 253, 0.9) 0%,
                rgba(254, 253, 253, 0.72) 60%,
                rgba(254, 253, 253, 0.45) 100%);
    }
}

/* ---- Left column ---- */
.huc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 1rem;
    margin-bottom: 1.25rem;
    border: 1.5px solid var(--huc-hero-accent);
    border-radius: 999px;
    background-color: var(--huc-white-clr);
    color: var(--huc-hero-accent);
    font-size: 0.7190rem;
    font-weight: 600;
    box-shadow: 0 2px 0 #c4c3c0;
}

.huc-hero-title {
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 1.15rem + 2.6vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--huc-darkGray-clr);
}

.huc-hero-title__highlight {
    display: block;
    color: var(--huc-orange-clr);
}

.huc-hero-desc {
    margin-bottom: 2rem;
    max-width: 540px;
    color: var(--huc-black-clr);
    font-size: 0.82rem;
    line-height: 1.6;
    font-weight: 500;
}

.huc-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.40rem;
}

.huc-hero-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: var(--huc-hero-accent-soft);
    color: var(--huc-hero-accent);
    font-size: 1.065rem;
}

.huc-hero-feature__text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
}

.huc-hero-feature__text strong {
    font-size: 0.735rem;
    font-weight: 700;
    color: var(--huc-darkGray-clr);
}

.huc-hero-feature__text small {
    font-size: 0.65rem;
    color: var(--huc-gray-clr);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .huc-hero {
        padding: 1.5rem 0 2rem;
    }

    .huc-hero-content {
        text-align: center;
    }

    .huc-hero-desc {
        margin-inline: auto;
    }

    .huc-hero-feature {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .huc-hero-title {
        font-size: 1.75rem;
    }

    .huc-hero-desc {
        font-size: 0.9375rem;
    }
}