.faq-block {
    --faq-bg:        #f5f2ea;
    --faq-text-dark: #111111;
    --faq-text-body: #444444;
    --faq-border:    #cccccc;

    background-color: var(--faq-bg);
    width: 100%;
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 100px;
}

/* ── Header ── */
.faq__header {
    text-align: center;
    margin-bottom: 64px;
}

.faq__title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--faq-text-dark);
    max-width: 820px;
    margin: 0 auto 28px;
}

.faq__title * { font-size: inherit; }

.faq__subtitle {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--faq-text-body);
    max-width: 480px;
    margin: 0 auto;
    font-weight: 400;
}

.faq__subtitle * { font-size: inherit; }

/* ── Accordion list ── */
.faq__list {
    list-style: none;
    border-top: 1px solid var(--faq-border);
    padding: 0;
    margin: 0;
}

.faq__item {
    border-bottom: 1px solid var(--faq-border);
}

.faq__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq__question {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--faq-text-dark);
    line-height: 1.4;
}

/* ── Icon (plus / minus) ── */
.faq__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    position: relative;
    color: var(--faq-text-dark);
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__icon::before {
    width: 16px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq__icon::after {
    width: 1.5px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq__item.is-open .faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* ── Answer panel (CSS grid expand) ── */
.faq__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq__item.is-open .faq__panel {
    grid-template-rows: 1fr;
}

.faq__panel-inner {
    overflow: hidden;
}

.faq__answer {
    padding: 0 4px 22px;
    font-size: 0.97rem;
    line-height: 1.72;
    color: var(--faq-text-body);
}

.faq__answer * { font-size: inherit; }

/* ── Responsive ── */
@media (max-width: 600px) {
    .faq-inner {
        padding: 52px 24px 60px;
    }

    .faq__header {
        margin-bottom: 40px;
    }

    .faq__title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .faq__question {
        font-size: 0.97rem;
    }
}
