:root {
    --black: #050505;
    --dark-grey: #111111;
    --gold: #D4AF37;
    --orange: #FF5500;
    --white: #ffffff;
    --neon: 0 0 15px rgba(255, 85, 0, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--black); color: var(--white); font-family: 'Montserrat', sans-serif; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px; }

/* NAVBAR */
.navbar {
    position: fixed; width: 100%; padding: 20px 50px; display: flex; 
    justify-content: space-between; align-items: center; z-index: 1000;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid #222;
}
.nav-list { display: flex; list-style: none; gap: 20px; align-items: center; }
.nav-list a { color: white; text-decoration: none; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }
.nav-btn { border: 1px solid var(--gold); padding: 8px 18px; color: var(--gold) !important; border-radius: 4px; }

/* HERO */
header { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle, #1a1500 0%, #000 80%); }
h1 { font-size: 6rem; line-height: 0.9; }
.highlight { color: var(--gold); }
.subtitle { font-size: 1.4rem; color: #888; margin-top: 20px; letter-spacing: 4px; }
.cta-button { display: inline-block; margin-top: 40px; padding: 20px 40px; background: var(--orange); color: white; text-decoration: none; font-weight: bold; border-radius: 5px; transition: 0.3s; }
.cta-button:hover { box-shadow: var(--neon); transform: scale(1.05); }

/* SECTIONS */
section { padding: 140px 50px; position: relative; text-align: center; scroll-margin-top: 80px; }
.dark-section { background: #0a0a0a; }
.number { position: absolute; top: 20px; left: 40px; font-size: 10rem; color: rgba(255,255,255,0.03); font-weight: 900; pointer-events: none; }
h2 { font-size: 3.5rem; margin-bottom: 80px; border-bottom: 2px solid var(--orange); display: inline-block; padding-bottom: 10px; }

/* NEON ICONS & SOURCES */
.neon-icon { font-size: 3.5rem; margin-bottom: 20px; filter: drop-shadow(var(--neon)); color: var(--orange); display: inline-block; }
.source-link { display: block; margin-top: 40px; color: var(--orange); text-decoration: none; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; transition: 0.3s; }
.source-link:hover { text-decoration: underline; opacity: 0.8; }

/* PHILO CARDS */
.philo-big-card { display: flex; align-items: center; background: var(--dark-grey); max-width: 1100px; margin: 60px auto; border-radius: 20px; overflow: hidden; text-align: left; border: 1px solid #222; }
.philo-big-card.reverse { flex-direction: row-reverse; }
.philo-image { flex: 1; min-height: 450px; }
.philo-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.8s; }
.philo-big-card:hover img { filter: grayscale(0%); }
.philo-content { flex: 1.2; padding: 60px; }
.philo-content h3 { font-size: 2.8rem; color: var(--gold); }
.concept { color: var(--orange); font-weight: 800; margin-bottom: 25px; font-size: 0.9rem; }

/* GRID & STATS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1000px; margin: 0 auto; }
.card { background: #111; padding: 50px; border-bottom: 4px solid var(--orange); }
.card-outline { border: 1px solid #333; padding: 40px; border-radius: 10px; }
.counter-container { font-size: 3.5rem; font-family: 'Oswald'; color: var(--gold); font-weight: 700; }

/* VERSUS */
.versus { display: flex; align-items: center; justify-content: center; gap: 50px; }
.vs-box { flex: 1; background: #111; padding: 40px; border-radius: 10px; }
.vs-divider { font-family: 'Oswald'; font-size: 4rem; color: var(--orange); text-shadow: var(--neon); }

/* VISUAL */
.visual-identity { display: flex; justify-content: center; gap: 40px; }
.color-dot { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 10px; }
.gold { background: var(--gold); } .orange { background: var(--orange); } .black { background: #000; border: 1px solid #333; }

/* MISC */
.big-text { font-size: 4.5rem; font-family: 'Oswald'; line-height: 1; }
.orange-text { color: var(--orange); }
.impact-sentence { font-size: 2rem; max-width: 900px; margin: 0 auto; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(50px); transition: 1s all ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .philo-big-card, .philo-big-card.reverse, .grid-3, .grid-2, .versus { flex-direction: column; }
    h1 { font-size: 3.5rem; }
    .number { font-size: 6rem; }
}

:root {
    --black: #050505;
    --dark: #0a0a0a;
    --gold: #D4AF37;
    --orange: #FF5500;
    --white: #ffffff;
    --neon-glow: 0 0 20px rgba(255, 85, 0, 0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--black); color: var(--white); font-family: 'Montserrat', sans-serif; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px; }

/* NAV */
.navbar { position: fixed; width: 100%; padding: 20px 50px; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid #222; }
.nav-list { display: flex; list-style: none; gap: 30px; }
.nav-list a { color: white; text-decoration: none; font-size: 0.8rem; font-weight: 600; }
.nav-btn { border: 1px solid var(--gold); padding: 8px 18px; color: var(--gold) !important; }

/* HERO */
header { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle, #1a1100 0%, #000 85%); }
h1 { font-size: 6rem; line-height: 1; margin-bottom: 20px; }
.highlight { color: var(--gold); }
.cta-button { padding: 20px 40px; background: var(--orange); color: white; text-decoration: none; font-weight: bold; border-radius: 4px; box-shadow: var(--neon-glow); }

/* SECTIONS */
section { padding: 120px 50px; position: relative; text-align: center; }
.dark-section { background: var(--dark); }
.number { position: absolute; top: 10px; left: 30px; font-size: 9rem; color: rgba(255,255,255,0.03); font-weight: 900; }
h2 { font-size: 3.5rem; margin-bottom: 80px; border-bottom: 2px solid var(--orange); display: inline-block; }

/* CONCURRENCE LOGOS */
.versus-wrapper { display: flex; align-items: center; justify-content: center; gap: 60px; max-width: 1100px; margin: 0 auto; }
.vs-side { flex: 1; }
.comp-logo { height: 65px; margin: 15px; filter: grayscale(1); opacity: 0.5; transition: 0.3s; }
.vs-center { font-family: 'Oswald'; font-size: 4rem; color: var(--orange); text-shadow: var(--neon-glow); }
.aurora-brand { font-size: 4rem; font-family: 'Oswald'; color: var(--gold); font-weight: bold; }
.vs-desc { margin-top: 15px; font-weight: 600; letter-spacing: 1px; color: #666; }
.highlight-txt { color: var(--white); }

/* PERSONA CARD */
.persona-card { display: flex; align-items: center; gap: 60px; background: #111; padding: 50px; border-radius: 20px; max-width: 1100px; margin: 0 auto; text-align: left; }
.persona-visual { flex: 1; position: relative; }
.main-persona-img { width: 100%; border-radius: 15px; filter: contrast(1.1); border: 1px solid #333; }
.view-more-btn { position: absolute; bottom: 20px; right: 20px; background: var(--orange); border: none; color: white; padding: 12px 25px; font-family: 'Oswald'; cursor: pointer; border-radius: 5px; box-shadow: var(--neon-glow); transition: 0.3s; }
.view-more-btn:hover { transform: scale(1.05); }
.persona-text { flex: 1.2; }
.tagline { color: var(--orange); font-weight: 800; font-size: 1.2rem; margin-bottom: 30px; }
.persona-details p { margin-bottom: 20px; font-size: 1.1rem; line-height: 1.6; color: #ccc; }

/* STATS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { background: #111; padding: 50px; border-bottom: 4px solid var(--orange); }
.counter-container { font-size: 3.5rem; font-family: 'Oswald'; color: var(--gold); font-weight: bold; }
.neon-icon { font-size: 3.5rem; color: var(--orange); filter: drop-shadow(var(--neon-glow)); margin-bottom: 15px; }

/* MODAL */
.modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); overflow: auto; }
.modal-box { position: relative; margin: 5% auto; width: 85%; max-width: 900px; }
.full-persona-img { width: 100%; border: 2px solid var(--orange); border-radius: 10px; }
.close-modal { position: absolute; top: -50px; right: 0; color: white; font-size: 40px; cursor: pointer; }

/* COMMON */
.source-link { display: block; margin-top: 40px; color: var(--orange); text-decoration: none; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.philo-big-card { display: flex; background: #111; margin: 40px auto; max-width: 1000px; border-radius: 15px; overflow: hidden; text-align: left; }
.philo-big-card.reverse { flex-direction: row-reverse; }
.philo-image { flex: 1; height: 400px; }
.philo-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.philo-content { flex: 1.2; padding: 45px; }

@media (max-width: 1000px) { .persona-card, .versus-wrapper, .philo-big-card, .grid-3 { flex-direction: column; text-align: center; } .vs-side { text-align: center; } }

/* Garde les logos concurrents à une taille raisonnable */
.comp-logos {
    height: 150px; 
    margin: 15px;
    filter: grayscale(1);
}

/* Donne une taille spécifique et plus grande à ton logo Aurora */
.aurora-brand {
    font-size: 5rem; /* Augmente le texte si c'est du texte */
    color: var(--gold);
    font-weight: bold;
}

/* Si Aurora est aussi une image (.main-logo par exemple) */
.main-logo {
    height: 120px; 
}

.persona-card { 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    background: #111; 
    padding: 50px; 
    border-radius: 20px; 
}
.persona-card { 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    background: #111; 
    padding: 50px; 
    border-radius: 20px; 
}

.view-more-btn { 
    position: absolute; 
    bottom: 20px; 
    right: 20px; 
    background: var(--orange); 
    box-shadow: var(--neon-glow); 
}

/* --- LOGO AURORA AGRANDI --- */
.main-logo { 
    height: 120px !important; /* Taille forcée */
    width: auto;
    filter: none !important; 
    opacity: 1 !important;
    display: block;
    margin: 0 auto;
}

/* --- MODAL STYLE --- */
.modal { 
    display: none; /* Caché par défaut */
    position: fixed; 
    z-index: 10000; /* Priorité maximale */
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.9); /* Fond noir transparent */
    overflow: auto;
}

.modal-box {
    position: relative;
    margin: 2% auto; /* Réduit la marge du haut pour laisser plus de place à l'image */
    width: 95%;      /* L'image prendra 95% de la largeur de l'écran */
    max-width: 1200px; /* Limite quand même sur très grand écran pour garder la qualité */
    animation: zoomIn 0.3s ease;
    display: flex;
    justify-content: center;
}

@keyframes zoomIn {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.full-persona-img {
    width: 100%;     /* L'image s'adapte à la largeur de la box */
    height: auto;    /* Garde les proportions */
    border: 3px solid var(--orange);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: -10px;
    right: 10px;
    color: white;
    font-size: 50px; /* Plus grande pour être facile à cliquer */
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 0 10px black;
    z-index: 10001;
}
/* --- PERSONA CARD --- */
.persona-card {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: #111;
    padding: 30px;
    border-radius: 20px;
}

.persona-visual { position: relative; flex: 1; }
.main-persona-img { width: 100%; border-radius: 15px; }
.persona-text { flex: 1; text-align: left; }

.view-more-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--orange);
    color: white;
    border: none;
    padding: 10px 20px;
    font-family: 'Oswald';
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 85, 0, 0.5);
}

/* --- SECTION SWOT --- */
.swot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.swot-card {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    border-top: 5px solid #333;
    transition: transform 0.3s ease;
}

.swot-card:hover {
    transform: translateY(-10px);
}

.swot-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.swot-icon {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Oswald';
}

.swot-card h3 {
    font-size: 1.5rem;
    margin: 0;
}

.swot-card ul {
    list-style: none;
    padding: 0;
}

.swot-card li {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.swot-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: inherit;
}

/* Couleurs spécifiques */
.force { border-color: #2ECC71; } /* Vert */
.force .swot-icon { color: #2ECC71; }

.faible { border-color: #E74C3C; } /* Rouge */
.faible .swot-icon { color: #E74C3C; }

.opp { border-color: #F1C40F; } /* Jaune/Or */
.opp .swot-icon { color: #F1C40F; }

.menace { border-color: #E67E22; } /* Orange */
.menace .swot-icon { color: #E67E22; }

/* --- CONTENEUR DES CARTES --- */
.deck-wrapper {
    display: grid; /* On passe en mode Grille */
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes de taille égale */
    gap: 30px; /* Espace entre les cartes */
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center; /* Centre les cartes horizontalement */
}

/* --- STYLE DES CARTES CARRÉES --- */
.card-square {
    width: 280px;  /* Largeur fixe */
    height: 280px; /* Hauteur identique pour le carré */
    background: #111;
    border: 1px solid #333;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border-bottom: 5px solid var(--orange);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* --- EFFET AU SURVOL --- */
.card-square:hover {
    transform: translateY(-15px); /* La carte monte */
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(255, 85, 0, 0.3);
    background: #161616;
}

.card-square .card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card-square h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 12px;
    font-family: 'Oswald', sans-serif;
}

.card-square p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

/* --- RESPONSIVE (MOBILE) --- */
@media (max-width: 900px) {
    .deck-wrapper {
        grid-template-columns: repeat(2, 1fr); /* 2 par ligne sur tablette */
    }
}

@media (max-width: 600px) {
    .deck-wrapper {
        grid-template-columns: 1fr; /* 1 seule par ligne sur téléphone */
    }
    .card-square {
        width: 100%; /* La carte prend toute la largeur disponible */
        max-width: 300px;
    }
}

.identite-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Visuels */
.identite-visuals {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-logo-img {
    max-width: 250px;
    filter: drop-shadow(0 0 15px rgba(255, 165, 0, 0.3));
}

.moodboard-img {
    width: 100%;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.moodboard-img:hover {
    transform: scale(1.02);
}

.label {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Cartes de contenu */
.id-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--orange);
}

.id-card h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.slogan {
    display: block;
    margin-top: 15px;
    font-style: italic;
    color: var(--orange);
    font-weight: bold;
}

.id-card-row {
    display: flex;
    gap: 20px;
}

.id-card.half {
    flex: 1;
}

/* Pastilles de couleurs */
.colors {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
}

.orange { background: #FF5500; }
.gold { background: #D4AF37; }
.black { background: #000000; }

/* Responsive */
@media (max-width: 900px) {
    .identite-grid {
        grid-template-columns: 1fr;
    }
}

/* Importation des polices */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Oswald:wght@400;700&family=Playfair+Display:italic,wght@700&display=swap');

/* --- CLASSES DE TYPOGRAPHIE --- */
.font-oswald {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 10px 0;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    margin: 10px 0;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--gold);
    margin: 10px 0;
}

/* Layout des box typo */
.typo-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
    margin-top: 20px;
}

.typo-box {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.typo-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--orange);
    letter-spacing: 2px;
}

.typo-desc {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* --- SECTION COULEURS --- */
.colors-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.color-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Backgrounds des pastilles */
.orange-bg { background-color: #FF5500; box-shadow: 0 0 15px rgba(255, 85, 0, 0.4); }
.gold-bg   { background-color: #D4AF37; box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
.black-bg  { background-color: #000000; border: 1px solid #333; }

.color-info h4 {
    margin: 0;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.color-info p {
    margin: 5px 0;
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.4;
}

.color-info code {
    font-size: 0.75rem;
    color: var(--orange);
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
}

/* --- CORRECTIF CARD LIMITES --- */
.card-square.limit-card {
    width: 320px;
    min-height: 320px; /* S'étire si le texte est long */
    height: auto;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligne le texte vers le haut */
}

.limit-content {
    text-align: left;
    width: 100%;
}

.limit-content p {
    font-size: 0.8rem !important; /* Force une taille lisible mais petite */
    line-height: 1.4;
    margin-bottom: 12px;
    color: #ccc;
}

.limit-content span {
    color: var(--orange);
    font-weight: bold;
    display: block; /* Met le titre de la limite sur sa propre ligne */
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* On s'assure que l'icône et le titre ne prennent pas trop de place */
.limit-card .card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.limit-card h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* --- CONTENEUR DES CARTES CENTRÉ --- */
.deck-wrapper {
    display: grid; 
    /* Définit 3 colonnes, mais s'adapte au contenu */
    grid-template-columns: repeat(auto-fit, minmax(300px, 320px)); 
    gap: 30px; 
    max-width: 1100px;
    margin: 0 auto; /* Centre le bloc entier dans la page */
    justify-content: center; /* Centre les cartes à l'intérieur de la grille */
    align-items: start;
}

/* --- STYLE DE LA CARTE LIMITES --- */
.card-square.limit-card {
    width: 320px;
    min-height: 320px;
    height: auto;
    margin: 0 auto; /* Force le centrage individuel si seule sur une ligne */
    background: #111;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    border-bottom: 5px solid var(--orange);
    transition: all 0.4s ease;
}

/* Ajustement pour que le texte ne dépasse pas */
.limit-content {
    text-align: left;
    width: 100%;
    overflow: hidden; /* Sécurité anti-débordement */
}

.limit-card {
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.1);
}

.limit-card:hover {
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
}

.aurora-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3); /* Bordure Or Aurora subtile */
    text-align: center;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold); /* Or Aurora */
    margin-bottom: 5px;
}

.footer-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

.footer-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--orange); /* Orange Solaire */
    font-weight: bold;
}

.footer-disclaimer {
    border-top: 1px solid #222;
    padding-top: 20px;
}

.footer-disclaimer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.footer-disclaimer strong {
    color: #888;
}

/* Responsive */
@media (max-width: 600px) {
    .aurora-footer {
        padding: 40px 15px;
    }
}

#conclusion {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #000, #0a0a0a);
}

.conclusion-container {
    max-width: 800px;
    margin: 0 auto;
}

.conclusion-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
}

/* La citation en Playfair */
.conclusion-text .font-playfair {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 40px;
    display: block;
}

.signature {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.signature p {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    font-size: 1.2rem;
}

.signature .line {
    width: 50px;
    height: 2px;
    background: var(--orange);
}

/* Animation de transition */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}