/* FAQ Page Styles (matches modern site pages) */

:root {
    --faq-accent: #00c0c0;
    --faq-dark: #0f1419;
    --faq-dark-2: #1e293b;
    --faq-surface: #ffffff;
    --faq-muted: rgba(255, 255, 255, 0.85);
}

/* Hero */
.faq-hero {
    background: linear-gradient(135deg, var(--faq-dark) 0%, var(--faq-dark-2) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
    color: #fff;
    overflow: hidden;
}

.faq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 192, 192, 0.10) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
}

.faq-hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--faq-muted);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.faq-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 192, 192, 0.30);
    background: rgba(0, 192, 192, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.95rem;
}

.faq-hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.65;
    pointer-events: none;
}

.faq-hero-shape.shape-1 {
    top: 10%;
    right: 10%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(0, 192, 192, 0.16) 0%, rgba(0, 192, 192, 0) 70%);
}

.faq-hero-shape.shape-2 {
    bottom: 8%;
    right: 22%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0, 192, 192, 0.10) 0%, rgba(0, 192, 192, 0) 70%);
}

.faq-hero-shape.shape-3 {
    top: 30%;
    left: 10%;
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(0, 192, 192, 0.08) 0%, rgba(0, 192, 192, 0) 70%);
}

/* Content */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-card {
    background: var(--faq-surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-card-header {
    padding: 28px 28px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-card-header h2 {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 800;
    color: #111827;
}

.faq-card-header p {
    margin: 0.5rem 0 0;
    color: rgba(17, 24, 39, 0.75);
}

.faq-accordion {
    padding: 8px 8px 18px;
}

.faq-accordion .accordion-item {
    border: none;
    margin: 10px 10px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
    background: #ffffff;
    font-weight: 700;
    padding: 18px 18px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #0b1b22;
    background: rgba(0, 192, 192, 0.08);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 192, 192, 0.18);
}

.faq-accordion .accordion-body {
    padding: 18px;
    color: rgba(17, 24, 39, 0.88);
    line-height: 1.7;
}

/* Bottom CTA */
.faq-cta {
    background: linear-gradient(135deg, var(--faq-dark) 0%, var(--faq-dark-2) 100%);
    color: #fff;
    padding: 70px 0;
}

.faq-cta .cta-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 28px;
}

.faq-cta h3 {
    font-weight: 800;
    margin: 0 0 0.75rem;
}

.faq-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.faq-cta .btn {
    border-radius: 999px;
}

@media (max-width: 991.98px) {
    .faq-hero {
        padding: 120px 0 80px;
        min-height: 60vh;
    }
}

@media (max-width: 767.98px) {
    .faq-hero {
        padding: 110px 0 70px;
        min-height: 60vh;
    }

    .faq-card-header {
        padding: 22px 18px 14px;
    }

    .faq-accordion {
        padding: 8px 6px 14px;
    }

    .faq-accordion .accordion-item {
        margin: 10px 6px;
    }

    .faq-cta {
        padding: 60px 0;
    }

    .faq-cta .cta-card {
        padding: 22px;
        text-align: center;
    }
}
