/* =========================================
    HERO SECTION (SOBRE & CHIC - STYLE DREAMINI)
   ========================================= */
   .about-hero {
    position: relative;
    height: 50vh; 
    min-height: 350px;
    
    /* Dégradé sombre luxe */
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px; 
    padding-top: 80px;
}

.hero-content {
    z-index: 2;
    padding: 0 20px;
    animation: fadeIn 1.2s ease-out;
}

/* Sur-titre Doré */
.tagline {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c9a473; 
    margin-bottom: 20px;
}

.hero-content h1 {
    color: #fff;
    font-family: 'Montserrat', sans-serif; /* RETOUR ADN SITE */
    font-size: 3rem;
    font-weight: 700; /* Gras comme l'accueil */
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* =========================================
   NARRATIVE SECTIONS (TEXTE)
   ========================================= */
.narrative-section {
    padding: 100px 5%;
    text-align: center;
}

.container.narrow {
    max-width: 750px; 
    margin: 0 auto;
}

/* Section Sombre */
.dark-bg {
    background-color: #0a0a0a;
    color: #fff;
}

/* Section Claire */
.light-bg {
    background-color: #ffffff;
    color: #0a0a0a;
    border-bottom: 1px solid #f0f0f0;
}

.narrative-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Texte d'introduction */
.lead-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.narrative-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Couleurs spécifiques */
.dark-bg p { color: #ccc; }
.dark-bg .lead-text { color: #fff; }
.light-bg p { color: #555; }
.light-bg strong { color: #000; font-weight: 600; }


/* =========================================
   COMPARISON SECTION (CARTES STYLE ACCUEIL)
   ========================================= */
.comparison-section {
    background-color: #f9f9f9; 
    color: #000;
    padding: 100px 5% 120px;
}

.comparison-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.tagline-dark {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
    font-weight: 600;
}

.comparison-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.comparison-header p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; 
    max-width: 1100px;
    margin: 0 auto;
}

.compare-card {
    background: #fff;
    padding: 50px 40px;
    
    /* MODIFICATION : Arrondis comme sur l'accueil (20/24px) */
    border-radius: 24px; 
    
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.compare-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* La carte Dreamini ressort davantage */
.compare-card.new-way {
    border: 1px solid #c9a473; /* Bordure dorée fine */
    background-color: #fff;
    position: relative;
    z-index: 10;
}

.icon-box {
    margin-bottom: 30px;
    color: #ccc;
}

.icon-box.gold { color: #c9a473; }
.icon-box svg { width: 40px; height: 40px; }

.compare-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

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

.compare-card li {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    padding-left: 30px;
    position: relative;
    font-weight: 400;
}

/* Puces personnalisées */
.compare-card.old-way li::before {
    content: '✕'; color: #ddd; font-weight: bold;
    position: absolute; left: 0; top: 0;
}

.compare-card.new-way li { color: #000; } 
.compare-card.new-way li::before {
    content: '✓'; color: #c9a473; font-weight: bold;
    position: absolute; left: 0; top: 1px;
}

/* =========================================
   FINAL STATEMENT (SIGNATURE)
   ========================================= */
.final-statement {
    background-color: #0a0a0a;
    color: #fff;
    padding: 120px 5%;
    text-align: center;
}

.final-statement h2 {
    font-family: 'Montserrat', sans-serif; /* RETOUR ADN SITE */
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-statement p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 50px;
    font-weight: 300;
}

/* BOUTON (Style Pilule comme Accueil) */
.cta-button {
    display: inline-block;
    padding: 18px 50px;
    border-radius: 50px; /* Arrondi pilule */
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #c9a473; /* Doré au survol */
    color: #fff;
    transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .hero-content h1 { font-size: 2.2rem; }
    .narrative-section h2 { font-size: 1.8rem; }
    
    .comparison-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .compare-card { padding: 40px 30px; }
}