.contact-faq {
    position: relative;
    padding: 0 0 clamp(84px, 10vw, 128px);
}

.contact-faq::before {
    content: "";
    position: absolute;
    inset: 36px 0 auto;
    height: clamp(220px, 28vw, 300px);
    background: linear-gradient(180deg, rgba(237, 241, 234, 0.62) 0%, rgba(237, 241, 234, 0) 100%);
    pointer-events: none;
}

.contact-faq__shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 3vw, 40px);
    align-items: start;
}

.contact-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--nv-color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.contact-faq__eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: currentColor;
    opacity: 0.72;
}

.contact-faq__eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(76, 86, 79, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(31, 35, 32, 0.05);
}

.contact-faq__title {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.contact-faq__intro {
    max-width: 30rem;
    margin: 20px 0 0;
    color: var(--nv-color-text-muted);
    line-height: 1.78;
}

.contact-faq__list {
    display: grid;
    gap: 14px;
}

.contact-faq__item {
    border: 1px solid rgba(76, 86, 79, 0.12);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 245, 240, 0.95) 100%);
    box-shadow: 0 20px 56px rgba(31, 35, 32, 0.05);
    overflow: hidden;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.contact-faq__item:hover,
.contact-faq__item[open] {
    border-color: rgba(76, 86, 79, 0.18);
    box-shadow: 0 28px 64px rgba(31, 35, 32, 0.08);
}

.contact-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.contact-faq__question::-webkit-details-marker {
    display: none;
}

.contact-faq__question i {
    font-size: 0.9rem;
    color: var(--nv-color-primary);
    transition: transform .24s ease;
}

.contact-faq__item[open] .contact-faq__question i {
    transform: rotate(45deg);
}

.contact-faq__answer {
    padding: 0 24px 22px;
    border-top: 1px solid rgba(76, 86, 79, 0.08);
}

.contact-faq__answer p {
    margin: 16px 0 0;
    color: var(--nv-color-text-muted);
    line-height: 1.74;
}

@media (max-width: 991px) {
    .contact-faq__shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-faq__title {
        max-width: 12ch;
        font-size: clamp(1.9rem, 8vw, 3rem);
    }

    .contact-faq__item {
        border-radius: 20px;
    }

    .contact-faq__question {
        padding: 20px;
    }

    .contact-faq__answer {
        padding: 0 20px 20px;
    }
}
