.lfs--faq-section {
    margin: 2rem 0;
    color: #07152f;
}

.lfs--faq-section,
.lfs--faq-section * {
    box-sizing: border-box;
}

.lfs--faq-section__inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: clamp(1rem, 2vw, 1.75rem);
    background: #fafafa;
    box-shadow: none;
}

.lfs--faq-section__header,
.lfs--faq-section__list {
    position: relative;
    z-index: 1;
}

.lfs--faq-section__header {
    width: 100%;
    margin-bottom: 1.4rem;
}

.lfs--faq-section__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 0.75rem;
    padding: 0.32rem 0.72rem;
    border-radius: 7px;
    background: rgba(254, 119, 37, 0.12);
    color: #fe7725;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
}

.lfs--faq-section__title {
    width: 100%;
    margin: 0;
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
    line-height: 1.15;
    font-weight: 800;
    color: #07152f;
}

.lfs--faq-section__intro {
    width: 100%;
    margin: 0.85rem 0 0;
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    line-height: 1.65;
    color: rgba(7, 21, 47, 0.78);
}

/* FAQ list */
.lfs--faq-section__list {
    display: grid;
    gap: 0.75rem;
    width: 100%;
}

/* FAQ item */
.lfs--faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(7, 21, 47, 0.025);
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease;
}

.lfs--faq-item[open] {
    border-color: rgba(45, 83, 160, 0.32);
    box-shadow: 0 12px 28px rgba(7, 21, 47, 0.055);
}

.lfs--faq-item__summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 3.45rem;
    padding: 0.95rem 1rem;
    cursor: pointer;
    list-style: none;
    background: rgba(45, 83, 160, 0.045);
    color: #07152f;
    font-weight: 800;
    line-height: 1.35;
}

.lfs--faq-item__summary::-webkit-details-marker {
    display: none;
}

.lfs--faq-item[open] .lfs--faq-item__summary {
    background: rgba(45, 83, 160, 0.08);
    border-bottom: 1px solid rgba(45, 83, 160, 0.16);
}

.lfs--faq-item__marker {
    flex: 0 0 auto;
    position: relative;
    display: inline-flex;
    width: 1.15rem;
    height: 1.15rem;
    border: 2px solid #2d53a0;
    border-radius: 4px;
}

.lfs--faq-item__marker::before,
.lfs--faq-item__marker::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: #2d53a0;
    border-radius: 999px;
}

.lfs--faq-item__marker::before {
    width: 0.55rem;
    height: 2px;
}

.lfs--faq-item__marker::after {
    width: 2px;
    height: 0.55rem;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.lfs--faq-item[open] .lfs--faq-item__marker::after {
    transform: scaleY(0);
    opacity: 0;
}

.lfs--faq-item__question {
    min-width: 0;
    font-size: 0.98rem;
}

/* Answer */
.lfs--faq-item__answer {
    background: #ffffff;
}

.lfs--faq-item__answer-inner {
    padding: 1rem;
}

.lfs--faq-item__answer-inner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(7, 21, 47, 0.78);
}

.lfs--faq-item__answer-inner p + p,
.lfs--faq-item__answer-inner p + .lfs--faq-item__list,
.lfs--faq-item__list + p {
    margin-top: 0.8rem;
}

.lfs--faq-item__list {
    margin: 0.85rem 0 0;
    padding-left: 1.35rem;
    color: rgba(7, 21, 47, 0.78);
}

.lfs--faq-item__list li {
    font-size: 0.95rem;
    line-height: 1.6;
}

.lfs--faq-item__list li + li {
    margin-top: 0.45rem;
}

@media (hover: hover) {
    .lfs--faq-item:hover {
        border-color: rgba(45, 83, 160, 0.28);
        box-shadow: 0 10px 24px rgba(7, 21, 47, 0.05);
    }

    .lfs--faq-item__summary:hover {
        background: rgba(45, 83, 160, 0.075);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .lfs--faq-section {
        margin: 1.5rem 0;
    }

    .lfs--faq-section__inner {
        padding: 1rem;
    }

    .lfs--faq-item__summary {
        align-items: flex-start;
        min-height: auto;
        padding: 0.9rem;
    }

    .lfs--faq-item__answer-inner {
        padding: 0.9rem;
    }
}