:root {
  --clr-bg:       #0f0e0c;
  --clr-card:     #201e1a;
  --clr-border:   #2e2b26;
  --clr-gold:     #f1ac47;
  --clr-gold-lt:  #f1ac47;
  --clr-text:     #d4cfc7;
  --clr-muted:    #7a7368;
  --clr-white:    #f5f0e8;
  --radius:       6px;
  --transition:   0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-section {
    background: var(--clr-bg);
    position: relative;
    overflow: hidden;
}
.faq-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.faq-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -60px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(192,57,43,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.faq-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.5s forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.05s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.11s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.17s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.23s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.29s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.35s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.41s;
}

.faq-item:nth-child(8) {
    animation-delay: 0.47s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.open {
    border-color: rgba(201, 168, 76, 0.35);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--clr-white);
    font-size: 1.07rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color var(--transition);
}

.faq-item.open .faq-q {
    color: var(--clr-gold-lt);
}

.faq-num {
    font-size: 1.1rem;
    color: var(--clr-gold);
    opacity: 0.5;
    min-width: 28px;
    flex-shrink: 0;
    transition: opacity var(--transition);
}

.faq-item.open .faq-num {
    opacity: 1;
}

.faq-q-text {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #b3b3b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    color: #b3b3b3;
}

.faq-item.open .faq-icon {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #0f0e0c;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
    max-height: 400px;
}

.faq-a-inner {
    margin: 0 26px;
    padding: 16px 0 22px 42px;
    font-size: 0.95rem;
    color: #cfcfcf;
    line-height: 1.8;
    border-top: 1px solid var(--clr-border);
}

@media (max-width: 600px) {
    .faq-q {
        padding: 16px 18px;
        font-size: 0.97rem;
    }

    .faq-num {
        display: none;
    }

    .faq-a-inner {
        padding-left: 0;
        margin: 0 18px;
    }
}
