/* ============================================================
   faq.css  –  Hurd Solutions FAQ page
   Brand: teal #00897B | pink #C2185B | navy #1A1A2E
   Only the hero is custom here — the FAQ grid itself reuses
   .services-section / .tiers-grid / .tier-card from the shared
   services stylesheets, same as web-hosting.php.
   ============================================================ */

.faq-hero {
    background: var(--color-navy, #1A1A2E);
    color: #fff;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.faq-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 48px;
    background: var(--color-bg, #F5F7F6);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.faq-hero__inner {
    max-width: 760px;
}

.faq-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 0;
}

.faq-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    max-width: 560px;
}
