/* ==========================================================================
   style-REFACTORISÉ.css — wilfried-medium.fr
   Version : 3.0 | Architecture Modulaire & Unifiée
   
   🎯 OBJECTIFS :
   - Supprimer tous les doublons (FAQ, Testimonials, Cards, Heroes)
   - Créer un système de composants réutilisables
   - Préserver les 35 effets "Wahou" ✅
   - Réduire de ~33% (2186 → ~1500 lignes)
   
   📚 TABLE DES MATIÈRES :
   1. Configuration (Variables, Reset, Fonts)
   2. Layout System
   3. Components Unifiés (Buttons, Cards, FAQ, Testimonials)
   4. Header & Footer (Intacts - fonctionnent parfaitement)
   5. Hero System (Unifié avec variantes)
   6. Pages Spécifiques
   7. Animations & Effects (35 effets préservés)
   8. Utilities & Responsive
   ========================================================================== */


/* ==========================================================================
   1. CONFIGURATION
   ========================================================================== */
   
/* Reset & Box Model */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
    scroll-behavior: smooth; 
    text-size-adjust: 100%; 
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; 
}

/* Variables CSS */
:root {
  /* Couleurs */
  --color-bg-body: #1b0033;
  --color-bg-section: #280044;
  --color-border: #830EE7;
  --color-highlight: #f5e342;
  --color-accent: #FFD700;
  --color-text: #ffffff;
  --color-white: #ffffff;
  --color-text-on-highlight: var(--color-bg-body);
  --color-bg-menu-mobile: rgba(15, 0, 30, 0.98);
  --color-active-page: #830EE7;
  
  /* Glassmorphism */
  --glass-bg: rgba(40, 0, 68, 0.75);
  --glass-bg-hover: rgba(40, 0, 68, 0.9);
  --glass-border: rgba(131, 14, 231, 0.3);
  --glass-border-glow: rgba(131, 14, 231, 0.5);
  
  /* Sections */
  --section-bg: rgba(27, 0, 51, 0.6);
  --section-border: rgba(131, 14, 231, 0.2);
  --section-padding: clamp(60px, 10vw, 100px);
  
  /* Spacing */
  --card-padding: clamp(25px, 4vw, 35px);
  --element-gap: 30px;
  
  /* Typography */
  --font-heading: 'Allan', cursive;
  --font-body: 'Lato', sans-serif;
  
  /* UI */
  --radius-md: 8px;
  --radius-btn: 26px;
  --transition-ui: 0.3s ease;
  --shadow-base: 0 10px 50px rgba(0, 0, 0, 0.4);
}

/* Fonts */
@font-face { 
    font-family: 'Allan'; 
    src: url('fonts/Allan-Regular.ttf') format('truetype'); 
    font-weight: 400; 
    font-style: normal; 
    font-display: swap; 
}
@font-face { 
    font-family: 'Allan'; 
    src: url('fonts/Allan-Bold.ttf') format('truetype'); 
    font-weight: 700; 
    font-style: normal; 
    font-display: swap; 
}
@font-face { 
    font-family: 'Lato'; 
    src: url('fonts/Lato-Regular.ttf') format('truetype'); 
    font-weight: 400; 
    font-style: normal; 
    font-display: swap; 
}
@font-face { 
    font-family: 'Lato'; 
    src: url('fonts/Lato-Bold.ttf') format('truetype'); 
    font-weight: 700; 
    font-style: normal; 
    font-display: swap; 
}

/* Base Styles */
body { 
    font-family: var(--font-body); 
    background: var(--color-bg-body) url('https://dev.wilfried-medium.fr/wp-content/uploads/2025/04/background_wilfried.webp') center/cover no-repeat fixed; 
    color: var(--color-text); 
    line-height: 1.6; 
}
body.no-scroll { overflow: hidden; }

a { 
    color: var(--color-highlight); 
    text-decoration: none; 
    transition: color 0.3s ease; 
}
a:hover, a:focus { 
    color: var(--color-accent); 
    outline: none; 
}

h1, h2, h3, h4 { 
    font-family: var(--font-heading); 
    color: var(--color-highlight); 
    font-weight: bold; 
    margin: 1.5rem 0 0.8rem 0; 
    line-height: 1.3; 
}

p { margin-bottom: 1rem; }

.screen-reader-text { 
    position: absolute; 
    left: -9999px; 
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ⚠️ NE PAS MODIFIER - Fonctionne parfaitement
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1001; 
    background: rgba(27, 0, 51, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(131, 14, 231, 0.2);
    transition: all 0.3s ease;
}

/* Media Queries Header */
@media (min-width: 1025px) { 
    .header-desktop { display: block !important; } 
    .header-mobile { display: none !important; } 
}
@media (max-width: 1024px) { 
    .header-desktop { display: none !important; } 
    .header-mobile { display: flex !important; } 
}

/* Z-Index Hierarchy */
.header-search-overlay { z-index: 10010; }
.menu-toggle { z-index: 10002; }
.mobile-menu-panel { z-index: 10001; }
.menu-overlay { z-index: 10000; }

/* Desktop Header Structure */
.header-desktop { padding: 10px 20px; }
.header-top-row { 
    max-width: 1300px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; 
}
.header-block-logo img { max-height: 70px; }
.header-block-utility { flex-grow: 1; display: flex; justify-content: center; }
.header-cta-block { display: flex; align-items: center; gap: 20px; }
.header-block-contact { display: flex; align-items: center; gap: 15px; }
.header-block-contact a { 
    width: 44px; 
    height: 44px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(245, 227, 66, 0.1); 
    border-radius: 50%; 
    color: var(--color-highlight); 
    font-size: 20px; 
    transition: all var(--transition-ui); 
}
.header-block-contact a:hover { 
    background-color: rgba(131, 14, 231, 0.1); 
    color: var(--color-border); 
}

/* Desktop Menu */
.main-navigation-desktop { padding: 5px 0; }
.menu-container-desktop { 
    max-width: 1300px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.main-navigation-desktop .main-menu { 
    list-style: none; 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 40px; 
    margin: 0; 
    padding: 0; 
    flex-grow: 1; 
}
.main-navigation-desktop .main-menu a { 
    font-family: var(--font-heading) !important; 
    font-size: 1.2rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--color-highlight); 
    text-decoration: none; 
    padding-bottom: 10px; 
    position: relative; 
    transition: color var(--transition-ui); 
}
.main-navigation-desktop .main-menu a:hover { color: var(--color-border); }
.main-navigation-desktop .main-menu .current-menu-item > a, 
.main-navigation-desktop .main-menu .current-menu-ancestor > a { 
    color: var(--color-active-page) !important; 
}
.main-navigation-desktop .main-menu .current-menu-item > a::after, 
.main-navigation-desktop .main-menu .current-menu-ancestor > a::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 2px; 
    background-color: var(--color-active-page); 
    border-radius: 1px; 
}
.main-navigation-desktop .menu-item-has-children > a::after { 
    content: '▼'; 
    margin-left: 8px; 
    font-size: 0.7em; 
    display: inline-block; 
    transition: transform var(--transition-ui); 
}
.main-navigation-desktop .menu-item-has-children:hover > a::after { 
    transform: rotate(180deg); 
}
.main-navigation-desktop .menu-item-has-children { position: relative; }
.main-navigation-desktop .sub-menu { 
    display: none; 
    position: absolute; 
    top: calc(100% + 5px); 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 10; 
    min-width: 240px; 
    background: var(--color-bg-section); 
    border: 1px solid rgba(131, 14, 231, 0.3); 
    border-radius: 8px; 
    padding: 10px; 
    list-style: none; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); 
}
.main-navigation-desktop .menu-item-has-children:hover > .sub-menu { display: block; }
.main-navigation-desktop .sub-menu a { 
    font-family: var(--font-heading) !important; 
    font-size: 1rem !important; 
    text-transform: none !important; 
    letter-spacing: normal !important; 
    color: var(--color-text) !important; 
    border-bottom: 1px solid rgba(131, 14, 231, 0.1); 
    padding: 10px 15px; 
    display: block; 
    transition: all var(--transition-ui); 
}
.main-navigation-desktop .sub-menu li:last-child a { border-bottom: none; }
.main-navigation-desktop .sub-menu a:hover { 
    background-color: rgba(131, 14, 231, 0.1); 
    color: var(--color-active-page) !important; 
}
.main-navigation-desktop .menu-actions { 
    display: flex; 
    align-items: center; 
    gap: 25px; 
    flex-shrink: 0; 
}
.main-navigation-desktop .submenu-arrow-toggle { display: none; }

/* Mobile Header */
.header-mobile { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    min-height: 75px; 
    padding: 10px 15px; 
    position: relative; 
}
.header-mobile-left { display: flex; align-items: center; gap: 8px; flex: 0 0 auto;}
.header-mobile-center { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.header-mobile-right { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.header-mobile-center img { max-height: 45px; }
.header-mobile .header-icon, 
.header-mobile .header-search-icon { 
    font-size: 20px; 
    color: var(--color-highlight); 
    padding: 8px; 
    transition: color var(--transition-ui); 
}
.header-mobile .header-icon:hover, 
.header-mobile .header-search-icon:hover { 
    color: var(--color-border); 
}

/* Mobile Menu Panel & Overlays */
.mobile-menu-panel, 
.header-search-overlay, 
.menu-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity var(--transition-ui), visibility var(--transition-ui); 
}
.header-search-overlay { 
    background: rgba(15, 0, 30, 0.95); 
    backdrop-filter: blur(8px); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 20px;
}
.search-container { 
    background-color: var(--color-bg-section); 
    padding: 30px 40px; 
    border-radius: 12px; 
    border: 1px solid var(--color-border); 
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4); 
    max-width: 800px; 
    width: 100%; 
    position: relative; 
    transform: scale(0.95) translateY(-10px); 
    opacity: 0; 
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.header-search-overlay.is-active .search-container { 
    transform: scale(1) translateY(0); 
    opacity: 1;
}
.search-container .search-form { display: flex; gap: 10px; }
.search-container .search-field { 
    flex-grow: 1; 
    background-color: rgba(0, 0, 0, 0.2); 
    border: 2px solid var(--color-border); 
    border-radius: var(--radius-btn); 
    padding: 10px 20px; 
    color: var(--color-text); 
    font-family: var(--font-body); 
    font-size: 1.1rem; 
    width: 100%; 
    transition: all 0.3s ease; 
    outline: none; 
}
.search-container .search-field::placeholder { 
    color: rgba(255, 255, 255, 0.5); 
    font-style: italic; 
}
.search-container .search-field:focus { 
    border-color: var(--color-highlight); 
    box-shadow: 0 0 15px rgba(245, 227, 66, 0.2); 
}
.search-overlay-close { 
    position: absolute;
    top: 30px; 
    right: 40px;
    background: transparent; 
    border: none; 
    color: var(--color-highlight); 
    font-size: 24px; 
    cursor: pointer; 
    padding: 10px; 
}
.menu-overlay { background: rgba(15, 0, 30, 0.8); }
.mobile-menu-panel { 
    width: 90%; 
    max-width: 380px; 
    left: auto; 
    right: 0; 
    background: var(--color-bg-menu-mobile); 
    padding: 80px 20px 20px 20px; 
    transform: translateX(100%); 
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease; 
    overflow-y: auto; 
}
body.mobile-menu-is-open .menu-overlay, 
.header-search-overlay.is-active { 
    opacity: 1; 
    visibility: visible; 
}
body.mobile-menu-is-open .mobile-menu-panel { 
    opacity: 1; 
    visibility: visible; 
    transform: translateX(0); 
}
.menu-toggle { 
    position: relative; 
    z-index: 10002; 
    background: transparent !important; 
    border: none !important; 
    padding: 8px !important; 
    cursor: pointer; 
}
.menu-close-button { 
    position: absolute; 
    top: 20px; 
    right: 20px; 
    z-index: 10; 
    background: transparent !important; 
    border: none !important; 
    padding: 8px !important; 
    cursor: pointer; 
}
.menu-close-button .burger-svg .bar { 
    fill: var(--color-highlight) !important; 
    transition: transform 0.3s ease, opacity 0.3s ease; 
    transform-origin: center; 
}
.menu-close-button .burger-svg .bar.top { 
    transform: translateY(5px) rotate(45deg); 
}
.menu-close-button .burger-svg .bar.middle { 
    opacity: 0; 
}
.menu-close-button .burger-svg .bar.bottom { 
    transform: translateY(-5px) rotate(-45deg); 
}
.menu-toggle .burger-svg { width: 28px; height: 28px; }
.menu-toggle .burger-svg .bar { 
    fill: var(--color-highlight) !important; 
    transition: transform 0.3s ease, opacity 0.3s ease; 
    transform-origin: center; 
}
.mobile-menu-panel .main-menu { list-style: none; padding: 0; margin: 0; }
.mobile-menu-panel .main-menu li { 
    position: relative; 
    border-bottom: 1px solid rgba(131, 14, 231, 0.1); 
}
.mobile-menu-panel .main-menu a { 
    font-family: var(--font-heading) !important; 
    font-size: 1.3rem; 
    display: block; 
    padding: 15px 10px; 
    color: var(--color-highlight); 
    text-decoration: none; 
    transition: color var(--transition-ui); 
}
.mobile-menu-panel .main-menu a:hover { color: var(--color-border); }
.mobile-menu-panel .submenu-arrow-toggle { 
    display: block !important; 
    position: absolute; 
    top: 0; 
    right: 0; 
    width: 60px; 
    height: 100%; 
    background: transparent; 
    border: none; 
    cursor: pointer; 
    z-index: 2; 
}
.mobile-menu-panel .submenu-arrow-toggle::after { 
    content: '▼'; 
    font-size: 1rem; 
    color: var(--color-highlight); 
    position: absolute; 
    right: 20px; 
    top: 50%; 
    transform: translateY(-50%); 
    transition: transform var(--transition-ui), color var(--transition-ui); 
}
.mobile-menu-panel .menu-item-has-children.show-submenu > .submenu-arrow-toggle::after { 
    color: var(--color-border); 
    transform: translateY(-50%) rotate(180deg); 
}
.mobile-menu-panel .sub-menu { 
    display: none; 
    padding-left: 20px; 
    background-color: rgba(0, 0, 0, 0.2); 
    list-style: none; 
}
.mobile-menu-panel .menu-item-has-children.show-submenu > .sub-menu { display: block; }
.mobile-menu-panel .sub-menu a { 
    font-size: 1.1rem !important; 
    padding: 12px 15px !important; 
    color: var(--color-text) !important; 
}
.mobile-menu-panel .sub-menu a:hover { color: var(--color-border) !important; }

/* Disponibilité Badge */
.availability-badge, 
.availability-badge-mobile { 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    padding: 6px 12px; 
    border-radius: 999px; 
    font-size: 12px; 
    font-weight: 600; 
    border: 1.5px solid; 
    transition: all var(--transition-ui); 
}
.availability-badge-mobile { font-size: 11px; padding: 4px 8px; }
.availability-badge.available, 
.availability-badge-mobile.available { 
    background-color: rgba(34, 197, 94, 0.15); 
    color: #22c55e; 
    border-color: #22c55e; 
}
.availability-badge.busy, 
.availability-badge-mobile.busy { 
    background-color: rgba(249, 115, 22, 0.15); 
    color: #f97316; 
    border-color: #f97316; 
}
.availability-badge.offline, 
.availability-badge.offline-custom, 
.availability-badge-mobile.offline, 
.availability-badge-mobile.offline-custom { 
    background-color: rgba(107, 114, 128, 0.15); 
    color: #6b7280; 
    border-color: #6b7280; 
}
/* ==========================================================================
   3. BOUTONS (Système Universel Final avec Signature "Halo Blanc")
   ========================================================================== */

/* Style de base du bouton */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none !important;
  white-space: nowrap;
  padding: 12px 28px;
  
  /* Typographie */
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  
  /* Couleurs par défaut */
  background-color: var(--color-highlight);
  color: var(--color-text-on-highlight) !important;
  border: 2px solid var(--color-highlight);
  border-radius: var(--radius-btn);
  
  /* Ombre jaune initiale (repos) */
  box-shadow: 0 0 15px 2px rgba(245, 227, 66, 0.35); 
  
  /* Animation Ripple (Vague interne) */
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 🌊 L'effet d'onde (Ripple) interne */
.button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

/* Déclenchement de la vague au survol */
.button:hover::before {
  width: 300px;
  height: 300px;
}

/* ✨ VOTRE SIGNATURE : Changement Blanc + Halo Lumineux */
.button:hover, .button:focus {
  /* Le fond devient blanc pur */
  background-color: var(--color-white);
  /* Le texte prend la couleur de la bordure (violet) */
  color: var(--color-border) !important;
  border-color: var(--color-border);
  
  /* Petit soulèvement */
  transform: translateY(-2px);
  
  /* LE HALO BLANC PUISSANT */
  box-shadow: 0 4px 25px 5px rgba(255, 255, 255, 0.6);
}

/* --- Variantes --- */

/* Variante Secondaire (Transparent) */
.button.secondary {
  background-color: transparent;
  color: var(--color-highlight) !important;
  border-color: var(--color-highlight);
  box-shadow: none;
}

.button.secondary:hover, .button.secondary:focus {
  background-color: rgba(245, 227, 66, 0.1); /* Légère teinte jaune */
  color: var(--color-highlight) !important;
  border-color: var(--color-highlight);
  /* Halo blanc sur le secondaire aussi */
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); 
  transform: translateY(-2px);
}

/* Variante Ghost (Transparent discret) */
.button.secondary-ghost {
  background-color: transparent;
  color: var(--color-text) !important;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.button.secondary-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-highlight);
  color: var(--color-highlight) !important;
}

/* --- Optimisation Mobile (Indispensable pour le header) --- */
@media (max-width: 768px) {
  .header-mobile .button { 
    padding: 8px 12px; 
    font-size: 14px; 
  }
  .header-mobile .button i { 
    font-size: 1em; 
    margin-right: 5px; 
  }
  .header-mobile .button span { 
    display: block; 
  }
}
/* ==========================================================================
   4. FIL D'ARIANE (BREADCRUMBS)
   ========================================================================== */
.rank-math-breadcrumb-container { margin: 28px auto 18px auto; padding: 0 8px; max-width: 1200px; }
.rank-math-breadcrumb { font-size: 1rem; color: var(--color-text); }
.rank-math-breadcrumb a { color: var(--color-accent); text-decoration: underline dotted; }
.rank-math-breadcrumb a:hover, .rank-math-breadcrumb a:focus { color: var(--color-highlight); text-decoration: underline solid; }
.rank-math-breadcrumb span.separator { margin: 0 8px; color: var(--color-accent); }

.breadcrumb { padding: 1rem 0; margin-bottom: 2rem; font-size: 0.9rem; color: #666; background: #f8f9fa; border-bottom: 1px solid #e0e0e0; }
.breadcrumb a { color: #4A148C; text-decoration: none; transition: color 0.3s ease; }
.breadcrumb a:hover { color: #7B1FA2; text-decoration: underline; }
.breadcrumb span { color: #333; font-weight: 500; }

/* Dark Mode Auto */
@media (prefers-color-scheme: dark) {
    .breadcrumb { background: #1a1a1a; border-bottom-color: #333; color: #ccc; }
    .breadcrumb a { color: #9575CD; }
    .breadcrumb span { color: #fff; }
}
/* ==========================================================================
   5. PAGE DE RÉSULTATS DE RECHERCHE
   ========================================================================== */
.search-results-page .section-title { font-size: 28px; color: var(--color-accent); text-align: center; margin-bottom: 30px; }
.search-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 18px; padding: 18px 12px; margin-bottom: 24px; }
.search-filters .filter-button { padding: 8px 18px; font-size: 15px; font-weight: 600; font-family: var(--font-heading); color: var(--color-accent); border: 2px solid var(--color-accent); background-color: transparent; border-radius: 25px; cursor: pointer; text-transform: capitalize; transition: all 0.3s ease; }
.search-filters .filter-button:hover:not(.active), .search-filters .filter-button:focus:not(.active) { background-color: var(--color-accent); color: var(--color-bg-body); }
.search-filters .filter-button.active { background-color: var(--color-accent); color: var(--color-bg-body); box-shadow: 0 0 0 2px var(--color-highlight); }
.search-loading { display: none; justify-content: center; margin: 16px auto; }
.search-loading .loader { width: 24px; height: 24px; border: 4px solid var(--color-accent); border-top-color: transparent; border-radius: 50%; animation: spin 0.8s linear infinite; }
.no-filter-results { text-align: center; font-size: 18px; margin-top: 24px; }
.search-results-list { display: flex; flex-direction: column; gap: 28px; max-width: 900px; margin: 0 auto; padding: 0 20px; }
.search-result-item { display: flex; align-items: flex-start; border-radius: 14px; box-shadow: 0 2px 18px rgba(131, 14, 231, 0.13); overflow: hidden; border: 1.5px solid var(--color-border); background: var(--color-bg-body); opacity: 1; transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.35s ease; }
.search-result-item:hover { box-shadow: 0 4px 24px rgba(131, 14, 231, 0.2); transform: translateY(-3px); }
.search-result-item.hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }
.result-thumbnail { min-width: 95px; max-width: 100px; padding: 24px 16px; }
.result-thumbnail img { border-radius: 10px; width: 72px; height: 72px; object-fit: cover; }
.result-content { flex: 1; padding: 22px 28px 18px 0; }
.search-result-item h2 { margin: 0 0 9px 0; font-size: 22px; }
.search-result-item h2 a { color: var(--color-highlight); text-decoration: none; }
.search-result-item p { font-size: 17px; margin-top: 6px; line-height: 1.7; }
.pagination { margin-top: 35px; text-align: center; }
.pagination a, .pagination span.current { color: var(--color-text); margin: 0 6px; padding: 7px 16px; border: 1px solid var(--color-border); border-radius: 5px; font-weight: 600; font-size: 16px; display: inline-block; }
.pagination a:hover, .pagination span.current { background: var(--color-accent); color: var(--color-bg-body); border-color: var(--color-accent); }
.pagination span.dots { padding: 7px 10px; color: var(--color-text); border: 1px solid transparent; }

/* ==========================================================================
   6. FOOTER & NEWSLETTER
   ⚠️ NE PAS MODIFIER - Fonctionne parfaitement
   ========================================================================== */

.footer-container { 
    background: rgba(27, 0, 51, 0.95); 
    padding: 50px 20px 30px 20px; 
    color: var(--color-text); 
}

/* Footer Social */
.footer-social { 
    width: 100%; 
    text-align: center; 
    margin-bottom: 40px; 
}
.footer-social h4 { 
    font-family: var(--font-heading); 
    font-size: 20px; 
    color: var(--color-highlight); 
    margin-bottom: 15px; 
}
.footer-social .social-icons { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 25px; 
    margin-top: 10px; 
    padding: 0; 
    list-style: none; 
}
.footer-social .social-icons a i { 
    font-size: 22px; 
    color: var(--color-accent); 
    transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease; 
    filter: drop-shadow(0 0 0 rgba(255, 215, 0, 0));
}
.footer-social .social-icons a:hover i {
    color: var(--color-white); 
    transform: scale(1.1) translateY(-3px); 
    filter: drop-shadow(0 0 8px var(--color-accent)); 
}

/* Footer Badge Avis */
.footer-badge-avis { 
    margin-top: 30px; 
}

.footer-badge-avis .button .fa-star { 
    color: #F7B500; 
    font-size: 1.1em; 
}

.footer-badge-note { 
    margin-left: 0.5em;
    background: var(--color-text-on-highlight); 
    color: var(--color-highlight); 
    border-radius: 8px; 
    font-weight: bold; 
    padding: 2px 8px; 
}

/* Footer Columns */
.footer-columns { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: flex-start; 
    gap: 40px; 
    width: 100%; 
    text-align: center; 
}
.footer-column { 
    flex: 1 1 200px; 
    max-width: 220px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 10px; 
}
.footer-column h4 { 
    font-family: var(--font-heading); 
    font-size: 20px; 
    color: var(--color-accent); 
    margin-bottom: 10px; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
}
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column a { 
    text-decoration: none; 
    color: var(--color-text); 
    font-size: 14px; 
    opacity: 0.85; 
    transition: color 0.3s ease, opacity 0.3s ease; 
}
.footer-column a:hover { 
    color: var(--color-accent); 
    opacity: 1; 
}

/* Footer Bottom */
.footer-bottom { 
    width: 100%; 
    text-align: center; 
    padding-top: 40px; 
    margin-top: 20px; 
    border-top: 1px solid rgba(131, 14, 231, 0.2); 
    font-size: 12px; 
}

/* Newsletter Footer */
.footer-newsletter { 
    background: rgba(27, 0, 51, 0.85); 
    padding: 26px 20px 18px; 
    border-radius: 20px; 
    box-shadow: 0 0 18px rgba(131, 14, 231, 0.2); 
    max-width: 450px; 
    margin: 24px auto 12px; 
    text-align: center; 
}
.newsletter-title { 
    font-family: var(--font-heading); 
    font-size: 1.25rem; 
    color: var(--color-highlight); 
    margin-bottom: 10px; 
}
.newsletter-form .newsletter-fields { 
    display: flex; 
    flex-wrap: nowrap; 
    gap: 0.5rem; 
}
.newsletter-form input[type="email"],
.newsletter-input { 
    flex: 1; 
    width: 100%; 
    padding: 10px 14px; 
    border: 1.5px solid var(--color-border); 
    border-radius: 14px; 
    font-size: 1rem; 
    background: var(--color-bg-section); 
    color: #fff; 
    transition: border-color 0.2s, box-shadow 0.2s; 
    box-shadow: 0 2px 12px rgba(131, 14, 231, 0.19); 
}
.newsletter-form input[type="email"]:focus { 
    border-color: var(--color-highlight); 
    box-shadow: 0 0 10px rgba(245, 227, 66, 0.26); 
}
.newsletter-consent { 
    font-size: 0.9rem; 
    margin-top: 1rem; 
}
.newsletter-response { 
    min-height: 24px; 
    font-weight: bold; 
    text-align: center; 
    margin-top: 1rem; 
}
.newsletter-success { color: var(--color-success); }
.newsletter-error { color: var(--color-error); }
.newsletter-privacy-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

@media (max-width: 480px) {
    .newsletter-fields { 
        flex-direction: column; 
        gap: 0.75rem; 
    }
    .newsletter-fields .newsletter-input, 
    .newsletter-fields .button { 
        width: 100%; 
    }
}

/* Countdown Footer */
.footer-countdown-section { 
    text-align: center; 
    background-color: rgba(0, 0, 0, 0.2); 
    padding: 25px 20px; 
    border-radius: 12px; 
    border: 1px solid var(--color-border); 
    max-width: 500px; 
    margin: 0 auto 40px auto; 
}
.countdown-title,
#countdown-title { 
    font-family: var(--font-heading); 
    font-size: 1.3rem; 
    color: var(--color-highlight); 
    margin: 0 0 15px 0; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}
.live-countdown { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
}
.countdown-block { 
    display: flex; 
    flex-direction: column; 
}
.countdown-number { 
    font-family: var(--font-heading); 
    font-size: 2.5rem; 
    font-weight: 700; 
    color: var(--color-text); 
    line-height: 1.1; 
}
.countdown-label { 
    font-family: var(--font-body); 
    font-size: 0.8rem; 
    color: var(--color-accent); 
    text-transform: uppercase; 
}

/* Scroll Top Button */
#scroll-top,
.scroll-top { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    width: 50px; 
    height: 50px; 
    background-color: var(--color-border); 
    color: white; 
    border-radius: 50%; 
    border: none; 
    cursor: pointer; 
    z-index: 1000; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(10px); 
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 24px; 
}
#scroll-top.show,
.scroll-top.show { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}
#scroll-top:hover,
.scroll-top:hover { 
    background-color: var(--color-highlight); 
    color: var(--color-bg-body); 
}
/* ==========================================================================
   7. SYSTÈME DE CARTES & GRILLES (Version Fusionnée & Unifiée)
   ========================================================================== */

/* --- 1. La Grille (Layout) --- */
.cards-container,
.services-grid,
.cta-grid {
    display: grid;
    /* Responsive intelligent : colonnes de min 280px qui s'étirent */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .cards-container, .services-grid, .cta-grid {
        gap: 20px;
        /* Sur mobile, on force 1 colonne pour éviter l'écrasement */
        grid-template-columns: 1fr;
    }
}

/* --- 2. Les Cartes (Design Unifié) --- */
/* On cible TOUTES les variantes possibles pour unifier le style */
.card,
.service-card,
.solution-card,
.cta-card,
.service-box {
    /* Fond & Bordure via vos variables :root */
    background: var(--glass-bg, rgba(40, 0, 68, 0.75)); /* Fallback si variable manquante */
    border: 1px solid var(--glass-border, rgba(131, 14, 231, 0.3));
    border-radius: 16px;
    padding: var(--card-padding, 30px);
    
    /* Mise en page */
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Ombre de base */
    box-shadow: var(--shadow-base, 0 10px 50px rgba(0, 0, 0, 0.4));
}

/* ✨ EFFET WAHOU : Hover des cartes */
.card:hover,
.service-card:hover,
.solution-card:hover,
.cta-card:hover,
.service-box:hover {
    transform: translateY(-8px) scale(1.02);
    /* Halo mystique jaune et violet */
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.2),
        0 10px 40px rgba(131, 14, 231, 0.4);
    border-color: var(--color-accent);
}

/* --- 3. Éléments internes des cartes --- */

/* Titres */
.card h3, .service-card h3, .cta-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-highlight);
    margin-bottom: 15px;
}

/* Texte */
.card p, .service-card p, .cta-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

/* Icônes (Zoom au survol) */
.card-icon,
.service-card .card-icon,
.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-accent);
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation de l'icône quand on survole la carte parente */
.card:hover .card-icon,
.service-card:hover .card-icon,
.solution-card:hover .solution-icon,
.cta-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 10px var(--color-accent));
}

/* --- 4. Badges (Fusion Style 1 & 2) --- */
.solution-badge,
.badge-popular {
    position: absolute;
    top: 15px; 
    /* Centrage horizontal ou placement à droite selon la classe */
    right: 15px; 
    
    background: var(--color-highlight);
    color: var(--color-bg-section);
    padding: 4px 12px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

/* Exception pour le badge centré (style solution) */
.solution-badge {
    right: auto;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-bg-body);
    padding: 5px 15px;
}
/* ==========================================================================
   8. FAQ - SYSTÈME UNIFIÉ
   ⚠️ IMPORTANT : Plus qu'une seule version de FAQ pour tout le site
   ========================================================================== */

/* Container FAQ */
.faq-section,
.faq-section-unified {
    /* ✨ GLASSMORPHISM MYSTIQUE - Style identique à process-section */
    background: rgba(27, 0, 51, 0.6) !important;
    backdrop-filter: blur(20px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
    
    /* Bordures dorées/violettes */
    border-top: 1px solid rgba(255, 215, 0, 0.15) !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15) !important;
    border-left: 1px solid rgba(131, 14, 231, 0.2) !important;
    border-right: 1px solid rgba(131, 14, 231, 0.2) !important;
    
    /* Bords arrondis */
    border-radius: 24px !important;
    
    /* Ombre portée */
    box-shadow: 0 8px 32px rgba(131, 14, 231, 0.1) !important;
    
    /* Marges latérales - COMME PROCESS-SECTION */
    margin: 60px 20px 0 20px !important; /* 60px en haut (espace avec section précédente) */
    
    /* Padding */
    padding: clamp(60px, 10vw, 80px) 20px !important;
    
    /* Autres propriétés */
    position: relative;
    overflow: hidden;
    width: auto !important; /* Au lieu de 100% */
}


.faq-section .container,
.faq-section-unified .container {
    max-width:  1300px;
    margin: 0 auto;
}

.faq-section .section-title,
.faq-section-unified .section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--color-highlight);
    text-align: center;
    margin-bottom: 50px;
    font-family: var(--font-heading);
}

/* 📋 FAQ Item */
.faq-item,
.faq-item-unified,
.faq-item-v2 {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* ✨ Hover Effect (Effet Wahou #26) */
.faq-item:hover,
.faq-item-unified:hover,
.faq-item-v2:hover {
    border-color: var(--glass-border-glow);
    box-shadow: 0 0 20px rgba(131, 14, 231, 0.2);
}

.faq-item.active,
.faq-item-unified.active,
.faq-item-v2.active {
    background: var(--glass-bg-hover);
    border-color: var(--color-accent);
}

/* Question (Bouton) */
.faq-question,
.faq-question-unified,
.faq-question-v2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: color 0.3s ease;
}

.faq-question:hover,
.faq-question-unified:hover,
.faq-question-v2:hover {
    color: var(--color-highlight);
}

/* 🔄 Icône + Rotation (Effet Wahou #24) */
.faq-question::after,
.faq-question-unified::after,
.faq-question-v2::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.faq-item.active .faq-question::after,
.faq-item-unified.active .faq-question-unified::after,
.faq-item-v2.active .faq-question-v2::after {
    transform: rotate(45deg);
}

/* 📖 Answer (Smooth Open - Effet Wahou #25) */
.faq-answer,
.faq-answer-unified,
.faq-answer-v2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer,
.faq-item-unified.active .faq-answer-unified,
.faq-item-v2.active .faq-answer-v2 {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 20px;
}

.faq-answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Variante pour pages piliers (faq-accordion) */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question,
    .faq-question-unified,
    .faq-question-v2 {
        margin: 40px 10px 0 10px !important;
        padding: 40px 15px !important;
        border-radius: 16px !important;
    }
    .faq-answer-content {
        padding: 0 20px 15px;
    }
}
/* ==========================================================================
   9. TÉMOIGNAGES (Système Unifié Final)
   ========================================================================== */

/* --- 1. Le Conteneur Global (Glassmorphism) --- */
.testimonials-section,
.testimonials-section-v2,
.testimonial-section-wrapper {
    background: var(--glass-bg, rgba(27, 0, 51, 0.6));
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: var(--shadow-base, 0 8px 32px rgba(131, 14, 231, 0.1));
    border-radius: 24px;
    border: 1px solid rgba(131, 14, 231, 0.2);
    padding: var(--section-padding, clamp(60px, 10vw, 80px) 20px);
    margin: 40px 20px 0 20px;
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--color-highlight);
    text-align: center;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.testimonials-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* --- 2. Le Carrousel --- */
.testimonials-carousel,
.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    overflow: hidden;
}

.testimonial-slides-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}

/* --- 3. La Carte Témoignage --- */
.testimonial-card,
.testimonial-card-v2 {
    background: var(--color-bg-section);
    border: 1px solid rgba(131, 14, 231, 0.3);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* L'effet "Grosse Guillemet" (Récupéré du Style 2) */
.testimonial-quote-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: var(--color-accent);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none; /* Pour ne pas gêner la sélection du texte */
}

/* Les Étoiles (Récupéré du Style 1 - Important) */
.testimonial-stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative; /* Au-dessus de la guillemet */
    z-index: 2;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.9;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

/* --- 4. L'Auteur --- */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(131, 14, 231, 0.2);
    width: 100%;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-border), var(--color-accent));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 2px solid var(--color-accent); /* Ajout bordure Style 2 */
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.author-name {
    font-weight: bold;
    color: var(--color-highlight);
    font-size: 1.1rem;
}

.author-verified {
    font-size: 0.9rem;
    color: #4ade80; /* Vert "Vérifié" plus standard */
}

/* --- 5. Navigation (Dots) --- */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(131, 14, 231, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot.active {
    width: 40px;
    border-radius: 10px;
    background-color: var(--color-accent); /* Orange/Or */
}

/* --- 6. Responsive --- */
/* ==========================================================================
   CORRECTIF MOBILE : TÉMOIGNAGES (VERSION LARGEUR MAXIMALE)
   ========================================================================== */
@media (max-width: 768px) {
    
    /* 1. LE CONTENEUR : On force la largeur totale et on vire les marges de sécurité */
    .testimonial-section-wrapper .container {
        padding-left: 5px !important;  /* Quasi collé au bord */
        padding-right: 5px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* 2. LE CARROUSEL : On s'assure qu'il ne se centre pas avec des marges */
    .testimonials-carousel {
        width: 100% !important;
        margin: 20px 0 !important;
    }

    /* 3. LE SLIDE : On retire le padding qui écrasait la carte */
    .testimonial-slide {
        padding: 0 !important; 
        width: 100% !important;
    }

    /* 4. LA CARTE : C'est ici qu'on gagne de la place pour le texte */
    .testimonial-card-v2 {
        /* On réduit l'espace vide à l'intérieur de la carte violette */
        padding: 25px 15px !important; 
        
        /* On force la carte à prendre 98% de la largeur disponible */
        width: 98% !important; 
        margin: 0 auto !important;
        
        /* On réduit un peu l'arrondi pour faire moins "boite" */
        border-radius: 12px !important;
    }

    /* 5. LE TEXTE : Ajustement pour la lisibilité */
    .testimonial-text {
        font-size: 1rem !important; 
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    
    /* 6. L'AUTEUR : On remonte un peu le bloc auteur */
    .testimonial-author {
        margin-top: 10px !important;
        padding-top: 15px !important;
    }
}
/* ==========================================================================
   10. ANIMATIONS & KEYFRAMES (Système Unifié Complet)
   🌟 Tous les effets "Wahou" préservés + Header Vivant
   ========================================================================== */

/* --- 1. Bibliothèque d'Animations --- */

/* 🔄 Bounce Scroll (Chevron) */
@keyframes bounce-scroll {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-15px) rotate(45deg); }
    60% { transform: translateY(-8px) rotate(45deg); }
}

/* 📥 Fade In Down (Titres) */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 📤 Fade In Up (Cartes & Sections) */
@keyframes fadeInUP {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 🌊 Pulse Big Dot / Badges */
@keyframes pulse-big-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* 🎈 Float Icon (Survol) */
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 🔄 Spin (Loader) */
@keyframes spin { 
    to { transform: rotate(360deg); } 
}

/* ⭐ Mystical Float (Particules) */
@keyframes mysticalFloat { 
    0%, 100% { transform: translate(0, 0) scale(0.8); opacity: 0.3; } 
    25% { transform: translate(var(--float-x, 100px), var(--float-y, -150px)) scale(1.2); opacity: 0.6; } 
    50% { transform: translate(calc(var(--float-x, 100px) * 0.5), var(--float-y, -200px)) scale(1); opacity: 0.5; } 
    75% { transform: translate(calc(var(--float-x, 100px) * 1.5), calc(var(--float-y, -200px) * 0.7)) scale(1.1); opacity: 0.4; } 
}

/* 🌟 Move Stars (Header Nuit) */
@keyframes move-stars { 
    from { background-position: 0 0; } 
    to { background-position: -10000px 5000px; } 
}

/* --- 2. Implémentations Spécifiques --- */

/* Header Vivant (Effet Nuit - Récupéré du Style 2) */
.site-header.is-night {
    /* Assombrit le fond et ajoute les étoiles */
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), rgba(27, 0, 51, 0.95);
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://www.transparenttextures.com/patterns/stardust.png');
    animation: move-stars 200s linear infinite;
    backdrop-filter: blur(10px);
}

/* Placeholder Dynamique (Recherche) */
#header-search-field::placeholder { 
    transition: opacity 0.5s ease-in-out; 
}
#header-search-field.placeholder-fade::placeholder { 
    opacity: 0; 
}

/* Particules Mystiques (Conteneur) */
#particles-container { 
    position: absolute; 
    inset: 0; 
    overflow: hidden; 
    pointer-events: none; 
    z-index: 3; 
}

.mystical-particle { 
    position: absolute; 
    width: 4px; 
    height: 4px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%); 
    border-radius: 50%; 
    opacity: 0; 
    pointer-events: none; 
}
/* ==========================================================================
   11. SEO CONTENT SECTION (Version Fusionnée Optimale)
   ========================================================================== */

.seo-content-section {
    padding: clamp(60px, 10vw, 100px) 20px;
    margin: 40px 20px 0 20px; /* Ajoute un espace avec la section du dessus */
    position: relative; /* Nécessaire pour le design */
    
    /* Le fond "verre dépoli" pour la lisibilité */
    /* ✨ AMÉLIORATION #3 : Glassmorphism mystique */
    background: rgba(27, 0, 51, 0.6);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 8px 32px rgba(131, 14, 231, 0.1);
    /* background: rgba(27, 0, 51, 0.75); */ /* --color-bg-body avec 75% d'opacité */
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(131, 14, 231, 0.2);
}

.seo-content-inner {
    max-width: 900px; /* Style 1 (plus large) est mieux pour la lecture */
    margin: 0 auto;
    text-align: left; /* Style 2 préfère left, c'est mieux pour les longs textes SEO */
}

.seo-content-inner h2 {
    font-family: var(--font-heading); /* Important (Style 1) */
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-accent); /* Or/Jaune */
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

.seo-content-inner p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    opacity: 0.9;
    text-align: justify; /* Justifié pour faire "bloc propre" */
}

/* Gestion des boutons d'action (Uniquement dans Style 1) */
.seo-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(131, 14, 231, 0.1); /* Petite séparation interne */
}

.seo-cta p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-highlight);
    margin-bottom: 25px;
    text-align: center;
}

#conclusion-seo {
    margin-bottom: 60px; /* Espace de 60px avant le footer */
}

.daily-guidance-section {
    padding: 40px 20px; /* Espace standard */
    margin-top: 0; /* On ne chevauche plus le hero */
    position: relative;
    z-index: 2;
}

.daily-guidance-wrapper {
    /* Fond sombre semi-transparent pour bien faire ressortir le blanc */
    background: rgba(15, 0, 30, 0.85); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border: 1px solid rgba(255, 215, 0, 0.3); /* Bordure dorée légère */
    border-radius: 16px;
    padding: 30px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.daily-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-accent); /* Garde le doré pour la date */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Cible le conteneur ET le texte généré par le JS */
.daily-quote-content,
.daily-phrase-text {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    
    /* ⚪️ COULEUR BLANCHE FORCÉE ⚪️ */
    color: #ffffff !important; 
    
    line-height: 1.5;
    font-style: italic;
    
    /* Ombre noire pour lisibilité maximale */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9); 
    
    opacity: 1 !important; /* On s'assure que rien n'est transparent */
}
/* ==========================================================================
                                        PAGES
   ========================================================================== */


/* ==========================================================================
   12. CARTE DU JOUR
   ========================================================================== */
/* Conteneur principal */
.card-of-the-day-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    text-align: center;
}

/* Titres */
.card-of-the-day-header h1 { 
    font-size: 2.5rem; 
    color: var(--color-accent); 
}
.card-of-the-day-header p { 
    font-size: 1.1rem; 
    color: var(--color-text); 
    opacity: 0.8; 
    transition: opacity 0.5s; 
}

/* --- GRILLE DES CARTES --- */
.tarot-deck-grid {
    margin: 40px 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.tarot-card {
    width: 140px;
    height: 224px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.card-face {
    position: absolute; 
    width: 100%; 
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.card-back {
    background-color: var(--color-bg-body);
    border: 2px solid var(--color-border);
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
}

.card-front { 
    background-color: #000; /* Fond noir pour le letterboxing de l'image */
    transform: rotateY(180deg);
    background-size: contain; 
    background-position: center center;
    background-repeat: no-repeat;
}

.tarot-card.is-flipped {
    transform: rotateY(180deg);
}

/* --- VERSION DESKTOP (>= 1024px) --- */
@media (min-width: 1024px) {
    .tarot-deck-grid {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        height: 380px;
        position: relative;
    }
    .tarot-card-wrapper {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform-origin: bottom center;
        --angle: calc((var(--card-index) - 10.5) * 3.5deg);
        --translateX: calc((var(--card-index) - 10.5) * 35px);
        transform: translateX(var(--translateX)) rotate(var(--angle));
        transition: transform 0.4s ease, opacity 0.4s ease;
    }
    .tarot-deck-grid:not(.choice-made) .tarot-card-wrapper:hover {
        transform: translateX(var(--translateX)) rotate(var(--angle)) translateY(-25px) scale(1.05);
        z-index: 100;
    }

    /* CENTRAGE de la carte choisie */
    .tarot-card-wrapper.is-chosen {
        z-index: 200;
        transform: translateX(-50%) translateY(-20px) scale(1.15);
    }
    .tarot-deck-grid.choice-made .tarot-card-wrapper:not(.is-chosen) {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
}

/* --- VERSION MOBILE (< 1023px) --- */
@media (max-width: 1023px) {
    /* Grille harmonieuse à 3 colonnes */
    .tarot-deck-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .tarot-card-wrapper {
        width: 100%;
    }
    .tarot-card {
        width: 100%;
        padding-bottom: 160%; /* Ratio hauteur/largeur de la carte */
        height: 0;
    }
    /* On cache la grille une fois le choix fait */
    .tarot-deck-grid.choice-made {
        transform: scale(0.95);
        opacity: 0;
        height: 0;
        margin: 0;
        overflow: hidden;
    }
}

/* --- CONTENEUR INTERPRETATION (fusion avec style de la capture d'écran) --- */
.interpretation-container {
    display: none;
    opacity: 0;
    text-align: left;
    margin-top: 40px;
    transition: opacity 0.8s ease-in-out;
    border: 1px solid rgba(131, 14, 231, 0.3);
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(175deg, rgba(27, 0, 51, 0.95) 0%, rgba(10, 0, 20, 0.85) 100%);
    backdrop-filter: blur(5px);
}

.interpretation-container.is-visible {
    display: block;
    opacity: 1;
}

.card-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.interpretation-block {
    margin-bottom: 35px;
    position: relative;
    padding-left: 25px;
}

.interpretation-block::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: rgba(131, 14, 231, 0.3);
}

.interpretation-block::after {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    height: 10px;
    width: 10px;
    background-color: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent);
}

.interpretation-block-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.interpretation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--color-accent);
    position: relative;
    z-index: 2;
}

.interpretation-block h3 {
    margin: 0;
    font-size: 1.5rem;
}

.interpretation-block p {
    padding-left: 0; 
    opacity: 0.9;
    line-height: 1.7;
}

.interpretation-cta {
    display: flex;
    flex-direction: column; /* Aligne les enfants (le texte et le bouton) verticalement */
    align-items: center;   /* Centre ces enfants horizontalement */
    gap: 15px;             /* Ajoute un espace entre le texte et le bouton */
    margin-top: 40px;
}

/* Le bouton n'a plus besoin de se soucier de son affichage, le parent gère tout */
#cta-approfondir {
    width: auto; /* La largeur s'adapte simplement au texte */
    padding: 14px 30px;
}

/* Conteneur pour la carte choisie sur mobile */
.mobile-result-card {
    display: none;
}
@media (max-width: 1023px) {
    .mobile-result-card {
        display: block;
        max-width: 200px;
        margin: 0 auto 30px auto;
    }
    .interpretation-container {
        padding: 25px;
    }
}

/*==========================================================================
   13. PAGE 404 (Version Pleine Page Immersive)
   ========================================================================== */

.page-404-container {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  text-align: center;
  padding: 40px 20px;
  position: relative;
  
  /* L'image est maintenant gérée dans 404.php */
  background-size: cover;
  background-position: center center;
}

/* On ajoute un voile sombre pour que le texte soit lisible */
.page-404-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 0, 51, 0.7); /* Voile semi-transparent */
    z-index: 1;
}

/* On s'assure que le contenu passe AU-DESSUS du voile */
.page-404-container h1,
.page-404-container .error-message,
.page-404-container .error-actions {
    position: relative;
    z-index: 2;
}

.page-404-container h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  color: var(--color-highlight);
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.error-message {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

.error-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;

}
/* ==========================================================================
   14. PAGE D'ACCUEIL - PORTAIL IMMERSIF
   ========================================================================== */

/* On force la page principale à ne pas avoir de marge/padding par défaut pour que le portail prenne tout l'espace */
.home #content.site-content {
    margin: 0;
    padding: 0;
}

/* Comportement spécial du header sur la page d'accueil */
.home .site-header {
    position: fixed;
    width: 100%;
    background-color: transparent;
    border-bottom-color: transparent;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 4rem) !important; /* Plus gros : 2.5rem -> 4rem */
    font-weight: 700;
    color: #ffffff !important; /* Blanc pur */
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); /* Ombre pour lisibilité */
    line-height: 1.2;
    letter-spacing: -0.5px;
    animation: fadeInDown 1s ease-out;
}

/* Animation d'apparition */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive mobile */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2rem !important;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
}

/* Style du header quand l'utilisateur a scrollé */
.home .site-header.scrolled {
    background-color: rgba(27, 0, 51, 0.85); /* Utilise votre couleur de fond de header */
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(131, 14, 231, 0.2); /* Utilise votre couleur de bordure */
}

/* --- Le Portail --- */
.hero-portal {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-text);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* !! ACTION REQUISE : Changez le chemin vers votre image de fond !! */
    background-image: url('https://dev.wilfried-medium.fr/wp-content/uploads/2025/07/img-accueil.png'); 
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* L'effet parallax simple */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 4;
    animation: fadeIn 1.5s ease-out;
}

.hero-question {
    font-size: clamp(2rem, 5vw, 3rem); /* Taille de police responsive */
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

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

/* Effet "glow" subtil sur les boutons du portail */
.hero-cta-container .button {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta-container .button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 25px 3px var(--color-accent);
}

.hero-cta-container .button.secondary:hover {
    box-shadow: 0 0 25px 3px var(--color-highlight);
}

/* Incitation au scroll */
.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-down a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.hero-scroll-down a:hover {
    opacity: 1;
}

.hero-scroll-down .chevron {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(45deg);
    margin: 10px auto 0;
    animation: bounce-scroll 2.5s infinite;
}

.pacte-section {
    background-color: transparent; /* Le fond de la page est déjà géré par le body */
    padding: clamp(80px, 15vw, 150px) 20px; /* On augmente le padding pour l'effet de superposition */
    border-bottom: 1px solid rgba(131, 14, 231, 0.2);
    overflow: hidden; 
}

.pacte-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative; /* Indispensable pour la superposition */
}

/* --- DESIGN DESKTOP (par défaut) --- */

.pacte-image-col {
    flex: 0 0 clamp(250px, 30vw, 350px); /* Taille de l'image responsive */
    position: relative;
    z-index: 2; /* L'image passe au-dessus de la carte */
    /* On décale l'image vers la droite pour qu'elle "morde" sur le contenu */
    margin-right: -80px; 
}

.pacte-image-col img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 4px solid var(--color-border);
    box-shadow: 0 0 50px rgba(131, 14, 231, 0.5);
}

.pacte-content-col {
    flex: 1;
    /* La carte de contenu avec effet verre dépoli */
    background: rgba(40, 0, 68, 0.7); /* --color-bg-section avec 70% d'opacité */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(131, 14, 231, 0.3);
    border-radius: 16px;
    /* Padding important à gauche pour que le texte ne soit pas sous l'image */
    padding: 40px 40px 40px 120px; 
    z-index: 1;
}

.pacte-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-highlight);
    margin: 0 0 30px 0;
}

.pacte-manifesto-v2 {
    margin-bottom: 40px;
}

.manifesto-line {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUP 0.8s forwards;
}

.manifesto-line.sub-line {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--color-highlight);
    padding-left: 20px;
    margin-top: -10px;
}

.manifesto-line.final-line {
    margin-top: 30px;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}

.manifesto-line strong {
    color: var(--color-highlight);
}



.pacte-testimonial {
    background-color: rgba(0,0,0,0.2);
    border-left: 4px solid var(--color-border);
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUP 0.8s forwards;
    animation-delay: 0.8s;
}

.pacte-testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

.pacte-testimonial footer {
    text-align: right;
    font-size: 0.9rem;
    margin-top: 10px;
    color: var(--color-accent);
}

/* --- DESIGN MOBILE (< 992px) --- */
@media (max-width: 992px) {
    .pacte-container {
        flex-direction: column;
        margin-top: 80px; 
        align-items: stretch; /* Permet à la carte de prendre toute la largeur */
    }

    .pacte-image-col {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 160px;
        margin-right: 0; /* On annule la marge négative */
    }

    .pacte-content-col {
        width: 100%;
        /* La carte de fond semi-transparente comme demandé */
        background: rgba(40, 0, 68, 0.7); /* --color-bg-section avec 70% d'opacité */
        backdrop-filter: blur(10px);
        border: 1px solid rgba(131, 14, 231, 0.3);
        padding: 100px 20px 30px 20px; /* Padding haut pour l'image */
        text-align: center;
    }

    .pacte-testimonial footer {
        text-align: center;
    }
}

.solutions-section {
    padding: clamp(60px, 10vw, 100px) clamp(20px, 5vw, 40px);
    margin: 0 20px; /* Ajoute un espace sur les côtés pour l'effet panneau */
    
    /* NOUVEAU FOND : semi-transparent et flou pour toute la section */
    /* ✨ AMÉLIORATION #3 : Glassmorphism mystique */
    background: rgba(27, 0, 51, 0.6);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 8px 32px rgba(131, 14, 231, 0.1);
    /* background: rgba(27, 0, 51, 0.75); */ /* --color-bg-body avec 75% d'opacité */
    backdrop-filter: blur(16px);
    border-radius: 24px; /* Arrondis pour l'effet panneau flottant */
    border: 1px solid rgba(131, 14, 231, 0.2);
    
    position: relative;
}

/* Le séparateur est supprimé car le fond du conteneur suffit */
.solutions-section::before {
    display: none;
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    color: var(--color-highlight);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Taille min ajustée */
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.solution-card {
    /* FOND RESTAURÉ : Opaque pour un contraste parfait */
    background: var(--color-bg-section);
    border: 1px solid rgba(131, 14, 231, 0.3);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    
    /* Animation 100% CSS (se joue au chargement) */
    animation: fadeInUP 0.8s ease-out backwards;
}

/* Décalage de l'animation pour chaque carte */
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.4s; }
.solution-card:nth-child(4) { animation-delay: 0.6s; }

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(131, 14, 231, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-bg-body);
    white-space: nowrap;
}

.solution-badge.populaire { background-color: #f59e0b; }
.solution-badge.premium { background-color: var(--color-border); }
.solution-badge.ideal { background-color: #10b981; }


.solution-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}
.solution-title {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
}

.solution-description {
    margin-bottom: 30px;
    opacity: 0.8;
}

.solution-card .button {
    width: 100%;
}

/* -------------------------------------------------
   Section 2 : Bandeau Promo (Voyance 2026)
   ------------------------------------------------- */
.banner-promo {
    /* Style "verre poli" comme les autres sections */
    /* ✨ AMÉLIORATION #3 : Glassmorphism mystique */
    background: rgba(27, 0, 51, 0.6);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 8px 32px rgba(131, 14, 231, 0.1);
    /* background: rgba(27, 0, 51, 0.75); */ /* var(--color-bg-body) avec opacité */
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(131, 14, 231, 0.2); /* var(--color-border) avec opacité */
    padding: clamp(60px, 10vw, 80px) 20px;
    margin: 40px 20px 0 20px; /* Espace comme les autres panneaux */
    
    text-align: center;
    position: relative;
    overflow: hidden; /* S'assure que le flou est contenu */
}

.banner-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-highlight);
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.banner-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.7;
    opacity: 0.9;
}


/* -------------------------------------------------
   Section 3 : Trust Bar (Réassurance)
   ------------------------------------------------- */
.trust-bar-section {
    /* Style "verre poli" */
    /* ✨ AMÉLIORATION #3 : Glassmorphism mystique */
    background: rgba(27, 0, 51, 0.6);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 8px 32px rgba(131, 14, 231, 0.1);
    /* background: rgba(27, 0, 51, 0.75); */
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(131, 14, 231, 0.2);
    padding: clamp(40px, 8vw, 60px) 20px;
    margin: 40px 20px 0 20px;
    position: relative;
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-highlight);
    line-height: 1.2;
}

.trust-label-icon {
    font-size: 2.5rem;
    color: var(--color-highlight);
    line-height: 1.2;
}

.trust-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    opacity: 0.9;
}


/* -------------------------------------------------
   Section 5 : Services (Grille 3 colonnes)
   ------------------------------------------------- */
/* Modifie la grille existante .solutions-grid pour passer à 3 colonnes */
@media (min-width: 992px) {
    .solutions-section .services-v2-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Sur tablette, on reste à 2 colonnes */
@media (min-width: 768px) and (max-width: 991px) {
    .solutions-section .services-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solution-card .solution-icon {
    font-size: 3rem;
    line-height: 1;
}


/* -------------------------------------------------
   Section 6 : Processus en 4 étapes
   ------------------------------------------------- */
.process-section {
    /* Style "verre poli" */
    /* ✨ AMÉLIORATION #3 : Glassmorphism mystique */
    background: rgba(27, 0, 51, 0.6);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 8px 32px rgba(131, 14, 231, 0.1);
    /* background: rgba(27, 0, 51, 0.75); */
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(131, 14, 231, 0.2);
    padding: clamp(60px, 10vw, 80px) 20px;
    margin: 40px 20px 0 20px;
    position: relative;
    overflow: hidden;
}

.process-section .section-title {
    margin-bottom: 3rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
    /* Style carte interne */
    background: var(--color-bg-section);
    border: 1px solid rgba(131, 14, 231, 0.3);
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(131, 14, 231, 0.3);
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 3.25rem;
    right: -1rem;
    width: 100%;
    height: 2px;
    background: rgba(131, 14, 231, 0.3);
    z-index: 1;
    transform: translateX(50%);
}

.process-number {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--color-border);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 2;
    border: 3px solid var(--color-white);
    box-shadow: 0 0 15px var(--color-border);
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-highlight);
    margin: 0 0 0.5rem 0;
}

.process-step p {
    color: var(--color-text);
    opacity: 0.9;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}
/* ========================================================================
   PAGE À PROPOS - VERSION FINALE PRÊTE À INTÉGRER
   ✅ Doublons internes supprimés
   ✅ Sélecteurs déjà dans essai-1.css supprimés
   ✅ Prêt à copier-coller dans essai-1.css
   ======================================================================== */

/* ========================================================================
   PAGE À PROPOS - HOME_PAGE NETTOYÉ
   Doublons internes supprimés : 32 sélecteurs nettoyés
   Blocs supprimés : 37
   ======================================================================== */

.pilier-hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pilier-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 0, 51, 0.6);
    z-index: 1;
}

.pilier-hero-content {
    position: relative;
    z-index: 2;
}

.pilier-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    margin: 0;
    color: var(--color-highlight);
}

.pilier-hero .pilier-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-top: 15px;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    width: 24px;
    height: 24px;
    border-right: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);
    transform: translateX(-50%) rotate(45deg);
    animation: bounce-arrow 2s infinite;
    z-index: 2;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0) rotate(45deg); }
    40% { transform: translateX(-50%) translateY(-15px) rotate(45deg); }
    60% { transform: translateX(-50%) translateY(-7px) rotate(45deg); }
}

.pilier-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(40px, 8vw, 80px) 20px;
    overflow: hidden;
    color: var(--color-text);
}

.pilier-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    text-align: center;
    margin-top: 0; /* Changé de 60px à 0 car le padding est maintenant sur la section */
    margin-bottom: 50px;
    color: var(--color-highlight);
}

.pilier-content p, .pilier-content li {
    font-size: 1.1rem;
    line-height: 1.8;
}

.pilier-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
}

.pilier-section {
    margin: clamp(60px, 10vw, 100px) 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;

    /* L'EFFET VERRE DÉPOLI EST APPLIQUÉ ICI */
    background-color: rgba(40, 0, 68, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(131, 14, 231, 0.3);
    border-radius: 16px;
    padding: clamp(30px, 5vw, 50px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* ⚠️  DOUBLON ÉLIMINÉ - .pilier-section apparaissait 2 fois */


.pilier-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ⚠️  DOUBLON ÉLIMINÉ - .pilier-section.is-visible apparaissait 2 fois */


.intro-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: center;
}

.pilier-sommaire-revisite {
    /* Le fond est maintenant sur le parent .pilier-section */
    background: transparent;
    border: 1px solid var(--color-border);
    padding: 25px;
    border-radius: 12px;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-quote {
    /* Le fond est maintenant sur le parent .pilier-section */
    background: transparent;
    border-left: 3px solid var(--color-accent);
    padding: 20px;
}

@media (max-width: 900px) {
    .intro-grid, .feature-block { grid-template-columns: 1fr; }
    .feature-quote { margin-top: 30px; }
}

@media (max-width: 768px) {
    .pilier-image-text-block,
    .pilier-image-text-block.reverse { flex-direction: column; }
}

.apropos-hero-energy-card {
    background: radial-gradient(ellipse at top, rgba(131,14,231,0.15), transparent 70%),
                rgba(15, 0, 30, 0.92);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 
        0 10px 50px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
}
.energy-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.energy-card-title {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.energy-stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-highlight);
}

.energy-card-dot-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.energy-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,215,0,0.3);
}

.energy-card-dot.big {
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #ffd700 45%, #9b6f00);
    box-shadow: 0 0 14px rgba(255,215,0,0.8);
    animation: pulse-big-dot 2s ease-in-out infinite;
}

.energy-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.energy-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 5px;
}

.energy-pill {
    background: rgba(131,14,231,0.15);
    border: 1px solid rgba(131,14,231,0.3);
    border-radius: 20px;
    padding: 12px 18px;
    font-size: 0.9rem;
    margin-top: 20px;
}


.energy-pill span {
    color: var(--color-accent);
    font-weight: bold;
}

.energy-card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
}

.apropos-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-intro {
    margin-bottom: 60px;
}

.timeline-column-label {
    font-size: 0.9rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-highlight);
    margin-bottom: 20px;
}

.timeline-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.timeline-content {
    position: relative;
}

.timeline-list {
    position: relative;
    padding-left: 60px;
    list-style: none;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255,215,0,0.3) 20%, 
        rgba(255,215,0,0.3) 80%, 
        transparent 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: -48px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-accent), rgba(255,215,0,0.4));
    box-shadow: 0 0 20px rgba(255,215,0,0.5);
    border: 2px solid var(--color-bg-body);
}

.timeline-period {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-highlight);
    margin-bottom: 10px;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.toc-inline-section {
    padding: var(--section-padding) 20px;
    background: var(--section-bg);
}

.toc-inline-header {
    text-align: center;
    margin-bottom: 50px;
}

.toc-inline-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    animation: floatIcon 3s ease-in-out infinite;
}

.toc-inline-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-highlight);
    margin-bottom: 15px;
}

.toc-inline-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
}

.toc-inline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.toc-inline-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.toc-inline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(131, 14, 231, 0.1), transparent);
    transition: left 0.5s ease;
}

.toc-inline-card:hover::before {
    left: 100%;
}

.toc-inline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(131, 14, 231, 0.3);
    border-color: var(--glass-border-glow);
}

.toc-card-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent);
    font-weight: bold;
}

.toc-card-content {
    flex: 1;
}

.toc-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-highlight);
    margin-bottom: 5px;
}

.toc-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.toc-card-arrow {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.toc-inline-card:hover .toc-card-arrow {
    transform: translateX(5px);
}

body.page-apropos {
    background: radial-gradient(circle at top, rgba(255,215,0,0.08), transparent 55%),
                var(--color-bg-body);
}

.page-apropos .container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

.pilier-hero.apropos-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 90px;
    overflow: hidden;
}

.apropos-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: clamp(30px, 6vw, 60px);
    align-items: center;
    z-index: 2;
}

.apropos-hero-orb-secondary {
    position: absolute;
    border-radius: 999px;
    filter: blur(16px);
    opacity: 0.45;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1;
}

.apropos-hero-orb {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 30% 20%, #ffd700, transparent 60%),
                radial-gradient(circle at 80% 80%, #ff7ef8, transparent 60%);
    top: -80px;
    right: -80px;
    animation: float-slow 24s ease-in-out infinite alternate;
}

@keyframes float-slow {
    0%   { transform: translate3d(0,0,0) scale(1); }
    50%  { transform: translate3d(10px,-12px,0) scale(1.03); }
    100% { transform: translate3d(-14px,10px,0) scale(1.02); }
}

.apropos-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    background: rgba(10, 0, 35, 0.85);
    backdrop-filter: blur(18px);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.apropos-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #27c93f 40%, #154d20);
    box-shadow: 0 0 12px rgba(39, 201, 63, 0.8);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.apropos-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #ffffff;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.25;
}

.apropos-hero-title .highlight {
    color: var(--color-accent);
    text-shadow: 0 0 28px rgba(255, 215, 0, 0.28);
}

.apropos-hero-sub {
    max-width: 600px;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1.5rem;
    line-height: 1.7;
}

.apropos-hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 2.2rem;
}

.metric-item {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: radial-gradient(circle at top left, rgba(255,215,0,0.08), transparent 60%),
                rgba(5, 0, 25, 0.8);
    backdrop-filter: blur(14px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255,215,0,0.3);
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 6px;
    line-height: 1.3;
}

.metric-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-top: 4px;
}

.apropos-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 2.4rem;
}

.button.secondary-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff;
    box-shadow: none;
}

.button.secondary-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
}

.energy-card-header > div:first-child {
    flex: 1;
}

@keyframes pulse-big-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}


.pilier-intro-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.apropos-values-block {
    margin-top: 50px;
}

.value-highlight-quote {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 30px 40px;
    border-left: 4px solid var(--color-accent);
    background: rgba(10, 0, 35, 0.6);
    border-radius: 12px;
}

.value-highlight-quote blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ffffff;
    font-style: italic;
    margin: 0;
}




.pilier-image-text-block {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.image-part img {
    width: 100%;
    border-radius: 16px;
    border: 2px solid rgba(255,215,0,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.text-part p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.text-part strong {
    color: var(--color-accent);
    font-weight: 700;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.working-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.method-card {
    background: rgba(10, 0, 35, 0.8);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 30px 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.4);
}

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

.method-card h3 {
    font-size: 1.25rem;
    color: var(--color-accent);
    margin: 15px 0 12px;
}

.method-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.working-principles {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(10, 0, 35, 0.6);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 16px;
}

.principles-title {
    font-size: 1.5rem;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 25px;
}

.principles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.principles-list li {
    font-size: 1.05rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 10px;
}

.apropos-hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.apropos-hero-right {
    position: sticky;
    top: 100px;
}

@media (max-width: 992px) {
    .apropos-hero-right {
        position: static;
    }
}

.site-main {
    min-height: 60vh;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}