.faq-section {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 191, 71, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 243, 0.94));
    box-shadow: var(--linix-shadow-soft);
}

.faq-section::before,
.faq-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.faq-section::before {
    top: 28px;
    right: 28px;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 95, 127, 0.34) 10%, transparent 12%) 0 0 / 16px 16px;
}

.faq-section::after {
    left: -20px;
    bottom: -20px;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(45, 212, 191, 0.16), transparent 70%);
}

.faq-section__header,
.faq-list {
    position: relative;
    z-index: 1;
}

.faq-section__header {
    max-width: 760px;
    margin-bottom: 26px;
}

.faq-section__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.faq-section__title {
    color: var(--heading-color);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.faq-section__description {
    max-width: 640px;
    margin-top: 14px;
    color: var(--text-color-soft);
    line-height: 1.6;
}

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

.faq-item {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--primary-color-soft);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
}

.faq-item[open] {
    border-color: var(--primary-color-border);
    box-shadow: 0 22px 48px var(--primary-color-shadow-tiny);
}

.faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    list-style: none;
    cursor: pointer;
}

.faq-item__summary::-webkit-details-marker {
    display: none;
}

.faq-item__summary-text {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.6;
}

.faq-item__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 999px;
    color: var(--primary-color);
    background: var(--primary-color-soft);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item[open] .faq-item__icon {
    transform: rotate(180deg);
    color: #ffffff;
    background: var(--primary-color);
}

.faq-item__content {
    padding: 0 24px 24px;
    color: var(--text-color-soft);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .faq-section {
        padding: 24px;
        border-radius: 24px;
    }

    .faq-section__title {
        font-size: 28px;
    }

    .faq-item__summary {
        padding: 18px 18px 18px 20px;
    }

    .faq-item__summary-text {
        font-size: 17px;
    }

    .faq-item__icon {
        width: 38px;
        height: 38px;
    }

    .faq-item__content {
        padding: 0 20px 20px;
    }
}
