.faq-section {
    background: #2a2a2a;
    padding: clamp(2.2rem, 5vw, 4.2rem) 0;
}

.faq-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.8rem);
    display: grid;
    grid-template-columns: minmax(300px, 540px) minmax(0, 1fr);
    gap: clamp(1.2rem, 3vw, 3.3rem);
    align-items: start;
}

.faq-copy {
    color: #f2f2ee;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.3rem;
    min-height: 2rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: #58e71f;
    color: #10270d;
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1;
}

.faq-title {
    margin: 2rem 0 0.95rem;
    color: #59e91f;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: clamp(1.9rem, 2.9vw, 3.05rem);
    line-height: 0.95;
}

.faq-text {
    margin: 0 0 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.1rem, 1.25vw, 1.3rem);
    line-height: 1.4;
    max-width: 46ch;
}

.faq-accordion {
    display: grid;
    gap: 1.05rem;
    padding-top: 0.1rem;
    max-width: 780px;
    justify-self: center;
    width: 100%;
}

.faq-item {
    border-radius: 999px;
    background: #d8d8d8;
    color: #1f3713;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    transition: border-radius 0.22s ease, background-color 0.22s ease;
}

.faq-item--dashed {
    border: 0;
}

.faq-item.is-open {
    border-radius: 1.25rem;
    background: #dfdfdf;
    border: 2px dotted #121314;
}

.faq-item__button {
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 1rem 1.25rem 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    font-family: inherit;
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    line-height: 1;
    cursor: pointer;
    transition: color 0.18s ease;
}

.faq-item__button i {
    flex: 0 0 auto;
    font-size: 0.8em;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__button i {
    transform: rotate(90deg);
}

.faq-item__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.22s ease;
}

.faq-item.is-open .faq-item__panel {
    grid-template-rows: 1fr;
}

.faq-item__panel-inner {
    overflow: hidden;
    padding: 0 1.55rem;
    color: #293f1d;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    line-height: 1.35;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease, padding-bottom 0.18s ease;
    padding-bottom: 0;
    border-top: 0;
}

.faq-item.is-open .faq-item__panel-inner {
    opacity: 1;
    transform: translateY(0);
    border-top: 1px solid rgba(30, 55, 18, 0.35);
    margin-top: 0.2rem;
    padding-top: 0.75rem;
    padding-bottom: 1rem;
}

@media (max-width: 992px) {
    .faq-shell {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .faq-title {
        margin: 1.1rem 0 0.65rem;
    }

    .faq-text {
        max-width: 52ch;
    }

    .faq-accordion {
        gap: 0.8rem;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 1.8rem 0 2.1rem;
    }

    .faq-shell {
        padding-inline: 0.9rem;
        gap: 1rem;
    }

    .faq-badge {
        min-width: 4.3rem;
        min-height: 2rem;
        font-size: 0.82rem;
    }

    .faq-title {
        font-size: 1.9rem;
        margin-top: 1rem;
    }

    .faq-text {
        font-size: 1rem;
        line-height: 1.35;
        margin-bottom: 0.8rem;
    }

    .faq-accordion {
        gap: 0.65rem;
    }

    .faq-item__button {
        padding: 0.9rem 0.95rem 0.9rem 1.05rem;
        font-size: 1.08rem;
    }

    .faq-item__panel-inner {
        padding-inline: 1.05rem;
        font-size: 0.96rem;
    }

    .faq-item.is-open .faq-item__panel-inner {
        padding-bottom: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-item__button i,
    .faq-item__panel,
    .faq-item__panel-inner {
        transition: none;
    }
}
