/* ============================================
   FAQ PAGE STYLES - GLASSMORPHISM
   ============================================ */

.faq-page {
    padding: var(--spacing-xl) 0;
    min-height: calc(100vh - var(--header-height) - 200px);
    background: #ffffff;
}

/* Container réduit */
.faq-page .container {
    max-width: 800px;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.faq-header {
    text-align: center;
    margin-bottom: 40px; /* ← RÉDUIT de var(--spacing-xl) à 40px */
    padding-bottom: 0; /* ← SUPPRIMÉ le padding-bottom */
    border-bottom: none;
}

.faq-header__title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    text-transform: uppercase;
}

.faq-header__subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FAQ SECTIONS
   ============================================ */

.faq-section {
    margin-bottom: var(--spacing-lg);
}

.faq-section:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.faq-section__title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    padding-bottom: var(--spacing-sm);
    border-bottom: none;
}

.faq-section:first-of-type .faq-section__title {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

/* ============================================
   ACCORDION - STYLE GLASSMORPHISM
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(200, 200, 200, 0.3);
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(200, 200, 200, 0.4);
}

/* Question (bouton) */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: opacity 0.2s ease;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-question__text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    padding-right: var(--spacing-md);
    line-height: 1.5;
}

/* Pas d'icône */
.faq-question__icon {
    display: none;
}

/* Réponse */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: transparent;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
}

/* ============================================
   CTA FINALE - GLASSMORPHISM
   ============================================ */

.faq-cta {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-top: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(200, 200, 200, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.faq-cta__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.faq-cta__text {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin-bottom: var(--spacing-md);
}

/* Bouton CTA - STYLE ÉDITEUR NOIR */
.faq-cta__btn {
    display: inline-block;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-cta__btn:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 28px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-cta__btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .faq-page {
        padding: var(--spacing-md) 0;
    }
    
    .faq-header {
        margin-bottom: var(--spacing-md);
        padding-bottom: var(--spacing-md);
    }
    
    .faq-header__title {
        font-size: 1.25rem;
    }
    
    .faq-header__subtitle {
        font-size: 1rem;
    }
    
    .faq-section {
        margin-bottom: var(--spacing-lg);
    }
    
    .faq-section__title {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-md);
    }
    
    .faq-question {
        padding: 16px;
    }
    
    .faq-question__text {
        font-size: 1rem;
        padding-right: var(--spacing-sm);
    }
    
    .faq-answer p {
        padding: 0 16px 16px 16px;
    }
    
    .faq-cta {
        padding: var(--spacing-md);
        margin-top: var(--spacing-xl);
    }
    
    .faq-cta__title {
        font-size: 1.25rem;
    }
    
    .faq-cta__text {
        font-size: 0.9375rem;
    }
}