.faq-page-container {
    padding-bottom: 100px;
}

.faq-hero {
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.faq-sections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}

.faq-footer-cta {
    text-align: center;
    margin-top: 100px;
    padding: 60px;
    background: #f8fafc;
    border-radius: 30px;
    border: 1px dashed #cbd5e1;
}

.faq-footer-cta h3 { font-size: 1.8rem; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.faq-footer-cta p { color: #64748b; margin-bottom: 30px; }

.faq-btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f172a;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.faq-btn-contact:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.faq-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.faq-kicker {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category h3 i {
    color: #2563eb;
}

.faq-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-trigger {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    text-align: left;
}

.faq-trigger:hover {
    background: #f8fafc;
}

.faq-trigger i {
    font-size: 1.2rem;
    color: #94a3b8;
    transition: transform 0.3s;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    background: #fff;
}

.faq-body p {
    padding: 0 30px 25px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.faq-card.active {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.faq-card.active .faq-trigger {
    color: #2563eb;
}

.faq-card.active .faq-trigger i {
    transform: rotate(45deg);
    color: #2563eb;
}

.faq-card.active .faq-body {
    max-height: 1000px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

@media (max-width: 768px) {
    .faq-hero h1 { font-size: 2.2rem; }
    .faq-hero { padding: 60px 20px; }
}
