/* ============================================================
   Frequently Asked Questions — Hero + Search
   ============================================================ */

.huc-faq-hero {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 6rem;
    background:
        radial-gradient(65% 85% at 12% 0%, rgba(var(--huc-orange-rgb), 0.2) 0%, rgba(var(--huc-orange-rgb), 0) 60%),
        radial-gradient(70% 90% at 100% 100%, rgba(var(--huc-orange-rgb), 0.12) 0%, rgba(var(--huc-orange-rgb), 0) 60%),
        linear-gradient(160deg, var(--huc-blue-clr) 0%, #0b1626 55%, var(--huc-blue-clr) 100%);
}

.huc-faq-hero__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.huc-faq-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.85rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(var(--huc-orange-rgb), 0.16);
    border: 1px solid rgba(var(--huc-orange-rgb), 0.35);
    color: var(--huc-orange-clr);
    font-size: 0.8rem;
    font-weight: 700;
}

.huc-faq-hero__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-secondary);
    font-size: clamp(1.75rem, 1.3rem + 2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--huc-white-clr);
}

.huc-faq-hero__title-highlight {
    color: var(--huc-orange-clr);
}

.huc-faq-hero__subtitle {
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(var(--huc-white-rgb), 0.68);
}

/* ---- Search bar ---- */
.huc-faq-search-wrap {
    position: relative;
    z-index: 2;
    margin-top: -40px;
    margin-bottom: 3rem;
}

.huc-faq-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 640px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    background-color: var(--huc-white-clr);
    border-radius: 999px;
    box-shadow: 0 20px 45px rgba(var(--huc-blue-rgb), 0.18);
}

.huc-faq-search:focus-within {
    box-shadow: 0 20px 45px rgba(var(--huc-blue-rgb), 0.18), 0 0 0 3px rgba(var(--huc-orange-rgb), 0.18);
}

.huc-faq-search i {
    flex-shrink: 0;
    color: var(--huc-orange-clr);
    font-size: 1.05rem;
}

.huc-faq-search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--huc-darkGray-clr);
}

.huc-faq-search input::placeholder {
    color: var(--huc-gray-clr);
    font-weight: 500;
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
    .huc-faq-hero {
        padding: 2.5rem 0 5rem;
    }

    .huc-faq-search-wrap {
        margin-top: -32px;
        margin-bottom: 2.25rem;
    }

    .huc-faq-search {
        padding: 0.85rem 1.15rem;
    }
}

@media (max-width: 420px) {
    .huc-faq-hero__title {
        font-size: 1.65rem;
    }
}
