.faq-cta-section {
    background: var(--color-white);
    color: var(--color-black);
padding-block: 60px;
}

.faq-cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

/* ===== FAQ колонка ===== */
.faq-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 32px;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    cursor: pointer;
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-black);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.is-open .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

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

.faq-answer-inner {
    overflow: hidden;
    min-height: 0;
}

.faq-answer {
    padding-bottom: 20px;
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

/* ===== CTA колонка ===== */
.faq-cta-column {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-color: #0f2137;
}

.faq-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

.faq-cta-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: var(--color-white);
}

.faq-cta-title {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-cta-subtitle {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 380px;
}

.faq-cta-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .faq-cta-grid {
        grid-template-columns: 1fr;
    }
    .faq-cta-column {
        min-height: 320px;
    }
}