/* ========================================= */
/* 0. ÉVITE LES DÉBORDEMENTS LATÉRAUX INDÉSIRABLES*/
/* ========================================= */
/* 0: Réinitialisation et verrouillage horizontal – Évite les débordements latéraux indésirables */
html, body {
    overflow-x: hidden;
    /* Supprime les scrolls horizontaux causés par des débordements */
    width: 100%;
    /* Force le corps à occuper toute la largeur de l’écran */
    margin: 0;
    /* Supprime les marges par défaut du navigateur */
    padding: 0;
    /* Supprime les paddings par défaut du navigateur */
}

/* Uniformise le calcul des dimensions pour tous les éléments */
*, *::before, *::after {
    box-sizing: border-box;
    /* Évite les bugs de layout liés aux padding et borders */
}
/* =================================================================== */
/* FEUILLE DE STYLE PRESTIGE - PAGE DE VENTE FINALE                    */
/* ARCHITECTE : Martial Digital                                        */
/* VERSION : Finale - Robuste et Optimisée                             */
/* =================================================================== */

/* ========================================= */
/* TABLE DES MATIÈRES
/* 1. FONDATION & VARIABLES GLOBALES
/* 2. RESET & STYLES DE BASE
/* 3. COMPOSANTS & STRUCTURES GÉNÉRIQUES
/* 4. SECTIONS SPÉCIFIQUES (Header, Hero, etc.)
/* 5. MEDIA QUERIES RESPONSIVE
/* ========================================= */

/* ========================================= */
/* 1. FONDATION & VARIABLES GLOBALES         */
/* ========================================= */
:root {
    /* Palette "Confiance & Action" */
    --color-primary-deep-blue: #0A2540;
    --color-primary-action-blue: #007BFF; 
    --color-text-body: #425466;      
    --color-text-subtle: #6B778C;   
    --color-background-main: #FFFFFF;     
    --color-background-section: #F6F9FC; 
    --color-border: #E6E6E6;
    --color-success: #28a745;
    /* Ombres & Effets */
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 10px 30px -5px rgba(0,0,0,0.1);
    --shadow-button: 0 4px 14px 0 rgba(0, 110, 255, 0.35);

    /* [ARCHITECTE] Hiérarchie typographique renforcée */
    --font-family-primary: 'Poppins', sans-serif;
    --base-font-size: 17px;
    --line-height-body: 1.7;
    --font-size-small: 0.9rem;
    --font-size-large: 1.15rem;
    --font-size-xl: 1.6rem;
    --font-size-xxl: 2.5rem;
    --font-size-hero: 3rem;
    /* Espacements */
    --spacing-unit: 8px;
    --padding-section: 100px 0;
    --container-max-width: 1100px;
}

/* ========================================= */
/* 2. RESET & STYLES DE BASE                 */
/* ========================================= */
/* [ARCHITECTE] Reset consolidé, sécurisé et unique.
*/
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: var(--base-font-size);
}

body {
    font-family: var(--font-family-primary);
    line-height: var(--line-height-body);
    color: var(--color-text-body);
    background-color: var(--color-background-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========================================= */
/* 3. COMPOSANTS & STRUCTURES GÉNÉRIQUES     */
/* ========================================= */
.container {
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.cta-button {
    background-color: var(--color-primary-action-blue);
    color: white;
    padding: 15px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-button);
}
.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 7px 22px 0 rgba(0, 123, 255, 0.5);
    background-color: #0069D9;
}

#cta-sticky-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
    pointer-events: none;
}
#cta-sticky-button.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* [ARCHITECTE] Règle globale pour l'accessibilité au clavier.
*/
a:focus-visible, button:focus-visible {
    outline: 3px solid var(--color-primary-action-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

section { padding: var(--padding-section); }
section:nth-of-type(even) { background-color: var(--color-background-section); }

section h2 {
    font-size: var(--font-size-xxl);
    color: var(--color-primary-deep-blue);
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-weight: 700;
}
section h2::after { content: ''; display: block; width: 60px; height: 4px; background: var(--color-primary-action-blue);
    margin: calc(var(--spacing-unit) * 2) auto 0 auto; border-radius: 2px; }
.section-intro { font-size: var(--font-size-large); color: var(--color-text-subtle); text-align: center; max-width: 800px;
    margin: 0 auto calc(var(--spacing-unit) * 8) auto; }
section .icon-section { font-size: 3rem; color: var(--color-primary-action-blue); margin-bottom: calc(var(--spacing-unit) * 3); display: block;
    text-align: center; }
.highlight-text { color: var(--color-primary-action-blue); font-weight: 700; }

/* ========================================= */
/* 4. SECTIONS SPÉCIFIQUES                   */
/* ========================================= */

/* --- HEADER --- */
.main-header { padding: 15px 0;
    background-color: var(--color-background-main); border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-light); position: sticky; top: 0; z-index: 1000; }
.main-header .header-container { display: flex;
    justify-content: space-between; align-items: center; }
.main-header .logo img { max-height: 45px; }
.header-nav ul { display: flex; gap: 30px; }
.header-nav a { font-weight: 600; color: var(--color-text-body); position: relative; padding-bottom: 5px; transition: color 0.3s ease; }
.header-nav a:hover { color: var(--color-primary-action-blue); }
.header-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--color-primary-action-blue);
    transition: width 0.3s ease; }
.header-nav a:hover::after { width: 100%; }
.header-cta .cta-button { padding: 8px 20px; font-size: 0.9rem; box-shadow: none; }

/* --- HERO --- */
.hero-section {
    padding: 60px 0;
    background-color: var(--color-background-main);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: calc(var(--spacing-unit) * 6);
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: var(--font-size-hero);
    line-height: 1.2;
    font-weight: 700;
}

.hero-content .subtitle {
    font-size: var(--font-size-large);
    margin: calc(var(--spacing-unit) * 3) 0 calc(var(--spacing-unit) * 4) 0;
    max-width: 550px;
}

.trust-indicators-hero {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 5);
    font-size: 1rem;
    color: var(--color-text-subtle);
    justify-content: flex-start;
}

.trust-indicators-hero i {
    color: var(--color-success);
    margin-right: calc(var(--spacing-unit) * 1);
}

/* NOUVELLE RÈGLE CORRECTIVE */
.hero-content .cta-subtext {
    font-size: var(--font-size-small);
    color: var(--color-text-subtle);
    margin-top: calc(var(--spacing-unit) * 2);
    /* Ligne clé pour un alignement parfait */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* Espace entre l'icône et le texte */
}


.hero-image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
}

/* --- Média Queries pour la section HERO --- */
@media (max-width: 992px) {
    .hero-grid {
        gap: calc(var(--spacing-unit) * 4);
    }
    .hero-content h1 {
        font-size: var(--font-size-xxl);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        /* Passage à une seule colonne */
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .trust-indicators-hero {
        justify-content: center;
    }
    .hero-content .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image-container {
        margin-top: calc(var(--spacing-unit) * 5);
        order: -1;
        /* Place l'image au-dessus du texte sur mobile */
    }
}
/* ========================================= */
/* STYLE POUR LE MOCKUP VIDÉO DU HÉRO        */
/* ========================================= */

.mobile-mockup-video {
  /* --- Le design du "téléphone" --- */
  max-width: 380px; /* Taille maximale sur grand écran, simulant un grand smartphone */
  margin: 0 auto;   /* Centre le mockup dans son conteneur (la colonne de droite) */
  border: 10px solid #1f1f1f; /* Simule la bordure noire et épaisse d'un téléphone */
  border-radius: 40px; /* Simule les coins très arrondis d'un smartphone moderne */
  
  /* --- Effets "Prestige" --- */
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.2), 0 20px 50px -10px rgba(10, 37, 64, 0.3); /* Ombre forte pour donner du relief et un effet premium */
  overflow: hidden;   /* S'assure que la vidéo ne dépasse pas des coins arrondis */
  background-color: #1f1f1f; /* Fond noir pour le cas où la vidéo mettrait une microseconde à charger */
}

.mobile-mockup-video video {
  width: 100%;
  height: auto;
  display: block; /* Élimine tout espace blanc sous la vidéo */
}

/* --- Adaptation pour les écrans mobiles --- */
@media (max-width: 768px) {
  .mobile-mockup-video {
    /* Sur mobile, le mockup prend une grande partie de l'écran pour un impact maximal */
    max-width: 75%; 
    border-width: 8px;
    border-radius: 30px;
  }
}


/* --- PROBLEM --- */
.problem-scenarios-grid { display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: calc(var(--spacing-unit) * 4); margin-bottom: calc(var(--spacing-unit) * 8); }
.scenario-item { background-color: var(--color-background-main); padding: calc(var(--spacing-unit) * 4);
    border-radius: 8px; box-shadow: var(--shadow-medium); text-align: center; border: 1px solid var(--color-border); transition: transform 0.3s ease; }
.scenario-item:hover { transform: translateY(-5px); }
.scenario-item .scenario-icon { font-size: 3rem; color: var(--color-primary-action-blue); margin-bottom: calc(var(--spacing-unit) * 3); }
.scenario-item h3 { font-size: var(--font-size-xl); color: var(--color-primary-deep-blue);
    margin-bottom: calc(var(--spacing-unit) * 2); }
.call-to-action-problem { font-size: var(--font-size-large); font-weight: 500; text-align: center; max-width: 800px; margin: 0 auto;
}
.before-after-block { margin: calc(var(--spacing-unit) * 6) auto; text-align: center; }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--spacing-unit) * 4);
    margin-top: calc(var(--spacing-unit) * 4); }
.comparison-card { background-color: var(--color-background-main); border: 1px solid var(--color-border); border-radius: 8px; padding: calc(var(--spacing-unit) * 2);
}
.comparison-card h4 { font-size: 0.8rem; color: var(--color-text-subtle); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: calc(var(--spacing-unit) * 2); }
.comparison-card img { border-radius: 6px;
    box-shadow: var(--shadow-medium); }
.comparison-card span { display: block; margin-top: calc(var(--spacing-unit) * 2); font-weight: 600; }
/* --- AMÉLIORATIONS "PRESTIGE" POUR LA SECTION PROBLÈME (À AJOUTER) --- */

/* Style pour les nouvelles illustrations */
.scenario-icon {
    height: 60px;
    /* Taille contrôlée pour les illustrations */
    width: auto;
    margin: 0 auto calc(var(--spacing-unit) * 3) auto;
    color: var(--color-primary-action-blue); /* Utile si ce sont des SVG */
}

/* Amélioration de la carte de scénario */
.scenario-item {
    border: 2px solid transparent;
    /* Bordure de base pour la transition */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.scenario-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong); /* Ombre plus prononcée au survol */
    border-color: var(--color-primary-action-blue);
    /* Bordure colorée au survol */
}

/* Accentuation des labels "AVANT" / "APRÈS" */
.comparison-card h4 {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.comparison-card--before h4 {
    background-color: #DC3545; /* Rouge pour indiquer un problème */
}

.comparison-card--after h4 {
    background-color: var(--color-success);
    /* Vert pour indiquer la solution */
}


/* --- SOLUTION --- */
.video-demo-wrapper { max-width: 800px; margin: calc(var(--spacing-unit) * 4) auto;
    border-radius: 8px; box-shadow: var(--shadow-strong); overflow: hidden; border: 2px solid var(--color-border); }
.solution-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4); margin-top: calc(var(--spacing-unit) * 6); }
.solution-item { background-color: var(--color-background-main); padding: calc(var(--spacing-unit) * 4); border-radius: 8px;
    border-left: 4px solid var(--color-primary-action-blue); box-shadow: var(--shadow-light); }
.solution-item h3 { font-size: var(--font-size-xl); color: var(--color-primary-deep-blue); margin-bottom: calc(var(--spacing-unit) * 2); display: flex;
    align-items: center; gap: calc(var(--spacing-unit) * 1.5); }
.solution-item h3 i { color: var(--color-primary-action-blue); font-size: 1.1em; width: 25px; }

/* --- STORYTELLING --- */
.story-wrapper { display: grid; grid-template-columns: 300px 1fr; align-items: center; gap: calc(var(--spacing-unit) * 6); max-width: 1000px;
    margin: 0 auto; }
.story-image-container img { border-radius: 8px; box-shadow: var(--shadow-medium); }
.story-text-container h3 { font-size: var(--font-size-xl); margin-bottom: calc(var(--spacing-unit) * 3);
}
.story-text-container p { margin-bottom: calc(var(--spacing-unit) * 2); }
.social-proof-block { display: flex; align-items: center; gap: calc(var(--spacing-unit) * 4); background-color: var(--color-background-main);
    border-radius: 8px; padding: calc(var(--spacing-unit) * 4); margin-top: calc(var(--spacing-unit) * 8); border: 1px solid var(--color-border); }
.social-proof-icon { font-size: 3.5rem; color: var(--color-primary-deep-blue);
}
.social-proof-text h4 { font-size: 1.2rem; color: var(--color-primary-deep-blue); margin: 0 0 calc(var(--spacing-unit) * 1) 0; }
.social-proof-text p { margin: 0; }
/* --- AMÉLIORATIONS "PRESTIGE" POUR LA SECTION STORYTELLING (À AJOUTER) --- */

/* Ajout d'une bordure "Prestige" à la photo de l'auteur */
.story-image-container img {
    border: 2px solid var(--color-primary-action-blue);
}

/* Style pour les citations choc (Pull Quotes) */
.pull-quote {
    margin: calc(var(--spacing-unit) * 3) 0;
    padding: calc(var(--spacing-unit) * 2);
    background-color: var(--color-background-section);
    border-left: 4px solid var(--color-primary-action-blue);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-primary-deep-blue);
}

.pull-quote p {
    margin-bottom: 0; /* Annule la marge du paragraphe à l'intérieur de la citation */
}

/* Style pour la mise en valeur du chiffre de la preuve sociale */
.social-proof-text .stats-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary-deep-blue);
    vertical-align: -0.2em; /* Ajustement fin pour l'alignement vertical */
}


/* --- OFFRE & PRIX (VERSION CORRIGÉE ET UNIFIÉE) --- */
.main-offer-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-background-main);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    text-align: center;
}
.offer-header {
    background-color: var(--color-primary-deep-blue);
    color: white;
    padding: calc(var(--spacing-unit) * 3);
}
.offer-header h3 {
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    color: white;
}
.offer-header p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}
.offer-content {
    padding: calc(var(--spacing-unit) * 4);
    text-align: left;
}
.value-stack-list li {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--spacing-unit) * 1.5);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    padding: 8px;
    /* Ajout d'un padding de base pour tous les éléments */
    border-radius: 6px;
    /* Arrondi pour tous les éléments */
    transition: background-color 0.3s ease;
    /* Transition douce pour le survol */
}
.value-stack-list i {
    color: var(--color-success);
    margin-top: 5px;
}
/* CORRECTION: Style de l'élément mis en avant, sans marge négative pour éviter les bugs de layout */
.value-stack-list__item--highlight {
    background-color: #eaf3ff;
    /* Un bleu très clair et subtil */
}
.value-stack-list__item--highlight span {
    color: var(--color-primary-deep-blue);
    font-weight: 700;
}

/* CORRECTION: Style unifié pour la section prix */
.price-section {
    background-image: linear-gradient(145deg, var(--color-primary-deep-blue), #0d3a66);
    padding: calc(var(--spacing-unit) * 4);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.price-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.main-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: calc(var(--spacing-unit) * 1) 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.real-value {
    display: block;
    text-decoration: line-through;
    color: rgba(255,255,255,0.5);
}

.cta-block {
    padding: calc(var(--spacing-unit) * 4);
}
/* CORRECTION: L'animation de pouls est déplacée sur le box-shadow uniquement pour ne pas entrer en conflit avec le transform du hover */
@keyframes pulse-shadow-animation {
    0% { box-shadow: 0 4px 14px 0 rgba(0, 110, 255, 0.35);
    }
    50% { box-shadow: 0 6px 22px 0 rgba(0, 123, 255, 0.55);
    }
    100% { box-shadow: 0 4px 14px 0 rgba(0, 110, 255, 0.35);
    }
}
.cta-block .cta-button {
    width: 100%;
    font-size: 1.2rem;
    /* On applique uniquement l'animation du shadow qui ne cause pas de conflit */
    animation: pulse-shadow-animation 2.5s infinite ease-in-out;
}
/* Le :hover original du bouton reste fonctionnel car son transform n'est plus en conflit */
.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 7px 22px 0 rgba(0, 123, 255, 0.5);
    background-color: #0069D9;
}
.cta-block .cta-subtext {
    margin-top: calc(var(--spacing-unit) * 2);
    font-size: var(--font-size-small);
    color: var(--color-text-subtle);
}


/* --- GARANTIE (VERSION FINALE CORRIGÉE ET UNIFIÉE) --- */
#guarantee-section {
    background-color: var(--color-primary-deep-blue);
    color: rgba(255, 255, 255, 0.9);
}
#guarantee-section .guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
/* CORRECTION: Ajout des styles de taille de l'icône de section */
#guarantee-section .guarantee-icon {
    color: white;
    font-size: 3rem;
    margin-bottom: calc(var(--spacing-unit) * 3);
    display: block;
}
#guarantee-section h2 {
    color: white;
    font-size: 2.5rem;
}
#guarantee-section h2::after {
    background: white;
}
#guarantee-section .guarantee-promise {
    background-color: rgba(255, 255, 255, 0.05);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px);
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: calc(var(--spacing-unit) * 4);
    margin: calc(var(--spacing-unit) * 5) 0;
}
#guarantee-section .guarantee-promise h3 {
    color: white;
    font-size: 1.4rem;
}
#guarantee-section .guarantee-promise p {
    margin: calc(var(--spacing-unit) * 2) 0;
}
#guarantee-section .guarantee-promise strong {
    display: block;
    margin-top: calc(var(--spacing-unit) * 2);
    color: white;
}
#guarantee-section .cta-button {
    background-color: white;
    color: var(--color-primary-deep-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
#guarantee-section .cta-button:hover {
    background-color: #f1f1f1;
}
#guarantee-section .cta-button i {
    margin-right: 10px;
    font-size: 0.9em;
}
.guarantee-signature {
    text-align: right;
    margin-top: calc(var(--spacing-unit) * 2);
    padding-top: calc(var(--spacing-unit) * 2);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.guarantee-signature img {
    max-width: 150px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}



/* --- FAQ --- */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { background-color: var(--color-background-main); border: 1px solid var(--color-border);
    border-radius: 8px; margin-bottom: calc(var(--spacing-unit) * 2); }
.faq-question { width: 100%; padding: 20px; text-align: left; background: none; border: none; font-size: 1.1rem;
    font-weight: 600; color: var(--color-primary-deep-blue); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--color-primary-action-blue);
    transition: transform 0.3s ease; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
}
.faq-answer p { padding: 0 20px 20px 20px; margin: 0; border-top: 1px solid var(--color-border); padding-top: 20px;
}
/* --- AMÉLIORATIONS "PRESTIGE" POUR LA SECTION FAQ (À AJOUTER) --- */

.faq-final-cta {
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 8);
    padding-top: calc(var(--spacing-unit) * 6);
    border-top: 1px solid var(--color-border);
}

.faq-final-cta h3 {
    font-size: var(--font-size-xl);
    color: var(--color-primary-deep-blue);
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.faq-final-cta p {
    color: var(--color-text-subtle);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

/* --- FOOTER --- */
.main-footer { background-color: var(--color-primary-deep-blue); color: rgba(255, 255, 255, 0.7);
    padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 3) 0; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 5); padding-bottom: calc(var(--spacing-unit) * 5); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-logo img { max-height: 40px;
    margin-bottom: calc(var(--spacing-unit) * 2); }
.footer-links h4, .footer-contact h4 { font-size: var(--font-size-large); color: white; font-weight: 600; margin-bottom: calc(var(--spacing-unit) * 2.5);
}
.footer-links li { margin-bottom: calc(var(--spacing-unit) * 1.5); }
.footer-links a, .footer-contact a { transition: color 0.3s ease; }
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-bottom { padding-top: calc(var(--spacing-unit) * 3); text-align: center; font-size: var(--font-size-small);
}
.footer-legal-links { margin: calc(var(--spacing-unit) * 1.5) 0; }
/* --- AMÉLIORATIONS "PRESTIGE" POUR LE FOOTER (À AJOUTER) --- */

.footer-socials h4 {
    font-size: var(--font-size-large);
    color: white;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: white;
    transform: translateY(-3px);
}

/* --- Style pour le Disclaimer du Footer --- */
.footer-disclaimer {
    margin-top: calc(var(--spacing-unit) * 3); /* Espace par rapport aux liens légaux */
    padding: 0 calc(var(--spacing-unit) * 2);
    max-width: 800px; /* Limite la largeur pour une meilleure lisibilité */
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    font-size: 0.8rem; /* Plus petit que le texte standard */
    color: rgba(255, 255, 255, 0.5); /* Couleur plus discrète */
    line-height: 1.6; /* Hauteur de ligne pour un petit texte */
    margin: 0;
}


/* ========================================= */
/* 5. MEDIA QUERIES RESPONSIVE               */
/* ========================================= */
@media (max-width: 768px) {
    :root { --base-font-size: 16px; }
    section h2 { font-size: 2rem; }
    .hero-content h1 { font-size: var(--font-size-xxl); }
    .header-nav { display: none; }
    .before-after-grid, .story-wrapper { grid-template-columns: 1fr; }
    .story-image-container { max-width: 250px; margin: 0 auto calc(var(--spacing-unit) * 4) auto;
    }
    .social-proof-block { flex-direction: column; text-align: center; }
    .footer-content { text-align: center; }
    #cta-sticky-button { left: 15px; right: 15px; width: calc(100% - 30px); }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .header-cta { display: none; }
    .main-header .header-container { justify-content: center; }
    .main-price { font-size: 2.8rem; }
} 


/* --- NOUVEAUX STYLES POUR LE MENU MOBILE (À AJOUTER) --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-toggle {
    display: none;
    /* Caché par défaut sur desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 18px;
    position: relative;
    z-index: 1001; /* Doit être au-dessus du header */
}

.mobile-nav-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-deep-blue);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-toggle__bar:nth-child(2) {
    margin: 6px 0;
}

/* --- Animation du bouton "burger" en croix --- */
.main-header.mobile-menu--is-open .mobile-nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.main-header.mobile-menu--is-open .mobile-nav-toggle__bar:nth-child(2) {
    opacity: 0;
}
.main-header.mobile-menu--is-open .mobile-nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- MODIFICATIONS POUR LA MEDIA QUERY @media (max-width: 768px) --- */
.header-nav {
    display: none;
    position: fixed;
    top: 75px; 
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-background-main);
    padding: 40px;
    flex-direction: column;
    align-items: center;
    /* Centre horizontalement */
    justify-content: center; /* << LA LIGNE AJOUTÉE : Centre verticalement */
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}


    .main-header.mobile-menu--is-open .header-nav {
        display: flex;
        transform: translateX(0);
    }

    .header-nav__list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .header-nav__link {
        font-size: var(--font-size-xl);
    }

    .mobile-nav-toggle {
        display: block;
        /* On affiche le bouton burger */
    }

    .header-cta {
        display: none;
        /* On cache le CTA principal pour ne pas surcharger */
    }
}

/* --- MODIFICATIONS POUR LA MEDIA QUERY @media (max-width: 480px) --- */
@media (max-width: 480px) {
    /* Le .header-cta est déjà caché, on s'assure que le container est bien aligné */
    .main-header .header-container {
        justify-content: space-between;
        /* On remet space-between pour bien placer logo et burger */
    }
}


/* --- AMÉLIORATION "PRESTIGE" POUR LA DÉMO VIDÉO (À AJOUTER) --- */

.video-demo-wrapper video {
    display: block;
    /* Assure un comportement de bloc sans espace superflu */
    width: 100%;
    /* Garantit que la vidéo remplit son conteneur */
    height: auto;
    /* Maintient les proportions de la vidéo */
    border-radius: 8px;
    /* Assure que la vidéo hérite des coins arrondis du conteneur */
}

/* Dans @media (max-width: 768px) */
.social-icons {
    justify-content: center;
    /* Centre les icônes sur mobile */
}

/* --- CORRECTIF DÉFINITIF POUR L'ICÔNE SVG --- */
.hero-content .cta-subtext i.fa-shield-alt {
    /* La propriété fill: currentColor;
       force l'image SVG
       à adopter la couleur définie de son parent.
     */
    fill: currentColor;
    /* On s'assure que la couleur du texte est bien appliquée */
    color: var(--color-text-subtle);
}

/* --- VERROUILLAGE DU SCROLL POUR LE MENU MOBILE --- */
body.mobile-menu--is-active {
    overflow: hidden;
}


/* --- CORRECTIF DÉFINITIF POUR L'ICÔNE DE GARANTIE VIA SVG --- */
.cta-shield-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em; /* Ajustement fin pour l'alignement */
    margin-right: 5px;
    fill: var(--color-text-subtle);
    /* On utilise "fill" pour les SVG */
}

