.fade-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.6s var(--ease-elegant) forwards;
}

.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-header {
    text-align: center;
    padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 2rem) clamp(2rem, 4vw, 3rem);
    max-width: 800px;
    margin: 0 auto;
}

.faq-logo {
    height: clamp(35px, 6vw, 45px);
    width: auto;
    margin-bottom: 2rem;
}

.faq-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-title span {
    color: var(--gold);
}

.faq-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--muted-dark);
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(0.8rem, 3vw, 1rem) clamp(1.2rem, 4vw, 2rem) clamp(2.5rem, 5vw, 4rem);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease-smooth);
    background: var(--white);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    padding: clamp(1.2rem, 3vw, 1.5rem);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    transition: all 0.3s var(--ease-smooth);
}

.faq-question span {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s var(--ease-smooth);
}

.faq-question i {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--muted-dark);
    transition: all 0.4s var(--ease-elegant);
    flex-shrink: 0;
}

.faq-item.active .faq-question span {
    color: var(--gold);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-elegant), padding 0.3s var(--ease-smooth);
    padding: 0 clamp(1.2rem, 3vw, 1.5rem);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: clamp(1.2rem, 3vw, 1.5rem);
}

.faq-answer p {
    font-size: clamp(0.9rem, 2.5vw, 0.95rem);
    color: var(--muted-dark);
    line-height: 1.7;
}

.faq-answer p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cta-section {
    max-width: 800px;
    margin: 2rem auto clamp(3rem, 6vw, 5rem);
    padding: 0 clamp(1.2rem, 4vw, 2rem);
    text-align: center;
}

.cta-box {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border-radius: 24px;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.cta-box h3 {
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: clamp(0.95rem, 2.5vw, 1rem);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

@media (min-width: 769px) and (max-width: 1024px) {
    .faq-header {
        padding: 4.5rem 2rem 2.5rem;
    }

    .faq-container {
        padding: 1rem 2rem 3rem;
    }

    .faq-question {
        padding: 1.3rem;
    }

    .cta-box {
        padding: 3rem 2.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .faq-header {
        padding: 4rem 1.5rem 2rem;
    }

    .faq-container {
        padding: 1rem 1.5rem 3rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 1.2rem;
    }

    .cta-box {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.8rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-container {
        padding: 0.5rem 1rem 2.5rem;
    }

    .faq-item {
        border-radius: 12px;
        margin-bottom: 0.8rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.4rem;
    }
}