/* ==========================================================================
    Страница FAQ
   ========================================================================== */

.faq-hero {
    position: relative;
    width: 100%;
    min-height: 75vh;
    padding: 100px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(17, 17, 16, 0.8) 0%, rgba(41, 40, 41, 0.2) 100%);
}

.faq-hero__title {
    color: #E4AD2B;
    font-size: 150px;
    font-family: "A La Russ", sans-serif;
    font-weight: 500;
    line-height: 142.50px;
    text-shadow: 0px 5px 4px rgba(0, 0, 0, 0.81);
    margin: 0;
}

.faq-hero__subtitle {
    color: white;
    font-size: 36px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 400;
    line-height: 50px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.81);
    margin: 20px 0;
}

/* ==========================================================================
    Контейнер FAQ
   ========================================================================== */

.faq-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-section {
    margin-bottom: 60px;
}

.faq-section__title {
    color: #E4AD2B;
    font-size: 36px;
    font-family: "UNCAGE", sans-serif;
    font-weight: 700;
    line-height: 45px;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(228, 173, 43, 0.3);
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-section__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: #E4AD2B;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.5));
}

/* ==========================================================================
    Элементы FAQ
   ========================================================================== */

.faq-item {
    margin-bottom: 15px;
    border: 2px solid rgba(228, 173, 43, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(228, 173, 43, 0.5);
}

.faq-item__question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-item__question:hover {
    background: rgba(228, 173, 43, 0.05);
}

.faq-item__question span:first-child {
    color: white;
    font-size: 20px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 500;
    line-height: 28px;
    flex: 1;
    padding-right: 20px;
}

.faq-item__icon {
    color: #E4AD2B;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
    min-width: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform-origin: center center;
    flex-shrink: 0;
}

.faq-item_active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item_active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 20px 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

.faq-item__answer br {
    margin: 8px 0;
}

/* Lucida Sans Unicode — жирный */
.faq-hero__subtitle,
.faq-item__question span:first-child,
.faq-item__answer p {
    font-weight: 700;
}
