.faq {
    padding: 100px 24px;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 50% at 100% 20%, rgba(72, 32, 159, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 35% 40% at 0% 80%, rgba(224, 49, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 56px;
}

.faq .section-eyebrow { color: var(--color-orange); }
.faq .section-eyebrow::before { background: var(--color-orange); }
.faq .section-heading { color: #111111; }
.faq .section-sub { color: #666666; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.is-open {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
}

.faq-question-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.4;
}

.faq-item.is-open .faq-question-text {
    color: var(--color-orange);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
    background: var(--color-orange);
    border-color: var(--color-orange);
}

.faq-item.is-open .faq-icon svg {
    transform: rotate(45deg);
}

.faq-item.is-open .faq-icon svg path {
    stroke: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: #555555;
    line-height: 1.7;
}

.faq-answer-inner strong {
    color: #111111;
    font-weight: 600;
}

@media (max-width: 767px) {
    .faq { padding: 72px 20px; }
    .faq-question { padding: 20px; }
    .faq-answer-inner { padding: 0 20px 20px; }
    .faq-header { margin-bottom: 40px; }
}