/* FAQ Page Styles */

.faq-page-wrapper {
    background-color: #ffffff;
}

/* Hero FAQ */
.faq-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #eef2ff 100%);
    text-align: center;
}

.faq-hero .badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000000;
}

.faq-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #09090b;
}

.faq-hero p {
    font-size: 1.2rem;
    color: #71717a;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.category-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e4e4e7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #000000;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.category-card i {
    font-size: 2.5rem;
    color: #ff6b00;
    font-style: normal;
}

.category-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* FAQ Content Layout */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 60px 0 100px;
}

@media (min-width: 1024px) {
    .faq-layout {
        grid-template-columns: 300px 1fr;
    }
}

.faq-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.faq-nav {
    list-style: none;
    padding: 0;
}

.faq-nav a {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: #71717a;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    text-decoration: none;
}

.faq-nav a:hover, .faq-nav a.active {
    background: #f4f4f5;
    color: #000000;
    padding-left: 2rem;
}

/* Accordion Styles */
.faq-group {
    margin-bottom: 5rem;
    scroll-margin-top: 120px;
}

.faq-group h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid #e4e4e7;
    color: #09090b;
}

.faq-item {
    background: white;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: #000000;
}

.faq-item summary {
    padding: 1.8rem 2.2rem;
    font-weight: 600;
    font-size: 1.15rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    user-select: none;
    color: #09090b;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    color: #000000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 2.2rem 2rem;
    color: #71717a;
    line-height: 1.8;
}

.faq-item[open] .faq-content {
    border-top: 1px solid #e4e4e7;
    padding-top: 1.8rem;
}

/* CTA Final */
.faq-cta {
    background: #000000;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.faq-cta h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.faq-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 3rem;
}

/* UTILS */
.mt-xl { margin-top: 4rem; }
.mb-lg { margin-bottom: 2rem; }

@media (max-width: 768px) {
    .faq-sidebar {
        display: none;
    }
}
