/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-label {
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

.section-label::before,
.section-label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.section-label::before {
    right: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.section-label::after {
    left: 100%;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 20px;
}

.title-primary {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowText 2s ease-in-out infinite;
}

@keyframes glowText {
    0%,
    100% {
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
    }

    50% {
        text-shadow: 0 0 40px rgba(0, 255, 0, 0.25);
    }
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.9;
    color: var(--color-text-light);
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.glow-divider {
    width: 80px;
    height: 3px;
    margin: 16px auto 0;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        var(--secondary-color),
        transparent
    );
    border-radius: 2px;
}

/* ===== FAQ ===== */
.faq-grid {
    max-width: min(800px, 100%);
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 10px;
}

.faq-item:hover {
    transform: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question-text {
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #ffffff;
    line-height: 1.5;
}

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.08);
    border: 1px solid rgba(0, 255, 0, 0.2);
    color: var(--primary-color);
    font-size: 12px;
    transition: all 0.3s ease;
}

.faq-toggle.open {
    transform: rotate(45deg);
    background: rgba(0, 255, 0, 0.15);
    border-color: var(--primary-color);
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 576px) {
    .faq-question {
        padding: 16px;
        gap: 12px;
    }

    .faq-question-text {
        font-size: 13px;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

[x-cloak] {
    display: none !important;
}
