.faq-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    padding: 5rem 5% 4rem;
    text-align: center;
}
.faq-hero__inner { max-width: 640px; margin: 0 auto; }
.faq-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; color: #1e1e2e; margin: 1rem 0 .75rem; }
.faq-hero p { font-size: 1rem; color: #64748b; line-height: 1.7; }

.faq-body { padding: 5rem 5%; }
.faq-body__inner { max-width: 780px; margin: 0 auto; }

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: .75rem;
    overflow: hidden;
    transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(255,89,17,.12); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    color: #1e1e2e;
    cursor: pointer;
    transition: background .15s;
}
.faq-question:hover { background: #f8f9fc; }
.faq-question.open  { background: var(--primary-light); color: var(--primary); }
.faq-question__icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    color: #64748b;
    flex-shrink: 0;
    transition: all .2s;
}
.faq-question.open .faq-question__icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    padding: 0 1.4rem 1.2rem;
    font-size: .9rem;
    color: #64748b;
    line-height: 1.75;
}
.faq-answer.open { display: block; }

.faq-contact {
    background: linear-gradient(135deg, var(--primary-light), #fffdfb);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid var(--border);
}
.faq-contact h3 { font-size: 1.1rem; font-weight: 700; color: #1e1e2e; margin-bottom: .5rem; }
.faq-contact p  { font-size: .88rem; color: #64748b; margin-bottom: 1.2rem; }
.faq-contact a {
    padding: .65rem 1.6rem;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: background .2s;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.faq-contact a:hover { background: var(--primary-dark); }
