/* Переменные */
:root {
    --ds-accent: #E3CF9D; /* Ваш золотой */
    --ds-bg-light: #ffffff;
    --ds-text-dark: #111111;
}

.faq-section-wrapper {
    max-width: 1570px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Заголовок */
.faq-title-main {
    text-align: center;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Сетка */
.faq-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Карточки */
.faq-card {
    background: var(--ds-bg-light);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    height: fit-content;
}

.faq-card-header {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question-text {
    font-weight: 700;
    font-size: 17px;
    color: var(--ds-text-dark);
    line-height: 1.4;
}

/* Кнопка с плюсом и пульсацией */
.faq-btn-wrapper {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-plus-icon {
    width: 36px;
    height: 36px;
    background-color: var(--ds-accent);
    border-radius: 50%;
    position: relative;
    z-index: 5;
}

.faq-plus-icon::before, .faq-plus-icon::after {
    content: '';
    position: absolute;
    background: #111;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq-plus-icon::before { width: 14px; height: 2px; }
.faq-plus-icon::after { width: 2px; height: 14px; transition: 0.3s; }

/* Пульсация мягкой заливкой */
.faq-pulse-fill {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    background-color: var(--ds-accent);
    border-radius: 50%;
    z-index: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: faq-pulse-anim 2.5s infinite;
}

@keyframes faq-pulse-anim {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    70% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

/* Аккордеон */
.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.faq-card.active .faq-plus-icon::after { opacity: 0; }
.faq-card.active .faq-card-body { max-height: 500px; }

/* Показать еще */
.faq-more-trigger {
    display: none;
    text-align: center;
    color: var(--ds-accent);
    margin-top: 30px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 10px;
}

/* Telegram кнопка */
.faq-telegram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 60px auto 0;
    width: fit-content;
    padding: 18px 45px;
    border: 1px solid var(--ds-accent);
    border-radius: 5px;
    color: var(--ds-accent);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
    white-space: nowrap;
}

.faq-telegram-link:hover {
    background: var(--ds-accent);
    color: #111;
}

.faq-tg-icon { width: 22px; height: 22px; fill: currentColor; }

/* МОБИЛЬНАЯ ВЕРСИЯ */
@media (max-width: 992px) {
    .faq-title-main { font-size: 28px; margin-bottom: 30px; }
    .faq-grid-container { grid-template-columns: 1fr; gap: 12px; }
    
    .faq-card-header { padding: 14px 18px; }
    .faq-question-text { font-size: 14px; }
    
    .faq-more-trigger { display: block; font-size: 14px; }
    .mobile-hidden { display: none; }
    .mobile-hidden.is-active { display: block; }

    /* Кнопка ТГ в одну строку с равными отступами */
    .faq-telegram-link {
        padding: 15px 20px; 
        font-size: 12px;
        gap: 10px;
        width: calc(100% - 40px);
        max-width: 320px;
        margin-top: 40px;
    }
    .faq-tg-icon { width: 18px; height: 18px; }
}