/* ==========================================================================
   RESET & POLICES DE BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Fond sombre élégant qui va bien avec votre logo */
    background-color: #0b0c10;
    color: #c5c6c7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ==========================================================================
   SÉLECTEUR DE LANGUE & LOGO
   ========================================================================== */
.lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 100;
}

.lang-switcher button {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lang-switcher button:hover {
    background: #ffffff;
    color: #0b0c10;
}

.main-logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   EN-TÊTE (HERO SECTION)
   ========================================================================== */
.hero {
    text-align: center;
    padding: 80px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.hero p {
    font-size: 1.1rem;
    color: #a9a9a9;
    margin-bottom: 30px;
    padding: 0 20px;
}

/* Boutons des stores */
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: transform 0.2s, opacity 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn.apple {
    background-color: #333333;
    border: 1px solid #555;
    cursor: not-allowed; /* Indique que le bouton n'est pas encore actif */
}

.btn.google {
    background-color: #4CAF50; /* Vert Google Play par défaut */
}

/* ==========================================================================
   SECTION VIDÉO
   ========================================================================== */
.demo-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #12141a; /* Fond légèrement différent pour séparer */
}

.video-container {
    margin: 20px auto;
    max-width: 315px; /* Largeur d'un short YouTube */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   SECTION FONCTIONNALITÉS (CARTES)
   ========================================================================== */
.features-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-card {
    background-color: #1a1c23;
    padding: 30px 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2a2c35;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* ==========================================================================
   SECTION ÉTAPES (COMMENT ÇA MARCHE)
   ========================================================================== */
.steps-section {
    padding: 60px 20px;
    background-color: #12141a;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 40px auto 0;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #6c5ce7; /* Couleur d'accentuation (violet mystique) */
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

/* ==========================================================================
   PIED DE PAGE (FOOTER)
   ========================================================================== */
footer {
    padding: 40px 20px;
    background-color: #0b0c10;
    text-align: center;
    border-top: 1px solid #2a2c35;
    font-size: 0.9rem;
}

.footer-content a {
    color: #6c5ce7;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-content a:hover {
    color: #a29bfe;
    text-decoration: underline;
}

.legal-links {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.copyright {
    color: #666;
    margin-top: 20px;
}

/* ==========================================================================
   RESPONSIVE (POUR LES TÉLÉPHONES)
   ========================================================================== */
@media (max-width: 768px) {
    .features-grid, .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card, .step-item {
        width: 100%;
        max-width: 400px;
    }
    
    .main-logo {
        max-width: 90%;
    }
    
    .hero {
        padding-top: 60px;
    }
}
/* ==========================================================================
   SECTION FAQ ACCORDÉON
   ========================================================================== */
.faq-section {
    padding: 70px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-container {
    margin-top: 35px;
    text-align: left;
}

.faq-item {
    background-color: #1a1c23;
    border: 1px solid #2a2c35;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: #6c5ce7;
}

.faq-item summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: #6c5ce7;
    font-weight: bold;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 20px 20px;
    color: #a9a9a9;
    font-size: 0.95rem;
    line-height: 1.6;
}