/* faq-accordion – c-faq */

.c-faq {
    padding: 5rem 1.5rem;
}

.c-faq__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.c-faq__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.c-faq__headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.875rem;
}

.c-faq__intro {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.75;
    margin: 0 0 2rem;
    max-width: 720px;
}

.c-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.c-faq__item {
    border-bottom: 1px solid #e5e7eb;
}

.c-faq__item:first-child {
    border-top: 1px solid #e5e7eb;
}

.c-faq__question {
    margin: 0;
}

.c-faq__toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    gap: 1rem;
    font-family: inherit;
}

.c-faq__toggle:hover .c-faq__question-text {
    color: #2563eb;
}

.c-faq__icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.2s ease;
}

.c-faq__icon::before,
.c-faq__icon::after {
    content: '';
    position: absolute;
    background: #374151;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.c-faq__icon::before {
    width: 12px;
    height: 2px;
}

.c-faq__icon::after {
    width: 2px;
    height: 12px;
}

.c-faq__toggle[aria-expanded="true"] .c-faq__icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.c-faq__toggle[aria-expanded="true"] .c-faq__icon {
    background: #eff6ff;
}

.c-faq__question-text {
    transition: color 0.15s ease;
}

.c-faq__answer {
    margin: 0;
    overflow: hidden;
}

.c-faq__answer[hidden] {
    display: none;
}

.c-faq__answer-inner {
    padding: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
}
