.faq-hero {
    background: var(--ta-bg);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}
.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 80% 30%, rgba(10,132,255,0.10) 0%, transparent 65%),
        radial-gradient(ellipse 30% 40% at 5% 70%,  rgba(10,132,255,0.07) 0%, transparent 60%);
    pointer-events: none;
}
.faq-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ta-blue), transparent);
}

.rh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--ta-blue);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: slideUp 0.6s 0.1s ease forwards;
}
.rh-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--ta-blue);
}

.rh-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: slideUp 0.6s 0.2s ease forwards;
}
.rh-title span {
    background: linear-gradient(135deg, var(--ta-blue), #5cc8ff, var(--ta-blue));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.rh-sub {
    color: var(--ta-muted);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUp 0.6s 0.3s ease forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* FAQ Sections */
.faq-section-anchor { display: block; position: relative; top: -80px; visibility: hidden; }
.faq-section {
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section--alt {
    position: relative;
    background: #080810;
    overflow: hidden;
}

.faq-section--alt::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(10, 132, 255, 0.12),
        transparent 60%
    );
    transform: rotate(8deg);
    pointer-events: none;
}
.faq-section--alt::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ta-blue), transparent);
}
.faq-category-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.faq-category-icon--cyber { background: rgba(10,132,255,0.12); color: #0a84ff; border: 1px solid rgba(10,132,255,0.2); }
.faq-category-icon--dev { background: rgba(48,209,88,0.12); color: #30d158; border: 1px solid rgba(48,209,88,0.2); }
.faq-category-icon--audit { background: rgba(255,159,10,0.12); color: #ff9f0a; border: 1px solid rgba(255,159,10,0.2); }
.faq-category-icon--consult { background: rgba(10,132,255,0.12); color: #0a84ff; border: 1px solid rgba(10,132,255,0.2); }
.faq-category-icon--general { background: rgba(128,128,160,0.12); color: #8080a0; border: 1px solid rgba(128,128,160,0.2); }

/* Accordion Items */
.faq-accordion-item {
    background: #0d0d16;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.2s ease;
}
.faq-accordion-item:hover {
    border-color: rgba(10,132,255,0.2);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.faq-question:hover {
    background: rgba(255,255,255,0.02);
}
.faq-question-text {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    letter-spacing: -0.01em;
}
.faq-question-icon {
    color: #0a84ff;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}
.faq-question-icon.open {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}
.faq-answer.open {
    padding: 0 1.5rem 1.25rem 1.5rem;
    max-height: 800px;
}
.faq-answer p {
    color: #a0a0b5;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.sv-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #07070f 0%, #0c0e1c 100%);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.sv-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.sv-cta-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.sv-cta-sub {
    color: #8080a0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.ta-btn-primary--lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}