/* ================================================================
   TerraFloor — faq.css
   ================================================================ */

   .faq-section {
    padding-block: 100px;
}

.faq-section__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    max-width: 613px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--color-brown);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.faq-section__eyebrow-line {
    display: block;
    width: 19px;
    height: 0;
    border-top: 2px solid var(--color-brown);
    flex-shrink: 0;
}

.faq-section__title {
    color: var(--color-black);
    font-size: 45px;
    line-height: 51px;
    font-weight: 600;
    margin: 0;
}

/* ---- Список ---- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 946px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(180deg, #fdf9f6 0%, #f8f8f8 100%);
    border-radius: 20px;
    overflow: hidden;
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 17px;
    padding: 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-item__question {
    color: var(--color-black);
    font-size: 21px;
    line-height: 24px;
    font-weight: 600;
    flex: 1;
}

.faq-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--color-black);
    color: var(--color-black);
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

/* Плюс превращается в крестик при открытии */
.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
    background: var(--color-brown);
    border-color: var(--color-brown);
    color: var(--color-white);
}

.faq-item__content {
    padding: 0 30px 30px;
}
.faq-item__content p {
    color: var(--color-gray);
    font-size: 15px;
    line-height: 21px;
    margin: 0;
}

/* ================================================================
   Адаптив
   ================================================================ */
@media (max-width: 1280px) {
    .faq-section__title { font-size: 34px; line-height: 40px; }
}

@media (max-width: 768px) {
    .faq-section { padding-block: 50px; }
    .faq-section__head { margin-bottom: 22px; gap: 22px; }
    .faq-section__title { font-size: 28px; line-height: 32px; }
    .faq-item__trigger { padding: 30px; gap: 12px; }
    .faq-item__question { font-size: 16px; line-height: 18px; }
    .faq-item__content { padding: 0 30px 30px; }
.faq-item__content p { 
    font-size: 14px;
    line-height: 18px;
  
}

.faq-section__eyebrow {
    font-size: 14px;
    line-height: 18px; 
}






}