/**
 * Mobestate - Pages CSS
 * Feuille de styles pour toutes les pages de contenu
 * 
 * SYSTÈME MODULAIRE REFACTORISÉ
 * - Classes de base pour sections (.section)
 * - Classes de background modulaires (.section-bg-*)
 * - Classes de contenu sans padding/background
 * 
 * STRUCTURE :
 * 1. Variables & Reset
 * 2. Layout de base
 * 3. Système de sections modulaire
 * 4. Modules de contenu
 * 5. Composants
 * 6. Utilitaires
 * 7. Responsive
 */

/* ==================================================
   VARIABLES CSS & RESET
   ================================================== */

:root {
    /* Couleurs principales */
    --primary-teal: #52D3D8;
    --teal-light: #E0F7F8;
    --teal-dark: #3BA0A4;
    --teal-accent: #6BE4E9;
    
    /* Couleurs neutres */
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Couleurs d'état */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Espacements */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 80px;
    
    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================================================
   LAYOUT DE BASE DES PAGES
   ================================================== */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    overflow-x: clip;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: clip;
    width: 100%;
    scroll-behavior: smooth;
}

/* Container principal des pages */
.page-main {
    min-height: 100vh;
    padding-top: 0;
}

/* ==================================================
   SYSTÈME DE SECTIONS MODULAIRE ⭐
   ================================================== */

/* Classe de base - Padding standard pour TOUTES les sections */
.section {
    padding: 80px 24px;
}

/* Classes de background - Modulaires et combinables */
.section-bg-white {
    background: var(--white);
}

.section-bg-gray {
    background: var(--gray-50);
}

.section-bg-gradient-teal {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--gray-50) 100%);
}

.section-bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
}

/* Container standard pour le contenu */
.page-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Container étroit pour le contenu textuel */
.page-container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Container très large pour les éléments full-width */
.page-container-wide {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================================================
   TYPOGRAPHIE DE BASE
   ================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

/* ==================================================
   IMAGES & MÉDIAS
   ================================================== */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==================================================
   LIENS DANS LE CONTENU
   ================================================== */

/* Liens dans le contenu des pages uniquement */
.page-content a,
.page-container a:not([class]),
.page-container-narrow a:not([class]) {
    color: var(--primary-teal);
    text-decoration: underline;
    text-decoration-color: rgba(82, 211, 216, 0.3);
    text-underline-offset: 2px;
    transition: all var(--transition-fast);
}

.page-content a:hover,
.page-container a:not([class]):hover,
.page-container-narrow a:not([class]):hover {
    color: var(--teal-dark);
    text-decoration-color: var(--teal-dark);
}

/* ==================================================
   MODULES DE CONTENU
   ================================================== */

/* ==================================================
   HERO SECTION
   ================================================== */

.page-hero {
    position: relative;
    padding: 130px 24px;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.1;
}

.page-hero-highlight {
    background: var(--primary-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================================================
   CTA SECTION (Call to Action)
   Note: Cette section a un padding différent (100px) donc classe spéciale
   ================================================== */

.page-cta {
    padding: 100px 24px;
}

.page-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-cta-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.page-cta-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--primary-teal);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-base);
}

.page-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    color: var(--primary-teal);
}

.page-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-base);
}

.page-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ==================================================
   COMPOSANTS RÉUTILISABLES
   ================================================== */

/* Badge/Étiquette centrée */
.content-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header centrée (badge + titre + description) */
.content-header {
    text-align: center;
    margin-bottom: 48px;
}

/* Titre centrée */
.content-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

/* Description centrée */
.content-description {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Layout Image + Texte (2 colonnes) */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Texte à gauche */
.content-text {
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.8;
}

.content-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.content-text p {
    margin-bottom: 16px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Image à droite */
.content-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==================================================
   CITY HERO SPLIT - Athènes Locomotive
   Section avec header centré + image/contenu 50/50
   ================================================== */

.city-hero-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.city-hero-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.city-hero-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

.city-hero-description strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Layout 50/50 */
.city-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image à gauche avec coins arrondis et ombre */
.city-hero-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: all var(--transition-base);
}

.city-hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
}

.city-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenu à droite */
.city-hero-content {
    padding: 0 24px;
}

.city-hero-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.3;
}

.city-hero-content-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 32px;
}

.city-hero-content-text strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Liste avec icônes Material Icons (cohérent avec autres modules) */
.city-hero-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.city-hero-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.6;
    font-weight: 500;
}

.city-hero-list-item .material-icons {
    color: var(--primary-teal);
    font-size: 24px;
    flex-shrink: 0;
}

.city-hero-list-item strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* ==================================================
   TABLE MODULE - Tableau ultra clean
   Section avec header + texte + tableau moderne
   ================================================== */

.table-module-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.table-module-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-module-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.table-module-description {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 48px;
}

.table-module-description strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Container du tableau avec scroll sur mobile */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    background: white;
}

/* Tableau moderne */
.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 15px;
}

/* Header du tableau */
.modern-table thead {
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
}

.modern-table thead th {
    color: white;
    font-weight: 600;
    text-align: left;
    padding: 20px 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

/* Première colonne centrée si c'est un numéro */
.modern-table thead th:first-child,
.modern-table tbody td:first-child {
    text-align: center;
    width: 80px;
}

/* Corps du tableau */
.modern-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.modern-table tbody tr:last-child {
    border-bottom: none;
}

.modern-table tbody tr:hover {
    background: var(--gray-50);
}

.modern-table tbody td {
    padding: 20px 24px;
    color: var(--gray-700);
    line-height: 1.6;
    vertical-align: top;
}

/* Alternance de couleurs subtile */
.modern-table tbody tr:nth-child(even) {
    background: var(--gray-50);
}

.modern-table tbody tr:nth-child(even):hover {
    background: var(--teal-light);
}

/* Strong dans le tableau */
.modern-table tbody td strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Badges dans le tableau */
.table-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Palette de 10 couleurs pour les badges de tableau */

/* 1. Teal - Premium/Luxe */
.table-badge-teal {
    background: var(--teal-light);
    color: var(--teal-dark);
}

/* 2. Success/Vert - Tourisme/Airbnb */
.table-badge-success {
    background: #D1FAE5;
    color: #065F46;
}

/* 3. Info/Bleu - Investissement */
.table-badge-info {
    background: #DBEAFE;
    color: #1E40AF;
}

/* 4. Warning/Orange - Émergent */
.table-badge-warning {
    background: #FEF3C7;
    color: #92400E;
}

/* 5. Purple/Violet - Haut de gamme */
.table-badge-purple {
    background: #EDE9FE;
    color: #5B21B6;
}

/* 6. Pink/Rose - Tendance */
.table-badge-pink {
    background: #FCE7F3;
    color: #9F1239;
}

/* 7. Orange vif - Dynamique */
.table-badge-orange {
    background: #FFEDD5;
    color: #9A3412;
}

/* 8. Red/Rouge - Attention */
.table-badge-red {
    background: #FEE2E2;
    color: #991B1B;
}

/* 9. Indigo - Stable */
.table-badge-indigo {
    background: #E0E7FF;
    color: #3730A3;
}

/* 10. Cyan - Résidentiel */
.table-badge-cyan {
    background: #CFFAFE;
    color: #155E75;
}

/* Alias pour compatibilité avec l'ancien code */
.table-badge-primary {
    background: var(--teal-light);
    color: var(--teal-dark);
}

/* Icônes dans le tableau */
.modern-table .material-icons {
    color: var(--primary-teal);
    font-size: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

/* ==================================================
   BAR CHART MODULE - Graphique en barres
   Section avec header + description + bar chart
   ================================================== */

.bar-chart-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bar-chart-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bar-chart-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.bar-chart-description {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.bar-chart-description strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Container du graphique */
.bar-chart-container {
    width: 100%;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Liste des barres */
.bar-chart-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Item de barre */
.bar-chart-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Header de la barre (label + valeur) */
.bar-chart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.bar-chart-item-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
}

.bar-chart-item-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-teal);
}

/* Barre de progression */
.bar-chart-bar-wrapper {
    width: 100%;
    height: 32px;
    background: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.bar-chart-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-teal), var(--teal-accent));
    border-radius: 8px;
    transition: width 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Animation au chargement */
@keyframes barGrow {
    from {
        width: 0;
    }
}

.bar-chart-bar[data-animated="true"] {
    animation: barGrow 1s ease-out;
}

/* Valeur dans la barre (optionnel) */
.bar-chart-bar-text {
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Légende optionnelle en bas */
.bar-chart-legend {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.bar-chart-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.bar-chart-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

/* ==================================================
   STATS / CHIFFRES CLÉS
   ================================================== */

.stats-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(82, 211, 216, 0.15);
}

.stat-number {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
}

.stat-sublabel {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-teal);
    line-height: 1.4;
}

/* ==================================================
   FEATURES GRID
   ================================================== */

.features-grid-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-grid-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-grid-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.features-grid-description {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-grid-card {
    background: var(--gray-50);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-base);
}

.feature-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(82, 211, 216, 0.15);
    background: white;
}

.feature-grid-icon {
    width: 80px;
    height: 80px;
    background: var(--teal-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all var(--transition-base);
}

.feature-grid-card:hover .feature-grid-icon {
    background: var(--primary-teal);
}

.feature-grid-icon .material-icons {
    font-size: 40px;
    color: var(--primary-teal);
    transition: all var(--transition-base);
}

.feature-grid-card:hover .feature-grid-icon .material-icons {
    color: white;
}

.feature-grid-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-grid-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ==================================================
   DETAILED CONTENT WITH IMAGE
   ================================================== */

.detailed-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.detailed-content-text {
    color: var(--gray-700);
}

.detailed-content-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detailed-content-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.detailed-content-paragraph {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

.detailed-content-paragraph strong {
    color: var(--gray-900);
    font-weight: 600;
}

.detailed-content-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detailed-content-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 500;
}

.detailed-content-list-item .material-icons {
    color: var(--primary-teal);
    font-size: 24px;
    flex-shrink: 0;
}

.detailed-content-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detailed-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Variante REVERSED - Image à gauche, texte à droite */
.detailed-content-reversed .detailed-content-split {
    grid-template-columns: 1fr 1fr;
}

.detailed-content-reversed .detailed-content-image {
    order: 1;
}

.detailed-content-reversed .detailed-content-text {
    order: 2;
}

/* ==================================================
   CONTENT WITH INLINE STATS - Texte + Mini Stats + Image
   ================================================== */

.content-inline-stats-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.content-inline-stats-text {
    color: var(--gray-700);
}

.content-inline-stats-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-inline-stats-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.content-inline-stats-paragraph {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-inline-stats-paragraph strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Mini stats inline en bas du texte */
.content-inline-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.content-inline-mini-stat {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.content-inline-mini-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(82, 211, 216, 0.15);
}

.content-inline-mini-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 8px;
}

.content-inline-mini-stat-label {
    font-size: 15px;
    color: var(--gray-600);
    font-weight: 500;
}

.content-inline-stats-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-inline-stats-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==================================================
   FEATURES 3 COLUMNS - Variante 3 colonnes avec icônes
   ================================================== */

.features-3col-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-3col-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-3col-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.features-3col-description {
    font-size: 18px;
    color: var(--gray-700);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-3col-description strong {
    color: var(--primary-teal);
    font-weight: 600;
}

.features-3col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-3col-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.feature-3col-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(82, 211, 216, 0.15);
}

.feature-3col-icon {
    width: 80px;
    height: 80px;
    background: var(--teal-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all var(--transition-base);
}

.feature-3col-card:hover .feature-3col-icon {
    background: var(--primary-teal);
}

.feature-3col-icon .material-icons {
    font-size: 40px;
    color: var(--primary-teal);
    transition: all var(--transition-base);
}

.feature-3col-card:hover .feature-3col-icon .material-icons {
    color: white;
}

.feature-3col-title-card {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-3col-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ==================================================
   GOLDEN VISA STATS
   ================================================== */

.golden-visa-header {
    text-align: center;
    margin-bottom: 64px;
}

.golden-visa-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.golden-visa-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.golden-visa-description {
    font-size: 18px;
    color: var(--gray-700);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.7;
}

.golden-visa-description strong {
    color: var(--gray-900);
    font-weight: 600;
}

.golden-visa-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 64px;
}

.golden-visa-stat-item {
    text-align: center;
    background: white;
    padding: 40px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.golden-visa-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(82, 211, 216, 0.15);
}

.golden-visa-stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 12px;
    line-height: 1;
}

.golden-visa-stat-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-700);
}

.golden-visa-callout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    padding-left: 40px;
    background: white;
    border-left: 4px solid var(--primary-teal);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.golden-visa-callout p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.golden-visa-callout strong {
    color: var(--primary-teal);
    font-weight: 600;
}

/* ==================================================
   TIMELINE MODULE - Zigzag avec alternance gauche/droite
   Section avec header + timeline centrale avec blocs alternés
   ================================================== */

.timeline-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.timeline-description {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
}

.timeline-description strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Container de la timeline */
.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Ligne verticale CENTRALE */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-teal), var(--teal-light));
    border-radius: 2px;
    z-index: 1;
}

/* Liste des étapes */
.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
    list-style: none;
}

/* Item individuel - Grid 3 colonnes */
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

/* Point/Cercle au CENTRE (toujours colonne 2) */
.timeline-point {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(82, 211, 216, 0.25);
    transition: all var(--transition-base);
    margin: 0 auto;
    grid-column: 2;
}

.timeline-item:hover .timeline-point {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(82, 211, 216, 0.4);
    border-width: 5px;
}

/* Année/Numéro dans le point */
.timeline-point-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-teal);
    transition: all var(--transition-base);
}

.timeline-item:hover .timeline-point-year {
    color: var(--teal-dark);
}

/* Carte de contenu - alternance gauche/droite */
.timeline-content {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    border: 2px solid var(--gray-100);
    position: relative;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 8px 28px rgba(82, 211, 216, 0.2);
    border-color: var(--primary-teal);
    transform: translateY(-4px);
}

/* Items IMPAIRS (1, 3, 5...) - Contenu à GAUCHE */
.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    grid-row: 1;
}

/* Items PAIRS (2, 4, 6...) - Contenu à DROITE */
.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    grid-row: 1;
}

/* Flèche pointant vers le centre (gauche) */
.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid var(--primary-teal);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    transition: all var(--transition-base);
}

/* Flèche pointant vers le centre (droite) */
.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 12px solid var(--primary-teal);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    transition: all var(--transition-base);
}

/* Titre du contenu */
.timeline-content-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

/* Description du contenu */
.timeline-content-description {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.timeline-content-description strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* ==================================================
   COMPARISON MODULE - Comparatif visuel et moderne
   Section avec header + 2 blocs comparatifs élégants
   ================================================== */

.comparison-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.comparison-description {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
}

.comparison-description strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Grille 2 colonnes */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Carte de comparaison moderne */
.comparison-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(82, 211, 216, 0.2);
}

/* Image en haut de la carte */
.comparison-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.comparison-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-base);
}

.comparison-card:hover .comparison-card-image img {
    transform: scale(1.05);
}

/* Badge sur l'image */
.comparison-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-teal);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contenu de la carte */
.comparison-card-content {
    padding: 32px;
}

/* Titre de la carte */
.comparison-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

/* Description courte */
.comparison-card-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Stats en ligne (3 mini stats) */
.comparison-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-stat {
    text-align: center;
}

.comparison-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 6px;
}

.comparison-stat-label {
    font-size: 12px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Liste des points clés */
.comparison-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-card-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.5;
}

.comparison-card-feature .material-icons {
    color: var(--primary-teal);
    font-size: 20px;
    flex-shrink: 0;
}

/* ==================================================
   UTILITAIRES
   ================================================== */

/* Espacements */
.mt-0 { margin-top: 0 !important; }
.mt-sm { margin-top: var(--spacing-sm) !important; }
.mt-md { margin-top: var(--spacing-md) !important; }
.mt-lg { margin-top: var(--spacing-lg) !important; }
.mt-xl { margin-top: var(--spacing-xl) !important; }
.mt-2xl { margin-top: var(--spacing-2xl) !important; }
.mt-3xl { margin-top: var(--spacing-3xl) !important; }
.mt-4xl { margin-top: var(--spacing-4xl) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-sm { margin-bottom: var(--spacing-sm) !important; }
.mb-md { margin-bottom: var(--spacing-md) !important; }
.mb-lg { margin-bottom: var(--spacing-lg) !important; }
.mb-xl { margin-bottom: var(--spacing-xl) !important; }
.mb-2xl { margin-bottom: var(--spacing-2xl) !important; }
.mb-3xl { margin-bottom: var(--spacing-3xl) !important; }
.mb-4xl { margin-bottom: var(--spacing-4xl) !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-sm { padding-top: var(--spacing-sm) !important; padding-bottom: var(--spacing-sm) !important; }
.py-md { padding-top: var(--spacing-md) !important; padding-bottom: var(--spacing-md) !important; }
.py-lg { padding-top: var(--spacing-lg) !important; padding-bottom: var(--spacing-lg) !important; }
.py-xl { padding-top: var(--spacing-xl) !important; padding-bottom: var(--spacing-xl) !important; }
.py-2xl { padding-top: var(--spacing-2xl) !important; padding-bottom: var(--spacing-2xl) !important; }
.py-3xl { padding-top: var(--spacing-3xl) !important; padding-bottom: var(--spacing-3xl) !important; }
.py-4xl { padding-top: var(--spacing-4xl) !important; padding-bottom: var(--spacing-4xl) !important; }

/* Alignement texte */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* Couleurs de texte */
.text-primary { color: var(--primary-teal) !important; }
.text-gray-500 { color: var(--gray-500) !important; }
.text-gray-600 { color: var(--gray-600) !important; }
.text-gray-700 { color: var(--gray-700) !important; }
.text-gray-900 { color: var(--gray-900) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-error { color: var(--error) !important; }

/* Backgrounds */
.bg-white { background-color: var(--white) !important; }
.bg-gray-50 { background-color: var(--gray-50) !important; }
.bg-gray-100 { background-color: var(--gray-100) !important; }
.bg-teal-light { background-color: var(--teal-light) !important; }
.bg-primary { background-color: var(--primary-teal) !important; }

/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

/* Flex utilities */
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.align-center { align-items: center !important; }
.gap-sm { gap: var(--spacing-sm) !important; }
.gap-md { gap: var(--spacing-md) !important; }
.gap-lg { gap: var(--spacing-lg) !important; }

/* ==================================================
   LINE CHART MODULE
   ================================================== */

/* Utilise content-header, content-badge, content-title, content-description */
/* Seule classe spécifique : le canvas */

.line-chart-canvas {
    height: 350px;
}

/* ==================================================
   BAR CHART - CSS VARIABLES SYSTEM
   ================================================== */

/* Largeur modulable via CSS Variable */
.bar-chart-bar {
    width: var(--bar-width, 100%); /* Valeur par défaut 100% */
}

/* Palette de 10 couleurs pour les barres */
.bar-teal {
    background: linear-gradient(90deg, var(--primary-teal), var(--teal-accent));
}

.bar-success {
    background: linear-gradient(90deg, #10B981, #34D399);
}

.bar-info {
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
}

.bar-warning {
    background: linear-gradient(90deg, #F59E0B, #FBBF24);
}

.bar-purple {
    background: linear-gradient(90deg, #8B5CF6, #A78BFA);
}

.bar-pink {
    background: linear-gradient(90deg, #EC4899, #F472B6);
}

.bar-orange {
    background: linear-gradient(90deg, #F97316, #FB923C);
}

.bar-red {
    background: linear-gradient(90deg, #EF4444, #F87171);
}

.bar-blue {
    background: linear-gradient(90deg, #0EA5E9, #38BDF8);
}

.bar-indigo {
    background: linear-gradient(90deg, #6366F1, #818CF8);
}

/* Couleurs de légende pour bar chart */
.bar-legend-color-teal {
    background: linear-gradient(90deg, var(--primary-teal), var(--teal-accent));
}

.bar-legend-color-success {
    background: linear-gradient(90deg, #10B981, #34D399);
}

.bar-legend-color-info {
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
}

.bar-legend-color-warning {
    background: linear-gradient(90deg, #F59E0B, #FBBF24);
}

/* ==================================================
   TEAM FOUNDERS MODULE - Présentation des fondateurs
   Header centré + 2 blocs alternés (texte/image puis image/texte)
   ================================================== */

/* Header centré - réutilise les classes content-* existantes */
.team-founders-header {
    text-align: center;
    margin-bottom: 64px;
}

.team-founders-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-founders-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.team-founders-description {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.team-founders-description strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Container des fondateurs */
.team-founders-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Carte fondateur - Layout 50/50 */
.team-founder-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Version inversée - Image à gauche */
.team-founder-card-reversed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.team-founder-card-reversed .team-founder-image {
    order: 1;
}

.team-founder-card-reversed .team-founder-content {
    order: 2;
}

/* Image du fondateur */
.team-founder-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: all var(--transition-base);
    position: relative;
}

.team-founder-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(82, 211, 216, 0.2);
}

.team-founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
}

/* Contenu texte du fondateur */
.team-founder-content {
    padding: 0 16px;
}

/* Nom du fondateur */
.team-founder-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.2;
}

/* Poste / Rôle */
.team-founder-role {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lien LinkedIn */
.team-founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #0A66C2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 28px;
    transition: all var(--transition-base);
}

.team-founder-linkedin:hover {
    background: #004182;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.3);
}

.team-founder-linkedin svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Bio du fondateur */
.team-founder-bio {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
}

.team-founder-bio p {
    margin-bottom: 16px;
}

.team-founder-bio p:last-child {
    margin-bottom: 0;
}

.team-founder-bio strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Liste de compétences/points forts optionnelle */
.team-founder-highlights {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-founder-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    font-weight: 500;
}

.team-founder-highlight .material-icons {
    color: var(--primary-teal);
    font-size: 22px;
    flex-shrink: 0;
}

/* ==================================================
   RESPONSIVE - BREAKPOINTS
   ================================================== */

/* Tablet large (1024px et moins) */
@media (max-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
    h4 { font-size: 22px; }
    
    .page-container,
    .page-container-narrow,
    .page-container-wide {
        padding: 0 20px;
    }
    
    /* Section padding responsive */
    .section {
        padding: 70px 20px;
    }
    
    /* Hero responsive */
    .page-hero {
        padding: 100px 20px;
    }
    
    .page-hero-title {
        font-size: 48px;
    }
    
    .page-hero-subtitle {
        font-size: 18px;
    }
    
    /* CTA responsive */
    .page-cta {
        padding: 80px 20px;
    }
    
    .page-cta-title {
        font-size: 40px;
    }
    
    /* Features Grid responsive - Tablet */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Stats Grid responsive - Tablet (comme Features Grid) */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Detailed Content responsive - Tablet */
    .detailed-content-split {
        gap: 40px;
    }
    
    .detailed-content-title {
        font-size: 36px;
    }
    
    /* Content Inline Stats responsive - Tablet */
    .content-inline-stats-split {
        gap: 40px;
    }
    
    .content-inline-stats-title {
        font-size: 36px;
    }
    
    .content-inline-mini-stat-number {
        font-size: 32px;
    }
    
    .content-inline-mini-stats {
        gap: 20px;
    }
    
    .content-inline-mini-stat {
        padding: 20px 18px;
    }
    
    /* City Hero Split responsive - Tablet */
    .city-hero-header {
        margin-bottom: 56px;
    }
    
    .city-hero-title {
        font-size: 40px;
    }
    
    .city-hero-description {
        font-size: 17px;
    }
    
    .city-hero-split {
        gap: 48px;
    }
    
    .city-hero-content h3 {
        font-size: 28px;
    }
    
    .city-hero-content {
        padding: 0 16px;
    }
    
    /* Features 3 Columns responsive - Tablet */
    .features-3col-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-3col-title {
        font-size: 36px;
    }
    
    /* Golden Visa responsive - Tablet */
    .golden-visa-title {
        font-size: 36px;
    }
    
    .golden-visa-stats {
        gap: 32px;
    }
    
    .golden-visa-stat-item {
        padding: 36px 24px;
    }
    
    .golden-visa-stat-number {
        font-size: 48px;
    }
    
    /* Table Module responsive - Tablet */
    .table-module-title {
        font-size: 36px;
    }
    
    .table-module-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .modern-table {
        font-size: 14px;
    }
    
    .modern-table thead th {
        padding: 16px 20px;
        font-size: 13px;
    }
    
    .modern-table tbody td {
        padding: 16px 20px;
    }
    
    /* Bar Chart responsive - Tablet */
    .bar-chart-title {
        font-size: 36px;
    }
    
    .bar-chart-description {
        font-size: 16px;
    }
    
    .bar-chart-container {
        padding: 32px 24px;
    }
    
    .bar-chart-list {
        gap: 24px;
    }
    
    .bar-chart-item-value {
        font-size: 16px;
    }
    
    /* Timeline responsive - Tablet (zigzag) */
    .timeline-title {
        font-size: 36px;
    }
    
    .timeline-description {
        font-size: 16px;
    }
    
    .timeline-list {
        gap: 56px;
    }
    
    .timeline-item {
        gap: 32px;
    }
    
    .timeline-point {
        width: 72px;
        height: 72px;
    }
    
    .timeline-point-year {
        font-size: 18px;
    }
    
    .timeline-content {
        padding: 28px 24px;
    }
    
    .timeline-content-title {
        font-size: 20px;
    }
    
    /* Comparison responsive - Tablet (design moderne) */
    .comparison-title {
        font-size: 36px;
    }
    
    .comparison-description {
        font-size: 16px;
    }
    
    .comparison-grid {
        gap: 32px;
    }
    
    .comparison-card-image {
        height: 200px;
    }
    
    .comparison-card-content {
        padding: 28px 24px;
    }
    
    .comparison-card-title {
        font-size: 24px;
    }
    
    .comparison-card-stats {
        gap: 12px;
    }
    
    .comparison-stat-number {
        font-size: 20px;
    }
    
    /* Team Founders responsive - Tablet Large */
    .team-founders-title {
        font-size: 36px;
    }
    
    .team-founders-list {
        gap: 64px;
    }
    
    .team-founder-card,
    .team-founder-card-reversed {
        gap: 48px;
    }
    
    .team-founder-name {
        font-size: 32px;
    }
    
    .team-founder-role {
        font-size: 16px;
    }
}

/* Tablet (768px et moins) */
@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }
    
    .page-container,
    .page-container-narrow,
    .page-container-wide {
        padding: 0 16px;
    }
    
    /* Section padding responsive */
    .section {
        padding: 60px 20px;
    }
    
    /* Hero responsive */
    .page-hero {
        padding: 80px 20px;
        min-height: 400px;
    }
    
    .page-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .page-hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    /* CTA responsive */
    .page-cta {
        padding: 60px 20px;
    }
    
    .page-cta-title {
        font-size: 32px;
    }
    
    .page-cta-desc {
        font-size: 18px;
    }
    
    .page-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .page-cta-btn-primary,
    .page-cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Content Section responsive */
    .content-header {
        margin-bottom: 40px;
    }
    
    .content-title {
        font-size: 28px;
    }
    
    .content-description {
        font-size: 16px;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Sur mobile, image AVANT le texte */
    .content-split .content-image {
        order: -1;
    }
    
    /* City Hero Split responsive - Mobile */
    .city-hero-header {
        margin-bottom: 48px;
    }
    
    .city-hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .city-hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .city-hero-description {
        font-size: 16px;
    }
    
    .city-hero-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Image AVANT le contenu sur mobile */
    .city-hero-image {
        order: -1;
        border-radius: 16px;
    }
    
    .city-hero-content {
        padding: 0;
    }
    
    .city-hero-content h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .city-hero-content-text {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .city-hero-list {
        gap: 14px;
    }
    
    .city-hero-list-item {
        font-size: 15px;
        gap: 10px;
    }
    
    .city-hero-list-item .material-icons {
        font-size: 22px;
    }
    
    /* Stats Section responsive */
    .stats-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 32px 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .stat-sublabel {
        font-size: 12px;
    }
    
    /* Features Grid responsive - Mobile */
    .features-grid-header {
        margin-bottom: 48px;
    }
    
    .features-grid-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .features-grid-title {
        font-size: 28px;
    }
    
    .features-grid-description {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-grid-card {
        padding: 32px 24px;
    }
    
    .feature-grid-icon {
        width: 72px;
        height: 72px;
    }
    
    .feature-grid-icon .material-icons {
        font-size: 36px;
    }
    
    .feature-grid-title {
        font-size: 18px;
    }
    
    .feature-grid-desc {
        font-size: 14px;
    }
    
    /* Detailed Content responsive - Mobile */
    .detailed-content-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Image AVANT le texte sur mobile */
    .detailed-content-image {
        order: -1;
    }
    
    .detailed-content-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
    
    .detailed-content-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .detailed-content-paragraph {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .detailed-content-list {
        margin-top: 24px;
        gap: 12px;
    }
    
    .detailed-content-list-item {
        font-size: 15px;
        gap: 10px;
    }
    
    .detailed-content-list-item .material-icons {
        font-size: 20px;
    }
    
    /* Version reversed - sur mobile, l'image reste AVANT le texte */
    .detailed-content-reversed .detailed-content-split {
        grid-template-columns: 1fr;
    }
    
    .detailed-content-reversed .detailed-content-image {
        order: -1;
    }
    
    .detailed-content-reversed .detailed-content-text {
        order: 2;
    }
    
    /* Content Inline Stats responsive - Mobile */
    .content-inline-stats-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Image AVANT le texte sur mobile */
    .content-inline-stats-image {
        order: -1;
    }
    
    .content-inline-stats-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
    
    .content-inline-stats-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .content-inline-stats-paragraph {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .content-inline-mini-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 32px;
    }
    
    .content-inline-mini-stat {
        padding: 20px 16px;
    }
    
    .content-inline-mini-stat-number {
        font-size: 28px;
    }
    
    .content-inline-mini-stat-label {
        font-size: 14px;
    }
    
    /* Features 3 Columns responsive - Mobile */
    .features-3col-header {
        margin-bottom: 48px;
    }
    
    .features-3col-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .features-3col-title {
        font-size: 28px;
    }
    
    .features-3col-description {
        font-size: 16px;
    }
    
    .features-3col-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-3col-card {
        padding: 32px 24px;
    }
    
    .feature-3col-icon {
        width: 72px;
        height: 72px;
    }
    
    .feature-3col-icon .material-icons {
        font-size: 36px;
    }
    
    .feature-3col-title-card {
        font-size: 18px;
    }
    
    .feature-3col-desc {
        font-size: 14px;
    }
    
    /* Golden Visa responsive - Mobile */
    .golden-visa-header {
        margin-bottom: 48px;
    }
    
    .golden-visa-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
    
    .golden-visa-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .golden-visa-description {
        font-size: 16px;
    }
    
    .golden-visa-stats {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }
    
    .golden-visa-stat-item {
        padding: 32px 24px;
    }
    
    .golden-visa-stat-number {
        font-size: 40px;
    }
    
    .golden-visa-stat-label {
        font-size: 16px;
    }
    
    .golden-visa-callout {
        padding: 24px;
        padding-left: 28px;
        border-left-width: 3px;
    }
    
    .golden-visa-callout p {
        font-size: 15px;
    }
    
    /* Table Module responsive - Mobile */
    .table-module-header {
        margin-bottom: 40px;
    }
    
    .table-module-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .table-module-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .table-module-description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .table-container {
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }
    
    .modern-table {
        font-size: 13px;
    }
    
    .modern-table thead th {
        padding: 14px 16px;
        font-size: 12px;
    }
    
    .modern-table tbody td {
        padding: 14px 16px;
    }
    
    .modern-table thead th:first-child,
    .modern-table tbody td:first-child {
        width: 60px;
    }
    
    .table-badge {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    /* Line Chart responsive - Mobile */
    .line-chart-canvas {
        height: 280px;
    }
    
    /* Bar Chart responsive - Mobile */
    .bar-chart-header {
        margin-bottom: 40px;
    }
    
    .bar-chart-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .bar-chart-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .bar-chart-description {
        font-size: 15px;
    }
    
    .bar-chart-container {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .bar-chart-list {
        gap: 20px;
    }
    
    .bar-chart-item-label {
        font-size: 14px;
    }
    
    .bar-chart-item-value {
        font-size: 16px;
    }
    
    .bar-chart-bar-wrapper {
        height: 28px;
    }
    
    .bar-chart-legend {
        margin-top: 24px;
        padding-top: 20px;
        gap: 16px;
    }
    
    .bar-chart-legend-item {
        font-size: 13px;
    }
    
    /* Timeline responsive - Mobile (VERSION PUREMENT VERTICALE) */
    .timeline-header {
        margin-bottom: 48px;
    }
    
    .timeline-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .timeline-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .timeline-description {
        font-size: 15px;
    }
    
    /* Ligne verticale AU CENTRE sur mobile - DERRIÈRE les blocs */
    .timeline-container::before {
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        z-index: 0;
    }
    
    .timeline-list {
        gap: 48px;
    }
    
    /* Layout vertical pur : 1 seule colonne centrée */
    .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        grid-template-columns: none;
    }
    
    /* Point AU CENTRE sur mobile - AU-DESSUS de la ligne */
    .timeline-point {
        width: 48px;
        height: 48px;
        border-width: 3px;
        margin: 0;
        grid-column: unset;
        grid-row: unset;
        z-index: 2;
    }
    
    /* Date plus petite sur mobile */
    .timeline-point-year {
        font-size: 14px;
    }
    
    /* Contenu CENTRÉ en dessous du point - AU-DESSUS de la ligne */
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: unset;
        grid-row: unset;
        width: 100%;
        max-width: 100%;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    
    /* Supprimer TOUTES les flèches sur mobile */
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        display: none;
    }
    
    .timeline-content {
        padding: 24px 20px;
        border: 2px solid var(--gray-100);
        border-left: 2px solid var(--gray-100);
        background: white;
    }
    
    .timeline-content-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .timeline-content-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Comparison responsive - Mobile (design moderne) */
    .comparison-header {
        margin-bottom: 48px;
    }
    
    .comparison-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .comparison-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .comparison-description {
        font-size: 15px;
    }
    
    /* 1 colonne sur mobile */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .comparison-card-image {
        height: 180px;
    }
    
    .comparison-card-badge {
        top: 16px;
        left: 16px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .comparison-card-content {
        padding: 24px 20px;
    }
    
    .comparison-card-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .comparison-card-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .comparison-card-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .comparison-stat-number {
        font-size: 18px;
    }
    
    .comparison-stat-label {
        font-size: 11px;
    }
    
    .comparison-card-features {
        gap: 10px;
    }
    
    .comparison-card-feature {
        font-size: 14px;
    }
    
    /* Team Founders responsive - Mobile */
    .team-founders-header {
        margin-bottom: 48px;
    }
    
    .team-founders-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .team-founders-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .team-founders-description {
        font-size: 16px;
    }
    
    .team-founders-list {
        gap: 56px;
    }
    
    /* 1 colonne sur mobile */
    .team-founder-card,
    .team-founder-card-reversed {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Image TOUJOURS avant le texte sur mobile */
    .team-founder-card .team-founder-image,
    .team-founder-card-reversed .team-founder-image {
        order: -1;
    }
    
    .team-founder-card .team-founder-content,
    .team-founder-card-reversed .team-founder-content {
        order: 2;
        padding: 0;
        text-align: left;
    }
    
    .team-founder-image {
        border-radius: 16px;
    }
    
    .team-founder-image img {
        aspect-ratio: 1/1;
        max-height: 350px;
    }
    
    .team-founder-name {
        font-size: 28px;
    }
    
    .team-founder-role {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .team-founder-linkedin {
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .team-founder-bio {
        font-size: 15px;
        text-align: left;
    }
    
    .team-founder-highlights {
        margin-top: 20px;
    }
    
    .team-founder-highlight {
        font-size: 14px;
    }
}

/* ==================================================
   COMING SOON MODULE - Section en construction
   Affiche un message d'attente élégant
   ================================================== */

.coming-soon-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 24px;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(82, 211, 216, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(82, 211, 216, 0);
    }
}

.coming-soon-icon .material-icons {
    font-size: 56px;
    color: var(--primary-teal);
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.coming-soon-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.coming-soon-description strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Progress bar animée */
.coming-soon-progress {
    max-width: 400px;
    margin: 0 auto 32px;
}

.coming-soon-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.coming-soon-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-teal), var(--teal-accent));
    border-radius: 4px;
    width: 65%;
    position: relative;
    animation: progress-shimmer 2s ease-in-out infinite;
}

@keyframes progress-shimmer {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.coming-soon-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.coming-soon-progress-text {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 12px;
    font-weight: 500;
}

/* Features à venir */
.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.coming-soon-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-600);
    font-weight: 500;
}

.coming-soon-feature .material-icons {
    color: var(--primary-teal);
    font-size: 22px;
}

/* ==================================================
   CONTACT PAGE - SIMPLE
   ================================================== */

.contact-section {
    padding: 100px 24px;
    background: white;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Infos gauche */
.contact-info-side .content-title {
    margin-bottom: 20px;
}

.contact-info-side .content-description {
    margin-bottom: 48px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-item .material-icons {
    font-size: 24px;
    color: var(--primary-teal);
    margin-top: 2px;
}

.contact-info-item p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.5;
    margin: 0;
}

.contact-info-item a {
    color: var(--gray-700);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--primary-teal);
}

/* Formulaire droite */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.contact-form-group input,
.contact-form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    background: white;
    transition: border-color 0.2s;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--gray-400);
}

.contact-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gray-900);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    width: fit-content;
}

.contact-form-submit:hover {
    background: var(--gray-800);
}

.contact-form-submit .material-icons {
    font-size: 18px;
}

/* Map */
.contact-map {
    height: 450px;
    width: 100%;
}

.contact-map #map {
    width: 100%;
    height: 100%;
}

/* Marker pulsant */
.pulse-marker-dot {
    width: 16px;
    height: 16px;
    background: var(--primary-teal);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.pulse-marker-ring {
    width: 48px;
    height: 48px;
    border: 2px solid var(--primary-teal);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s ease-out infinite;
    opacity: 0;
}

.pulse-marker-ring-2 {
    animation-delay: 0.5s;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-content {
    margin: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-submit {
        width: 100%;
        justify-content: center;
    }
    
    .contact-map {
        height: 350px;
    }
}

/* ==================================================
   FAQ SECTION
   ================================================== */

.faq-section {
    padding: 100px 24px;
    background: var(--gray-50);
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
}

.faq-question .material-icons {
    font-size: 24px;
    color: var(--gray-400);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question .material-icons {
    transform: rotate(180deg);
    color: var(--primary-teal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question span {
        font-size: 15px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}

/* ==================================================
   LEGAL PAGE - Simple et lisible
   ================================================== */

.legal-section {
    padding: 80px 24px;
    background: white;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 48px;
}

.legal-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.legal-header p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

.legal-block {
    margin-bottom: 24px;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 28px 32px;
}

.legal-block h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.legal-block p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block a {
    color: var(--primary-teal);
    text-decoration: none;
}

.legal-block a:hover {
    text-decoration: underline;
}

.legal-block ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-block ul li {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 60px 20px;
    }
    
    .legal-header h1 {
        font-size: 28px;
    }
    
    .legal-block h2 {
        font-size: 18px;
    }
}

/* Responsive Coming Soon */
@media (max-width: 768px) {
    .coming-soon-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }
    
    .coming-soon-icon .material-icons {
        font-size: 48px;
    }
    
    .coming-soon-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .coming-soon-title {
        font-size: 28px;
    }
    
    .coming-soon-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .coming-soon-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .coming-soon-feature {
        font-size: 14px;
    }
}

/* Mobile (480px et moins) */
@media (max-width: 480px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    h4 { font-size: 18px; }
    
    /* Hero responsive */
    .page-hero {
        padding: 60px 16px;
    }
    
    .page-hero-title {
        font-size: 28px;
    }
    
    .page-hero-subtitle {
        font-size: 15px;
    }
    
    /* CTA responsive */
    .page-cta {
        padding: 50px 16px;
    }
    
    .page-cta-title {
        font-size: 28px;
    }
    
    .page-cta-desc {
        font-size: 16px;
    }
    
    /* Mini stats inline - 1 colonne sur petits écrans */
    .content-inline-mini-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .content-inline-mini-stat {
        padding: 24px 20px;
    }
}

/* ==================================================
   ANIMATIONS
   ================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Classes d'animation */
.animate-fade-in {
    animation: fadeIn var(--transition-base);
}

.animate-fade-in-up {
    animation: fadeInUp var(--transition-base);
}

.animate-fade-in-down {
    animation: fadeInDown var(--transition-base);
}

.animate-slide-in-left {
    animation: slideInLeft var(--transition-base);
}

.animate-slide-in-right {
    animation: slideInRight var(--transition-base);
}

.animate-scale-in {
    animation: scaleIn var(--transition-base);
}

/* ==================================================
   FIN DU FICHIER
   Système modulaire prêt à l'emploi
   ================================================== */

   /* =============================================
   NOS PROJETS - STYLE INSTAGRAM
   À ajouter à la fin de pages.css
   ============================================= */

/* Projects Grid */
.projects-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 968px) {
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
}

/* Project Card */
.project-card {
    position: relative;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: scale(1.02);
}

/* Video Background */
.project-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay - Dégradé noir prononcé */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* Project Content */
.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
}

/* Project Title */
.project-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Project Tagline */
.project-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px 0;
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* Project Meta - Une ligne avec dots */
.project-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.project-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.project-status {
    color: #6EE7B7;
    font-weight: 600;
}

/* Project CTA */
.project-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.project-card:hover .project-cta {
    opacity: 1;
}

.project-cta .material-icons {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.project-card:hover .project-cta .material-icons {
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 768px) {
    .project-card {
        height: 450px;
    }
    
    .project-content {
        padding: 28px;
    }
    
    .project-title {
        font-size: 26px;
    }
    
    .project-tagline {
        font-size: 15px;
    }
    
    .project-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
}