/* ═══════════════════════════════════════
   FAQ PAGE STYLES
   ═══════════════════════════════════════ */

/* Hero */
.faq-hero {
    background: #1a1a1a;
    padding: 80px 20px 60px;
    text-align: center;
}

.faq-hero__title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.faq-hero__subtitle {
    font-size: 16px;
    color: #888;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
    font-family: inherit;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding-right: 20px;
}

.faq-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #888;
}

.faq-item.is-open .faq-arrow {
    transform: rotate(180deg);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
    padding: 0 25px 22px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* CTA */
.faq-cta {
    text-align: center;
    padding: 20px 0 60px;
}

.faq-cta__text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* Button */
.btn--dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.btn--dark:hover {
    background: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero__title {
        font-size: 32px;
    }
}