/* FAQ Section */
.faq {
    background-color: var(--nord6);
    padding: 3rem 1rem;
    max-width: none;
}

@media (min-width: 640px) {
    .faq {
        padding: 4rem 2rem;
    }
}

@media (min-width: 768px) {
    .faq {
        padding: 5rem 2rem;
    }
}

.faq-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.faq-header h2 {
    color: var(--color-heading);
    font-size: var(--text-4xl);
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-question {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-heading);
    opacity: 0.8;
    transition: opacity var(--duration-normal) var(--ease-default);
}

.faq-trigger:hover .faq-question {
    opacity: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.faq-icon .lucide {
    width: 16px;
    height: 16px;
    color: var(--color-heading);
    transition: transform var(--duration-slow) var(--ease-default);
}

.faq-item.active .faq-icon .lucide {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-slow) var(--ease-default);
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-content p {
    color: var(--color-heading);
    opacity: 0.7;
    font-size: var(--text-body);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    padding-right: 3.5rem;
}

.faq-content p:last-child {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
    }

    .faq-header h2 {
        font-size: var(--text-5xl);
        max-width: 300px;
    }

    .faq-trigger {
        padding: 1.25rem 0;
    }

    .faq-question {
        font-size: var(--text-md);
    }

    .faq-icon {
        width: 48px;
        height: 48px;
    }
}
