.atic-faq {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.atic-faq__item {
    border: 1px solid #dbe2ef;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(48, 102, 190, 0.05) 0%, rgba(48, 102, 190, 0.02) 100%),
        #ffffff;
    box-shadow: 0 10px 24px rgba(10, 18, 43, 0.08);
    overflow: clip;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.atic-faq__item:hover {
    transform: translateY(-1px);
    border-color: rgba(53, 197, 111, 0.45);
    box-shadow: 0 16px 30px rgba(10, 18, 43, 0.12);
}

.atic-faq__item.is-open {
    border-color: rgba(53, 197, 111, 0.55);
    box-shadow: 0 18px 34px rgba(10, 18, 43, 0.14);
}

.atic-faq__heading {
    margin: 0;
}

.atic-faq__heading button.atic-faq__trigger {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
}

.atic-faq__question {
    margin: 0;
    color: #0a122b;
    font-family: "Poppins", sans-serif;
    font-size: clamp(17px, 1.2vw, 21px);
    font-weight: 700;
    line-height: 1.3;
}

.atic-faq__icon {
    position: relative;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid currentColor;
    color: #35c56f;
    transition: transform 0.2s ease, color 0.2s ease;
}

.atic-faq__icon::before,
.atic-faq__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.atic-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.atic-faq__item.is-open .atic-faq__icon {
    transform: rotate(180deg);
}

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

.atic-faq__panel {
    border-top: 1px solid rgba(10, 18, 43, 0.08);
}

.atic-faq__answer {
    padding: 16px 22px 22px;
    color: #334155;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

.atic-faq__answer p {
    margin-top: 0;
    margin-bottom: 12px;
}

.atic-faq__answer p:last-child {
    margin-bottom: 0;
}

.atic-faq__trigger:focus-visible {
    outline: 3px solid rgba(48, 102, 190, 0.4);
    outline-offset: -3px;
}

@media (max-width: 767px) {
    .atic-faq {
        gap: 12px;
    }

    .atic-faq__trigger {
        padding: 14px 14px;
        gap: 10px;
    }

    .atic-faq__question {
        font-size: 16px;
    }

    .atic-faq__icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .atic-faq__answer {
        padding: 12px 14px 14px;
        font-size: 16px;
        line-height: 1.6;
    }
}