/* ==========================================================================
   FAQ Hub — page styles
   Extends: main.css (.hero, .gold-divider tokens)
   Extends: service-nav-strip.css (.sh-nav base classes)
   Extends: faq-nav-strip.css (color treatments)
   Do NOT redeclare global tokens here
   ========================================================================== */

/* Hero — static image, utility page pattern
   background-image set here to keep CSP clean (no inline styles) */
.faq-hero {
    position: relative;
    display: grid;
    place-items: center;
    background-image: url('../../images/hero/faq-hero-brain.webp');
    background-size: cover;
    background-position: center;
    min-height: 72vh;
    padding: 140px 20px 100px;
    text-align: center;
    overflow: hidden;
}

.faq-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.50) 40%,
        rgba(0,0,0,0.75) 100%);
}

.faq-hero .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    text-align: center;
    padding: clamp(24px, 5vw, 48px);
}

.faq-hero h1 {
    font-size: clamp(56px, 10vw, 128px);
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: 28px;
    text-shadow: none;
}

.faq-hero .hero-tag {
    color: var(--electric-blue);
    margin-bottom: 24px;
    font-size: 16px;
    letter-spacing: 0.35em;
}

.faq-hero-sub {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.55;
    letter-spacing: 0.02em;
}

/* Gold divider */
.gold-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

/* Applied Influence thread block */
.faq-thread {
    background: var(--white);
    padding: 48px 20px;
    text-align: center;
}

.faq-thread-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-thread-headline {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: 12px;
}

.faq-thread-headline .faq-thread-word-dark {
    color: var(--dark-grey);
}

.faq-thread-headline .faq-thread-word-gradient {
    background: linear-gradient(135deg, var(--electric-blue) 0%, #6e40f0 50%, var(--electric-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.faq-thread-sub {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    color: var(--mid-grey);
    letter-spacing: 0.02em;
    margin-bottom: 28px;
}

.faq-thread-body {
    font-size: 19px;
    line-height: 1.80;
    color: rgba(0, 0, 0, 0.68);
    max-width: 820px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   FEATURED QUESTIONS — fully visible, not in accordions
   This is the AI-citable content layer
════════════════════════════════════════════ */
.faq-featured {
    background: var(--white);
    padding: 60px 20px 100px;
}

.faq-featured-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.32);
    display: block;
    margin-bottom: 16px;
}

.faq-section-headline {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: var(--dark-grey);
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: 16px;
}

.faq-section-sub {
    font-size: 18px;
    font-weight: 400;
    color: var(--mid-grey);
    margin-bottom: 52px;
    line-height: 1.5;
}

.faq-exposed-item {
    border-left: 4px solid var(--gold);
    padding: 36px 40px;
    margin-bottom: 4px;
    background: var(--white);
}

.faq-exposed-item + .faq-exposed-item {
    border-top: 2px solid rgba(254, 192, 39, 0.25);
    padding-top: 48px;
    margin-top: 8px;
}

.faq-exposed-q {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.faq-exposed-a p {
    font-size: 17px;
    line-height: 1.82;
    color: rgba(0, 0, 0, 0.70);
    margin-bottom: 16px;
}

.faq-exposed-a p:last-child {
    margin-bottom: 0;
}

.faq-cat-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(254, 192, 39, 0.10);
    padding: 4px 12px;
    border-radius: 12px;
    margin-top: 20px;
}

.faq-exposed-link {
    display: inline-block;
    margin-top: 16px;
    margin-left: 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-decoration: none;
}

.faq-exposed-link:hover {
    color: var(--dark-grey);
}

/* ═══════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════ */
.faq-cta {
    background: var(--black);
    padding: 120px 20px;
    text-align: center;
}

.faq-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-cta h2 {
    font-size: clamp(44px, 6vw, 96px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: 24px;
}

.faq-cta-gold {
    color: var(--gold);
}

.faq-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 48px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero h1 { font-size: 52px; }
    .faq-section-headline { font-size: 36px; }
    .faq-exposed-item { padding: 28px 24px; }
    .faq-cta h2 { font-size: 44px; }
}
