/* ==========================================================================
   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', "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", 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.woff2') format('woff2'),
         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.woff2') format('woff2'),
         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.woff2') format('woff2'),
         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.woff2') format('woff2'),
         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('/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; }

img.emoji {
    height: 1em;
    width: 1em;
    margin: 0 0.05em 0 0.1em;
    vertical-align: -0.1em;
    display: inline !important;
    max-width: none !important;
}

a { 
    color: var(--color-highlight); 
    text-decoration: none; 
    transition: color 0.3s ease; 
}
a:hover, a:focus {
    color: var(--color-accent);
    outline: none;
}
a.ps-btn-primary,
a.ps-btn-primary:hover,
a.ps-btn-primary:focus {
    color: #1a0033 !important;
}

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%;
    padding: 0;
    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; width: auto; }
.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; width: auto; }
.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);
    border-top: 1px solid rgba(131, 14, 231, 0.4);
}

/* Footer Social */
.footer-social { 
    width: 100%; 
    text-align: center; 
    margin-bottom: 40px; 
}
.footer-social h4,
.footer-social h3 { 
    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,
.footer-column h3 { 
    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 - alignées sur .pilier-section */
    max-width: 1100px;
    margin: 60px auto 60px !important;
    
    /* Padding */
    padding: clamp(60px, 10vw, 80px) 20px !important;
    
    /* Autres propriétés */
    position: relative;
    overflow: hidden;
    width: auto !important; /* Au lieu de 100% */
}

.product-faq-v2 {
    /* Style Système Unifié appliqué à votre classe */
    background: var(--glass-bg);
    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);
    padding: 4rem 2rem; margin-top: 2rem; position: relative; overflow: hidden;
}
.faq-header .section-title { font-size: 2.5rem; color: var(--color-highlight); text-align: center; margin-bottom: 1rem; }
.faq-header .section-subtitle { color: rgba(255,255,255,0.85); text-align: center; margin-bottom: 3rem; }

.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;
}

/* 🔄 Icône fa-plus FontAwesome : transition + rotation à l'ouverture/fermeture */
.faq-question .fa-plus,
.faq-question-unified .fa-plus,
.faq-question-v2 .fa-plus {
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-item.active .faq-question .fa-plus,
.faq-item-unified.active .faq-question-unified .fa-plus,
.faq-item-v2.active .faq-question-v2 .fa-plus {
    transform: rotate(45deg);
}

/* Masquer le ::after CSS quand l'icône fa-plus est présente pour éviter le doublon */
.faq-question:has(.fa-plus)::after,
.faq-question-unified:has(.fa-plus)::after,
.faq-question-v2:has(.fa-plus)::after {
    content: none !important;
    display: none !important;
}

/* Variante pour pages piliers (faq-accordion) */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-question-v2:has(.faq-q-icon)::after {
    content: none !important;
    display: none !important;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question,
    .faq-question-unified,
    .faq-question-v2 {
        margin: 0 !important;
        padding: 20px 15px !important;
        border-radius: 12px !important;
    }
    .faq-answer-content {
        padding: 0 20px 15px;
    }
}
/* ==========================================================================
   9. TÉMOIGNAGES (Système Unifié Final)
   ========================================================================== */

/* --- 1. Le Conteneur Global (Glassmorphism) --- */
/* ==========================================================================
   9. TÉMOIGNAGES (ADAPTÉ POUR VOTRE HTML)
   ========================================================================== */

/* --- 1. Le Conteneur Global (On cible votre classe HTML) --- */
.product-testimonials-v2 {
    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: 0 8px 32px rgba(131, 14, 231, 0.1);
    /* On garde le padding et les marges standards */
    padding: 4rem 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.testimonials-header .section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--color-highlight, #fff); /* Fallback blanc */
    margin-bottom: 1rem;
}

.testimonials-header .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* --- 2. La Grille (Au lieu du Carrousel) --- */
.testimonials-slider {
    display: grid;
    /* Responsive automatique : colonnes de 300px min */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* --- 3. La Carte Témoignage (Style Unifié appliqué) --- */
.testimonial-card-v2 {
    background: var(--color-bg-section, rgba(40, 0, 68, 0.6));
    border: 1px solid rgba(131, 14, 231, 0.3);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alignement gauche plus propre en grille */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Pour que toutes les cartes aient la même hauteur */
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(131, 14, 231, 0.4);
    border-color: var(--color-accent, #d4af37);
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Pousse l'auteur vers le bas */
}

/* --- 4. L'Auteur --- */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(131, 14, 231, 0.2);
    width: 100%;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #830EE7, #A020F0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
    color: #fff;
    font-size: 1rem;
}

.author-verified {
    font-size: 0.85rem;
    color: #4ade80; /* Vert vérifié */
}

/* --- 5. Responsive Mobile --- */
@media (max-width: 768px) {
    .testimonials-slider {
        grid-template-columns: 1fr; /* Une seule colonne */
        gap: 1.5rem;
    }
    
    .testimonial-card-v2 {
        padding: 2rem 1.5rem;
    }
}
.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);
    max-width: 1100px;
    margin: 40px auto 0;
    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);
}

/* --- Carrousel page À propos --- */
.carousel-viewport {
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background: rgba(131, 14, 231, 0.3);
    border: 1px solid rgba(131, 14, 231, 0.5);
    color: var(--color-accent);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(131, 14, 231, 0.6);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(131, 14, 231, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(245, 227, 66, 0.7);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #830EE7, var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: bold;
    color: var(--color-accent);
    font-size: 1rem;
}

.author-verified {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonial card centré pour le carrousel a-propos */
.testimonials-section-v2 .testimonial-card-v2 {
    text-align: center;
    padding: 40px;
}

.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,
    .testimonials-section-v2 .container {
        padding-left: 5px !important;
        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;
    }

    /* 7. CARROUSEL & PSYCHOPOMPE : Responsive mobile */
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* 8. SEO SECTION : Réduire le padding vertical sur mobile */
    .seo-content-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /* 8. SEO TEXTE : Supprimer la justification sur mobile (évite les grands espaces entre mots) */
    .seo-content-inner p {
        text-align: left;
    }

    /* 9. SEO BOUTONS : Empiler verticalement et éviter le débordement */
    .seo-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .seo-cta .button {
        width: 100%;
        max-width: 320px;
        text-align: center;
        box-sizing: border-box;
    }
}
/* ==========================================================================
   PAGE CONTACT — CSS FINAL
   À coller dans style.css, section "6. Pages Spécifiques"
   Remplace intégralement le bloc précédent /* PAGE CONTACT */


/* ── Wrapper global ─────────────────────────────────────────────────────── */
.contact-page {
    padding-bottom: 0;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.contact-hero {
    /* Panneau flottant — même pattern que .banner-promo */
    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);
    border-left: 1px solid rgba(131, 14, 231, 0.2);
    border-right: 1px solid rgba(131, 14, 231, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(131, 14, 231, 0.1);
    margin: 30px 20px 0;
    padding: clamp(40px, 7vw, 60px) 20px;
    text-align: center;
}
.contact-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.contact-h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--color-highlight);
    margin: 0;
    line-height: 1.15;
}
.contact-hero-sub {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 580px;
}

/* ── SÉLECTEUR DE BESOIN ─────────────────────────────────────────────────── */
.contact-selector-section {
    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);
    border-left: 1px solid rgba(131, 14, 231, 0.2);
    border-right: 1px solid rgba(131, 14, 231, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(131, 14, 231, 0.1);
    margin: 20px 20px 0;
    padding: clamp(32px, 5vw, 48px) 20px;
}
.contact-selector-label {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 215, 0, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin: 0 0 20px;
}
.contact-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 800px;
    margin: 0 auto;
}
.contact-selector-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 22px 14px;
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    border-radius: 16px;
    cursor: pointer;
    transition: all var(--transition-ui);
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-body);
    text-align: center;
}
.contact-selector-btn:hover,
.contact-selector-btn.active {
    border-color: var(--color-border);
    background: var(--glass-bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(131, 14, 231, 0.35);
    color: var(--color-text);
}
.contact-selector-icon {
    font-size: 2rem;
    line-height: 1;
}
.contact-selector-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-highlight);
    font-weight: 700;
}
.contact-selector-sub {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ── SECTION PRINCIPALE ──────────────────────────────────────────────────── */
.contact-main-section {
    background: rgba(20, 0, 40, 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);
    border-left: 1px solid rgba(131, 14, 231, 0.2);
    border-right: 1px solid rgba(131, 14, 231, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(131, 14, 231, 0.1);
    margin: 20px 20px 40px;
    padding: clamp(40px, 6vw, 60px) 20px;
}
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: start;
}

/* ── COLONNE INFOS ───────────────────────────────────────────────────────── */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Carte profil */
.contact-profile-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}
.contact-portrait {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.contact-profile-caption {
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-profile-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-highlight);
}
.contact-profile-job {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}
.contact-profile-stars {
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-top: 3px;
}
.contact-profile-stars i { margin-right: 1px; }

/* Coordonnées */
.contact-info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 6px 18px;
}
.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(131, 14, 231, 0.15);
    text-decoration: none;
    color: var(--color-text);
    transition: color var(--transition-ui);
}
.contact-info-row--last {
    border-bottom: none;
}
a.contact-info-row:hover {
    color: var(--color-highlight);
}
.contact-info-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(131, 14, 231, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-highlight);
    font-size: 0.88rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.9rem;
    line-height: 1.55;
}
.contact-info-content strong {
    font-size: 0.7rem;
    color: rgba(255, 215, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

/* Horaires */
.contact-hours-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 18px 18px;
}
.contact-hours-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-highlight);
    margin: 0 0 14px;
}
.contact-hours-title i {
    color: var(--color-accent);
    margin-right: 6px;
}
.contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}
.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(131, 14, 231, 0.12);
    font-size: 0.88rem;
}
.contact-hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-hours-day { color: rgba(255, 255, 255, 0.75); }
.contact-hours-time { color: var(--color-highlight); font-weight: 600; }
.contact-hours-closed .contact-hours-time {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
}

/* Carte CSS — aucune image externe */
.contact-map-block {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(131, 14, 231, 0.3);
    text-decoration: none;
    transition: border-color var(--transition-ui), box-shadow var(--transition-ui);
}
.contact-map-block:hover {
    border-color: var(--color-border);
    box-shadow: 0 6px 20px rgba(131, 14, 231, 0.3);
}
.contact-map-visual {
    position: relative;
    height: 110px;
    background: linear-gradient(160deg, #0d1a0d 0%, #0a1408 50%, #111a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* Quadrillage façon carte */
.contact-map-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 20px 20px;
}
/* Route stylisée */
.contact-map-visual::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    height: 3px;
    background: rgba(255,215,0,.25);
    transform: translateY(-50%) rotate(-8deg) scaleX(1.4);
}
.contact-map-visual::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 60%;
    height: 2px;
    background: rgba(255,215,0,.12);
    transform: rotate(5deg) scaleX(1.4);
}
.contact-map-pin-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.contact-map-pin-icon {
    font-size: 2rem;
    color: #ef4444;
    filter: drop-shadow(0 2px 8px rgba(239,68,68,.5));
    animation: pin-bounce 2s ease-in-out infinite;
}
@keyframes pin-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-4px); }
}
.contact-map-pin-label {
    background: rgba(27, 0, 51, 0.9);
    border: 1px solid rgba(131, 14, 231, 0.4);
    color: var(--color-highlight);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.contact-map-coords {
    position: absolute;
    bottom: 7px;
    left: 10px;
    font-size: 0.65rem;
    color: rgba(255,255,255,.35);
    font-family: var(--font-body);
    z-index: 2;
}
.contact-map-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background: rgba(131, 14, 231, 0.15);
    color: var(--color-highlight);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--transition-ui);
}
.contact-map-block:hover .contact-map-cta {
    background: rgba(131, 14, 231, 0.28);
}
.contact-map-cta i { font-size: 1rem; color: var(--color-accent); }

/* Canaux directs */
.contact-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.contact-channel-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    text-decoration: none;
    color: rgba(255,255,255,.8);
    font-size: 0.8rem;
    transition: all var(--transition-ui);
}
.contact-channel-btn:hover {
    background: var(--glass-bg-hover);
    border-color: var(--color-border);
    color: var(--color-highlight);
    transform: translateY(-3px);
}
.contact-channel-btn i { font-size: 1.5rem; color: var(--color-accent); }

/* ── COLONNE FORMULAIRE ──────────────────────────────────────────────────── */
.contact-form-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: clamp(24px, 4vw, 36px);
}
.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-highlight);
    margin: 0 0 24px;
}

/* Grille 2 colonnes prénom + email */
.contact-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Champs */
.contact-field {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.contact-field label {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}
.contact-req { color: var(--color-accent); }
.contact-opt {
    font-weight: 400;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 6px;
}
.contact-field input,
.contact-field textarea {
    background: rgba(0, 0, 0, 0.25);
    border: 1.5px solid rgba(131, 14, 231, 0.3);
    border-radius: var(--radius-md);
    padding: 11px 16px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
    transition: border-color var(--transition-ui), box-shadow var(--transition-ui);
    outline: none;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
    font-style: italic;
}
.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--color-border);
    box-shadow: 0 0 14px rgba(131, 14, 231, 0.28);
}
.contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

/* Consentement */
.contact-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
}
.contact-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    accent-color: var(--color-border);
    cursor: pointer;
    flex-shrink: 0;
}
.contact-consent label { cursor: pointer; }
.contact-consent a { color: var(--color-highlight); text-decoration: underline; }

/* Bouton */
.contact-submit-btn {
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}
.contact-submit-btn.is-loading {
    opacity: 0.65;
    pointer-events: none;
}

/* Feedback */
.contact-feedback {
    min-height: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.contact-feedback--success {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 12px 16px;
}
.contact-feedback--error {
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 12px 16px;
}

/* Réassurance */
.contact-reassurance {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin: 0;
}
.contact-reassurance i { margin-right: 4px; }

/* Délais de réponse */
.contact-delays-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 22px;
}
.contact-delays-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-highlight);
    margin: 0 0 14px;
}
.contact-delays-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.contact-delays-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}
.contact-delays-list li i {
    color: var(--color-accent);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    /* Formulaire en premier sur mobile */
    .contact-form-col { order: 1; }
    .contact-info-col { order: 2; }
}
@media (max-width: 640px) {
    .contact-selector-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    .contact-row-2 {
        grid-template-columns: 1fr;
    }
    .contact-hero,
    .contact-selector-section,
    .contact-main-section {
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 16px;
    }
}
/* ==========================================================================
                                        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 {
    background: rgba(40, 0, 68, 0.75);
    border: 1px solid rgba(131, 14, 231, 0.4);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}
.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);
    }
}

@keyframes fadeInUP {
    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 */
}

.site-header.scrolled .header-top-row {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, margin 0.35s ease, padding 0.35s ease;
}

.site-header .header-top-row {
    transition: max-height 0.35s ease, opacity 0.35s ease, margin 0.35s ease, padding 0.35s ease;
}

.header-badge-below-nav {
    display: none;
    justify-content: center;
    padding: 4px 0 6px;
}

.site-header.scrolled .header-badge-below-nav {
    display: flex;
}

/* --- 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: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    background-image: url('/wp-content/uploads/2025/07/img-accueil.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    z-index: 1;
    will-change: transform;
}

.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 2b : Guidance du Jour (Phrase du jour)
   ------------------------------------------------- */
.daily-guidance-section {
    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(245, 227, 66, 0.15);
    border-bottom: 1px solid rgba(245, 227, 66, 0.15);
    box-shadow: 0 8px 32px rgba(131, 14, 231, 0.1);
    border-radius: 24px;
    border: 1px solid rgba(131, 14, 231, 0.2);
    padding: clamp(40px, 7vw, 60px) 20px;
    margin: 40px 20px 0 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.daily-guidance-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.daily-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-highlight);
    opacity: 0.8;
}

.daily-quote-content {
    width: 100%;
}

.daily-phrase-text {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
    opacity: 0; /* géré par JS au chargement */
    transition: opacity 0.5s ease;
}

/* -------------------------------------------------
   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;
    }
}

/* -------------------------------------------------
   Section SEO / Conclusion
   ------------------------------------------------- */
.seo-content-section {
    background: rgba(27, 0, 51, 0.6);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 24px;
    border: 1px solid rgba(131, 14, 231, 0.2);
    box-shadow: 0 8px 32px rgba(131, 14, 231, 0.1);
    padding: clamp(60px, 10vw, 80px) 20px;
    margin: 40px 20px 40px 20px;
}

.seo-content-inner {
    max-width: 860px;
    margin: 0 auto;
}

.seo-content-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    text-align: center;
}

.seo-content-inner p {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--color-text);
    line-height: 1.85;
    text-align: justify;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.seo-cta {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.seo-cta p {
    width: 100%;
    text-align: center;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 0;
}

/* ========================================================================
   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 - CSS SPÉCIFIQUE
   Version : 2.0 - Refonte propre
   Note : Ne contient PAS les styles globaux (testimonials, FAQ, buttons, etc.)
         qui sont dans style.css principal
   ======================================================================== */

/* ==========================================================================
   1. CONFIGURATION PAGE À PROPOS
   ========================================================================== */

body.page-apropos {
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.08), transparent 55%),
                var(--color-bg-body);
}

.page-apropos .site-main {
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container - libérer pour le hero full-width */
.page-apropos .pilier-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.page-apropos .container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==========================================================================
   2. HERO SECTION - STRUCTURE
   ========================================================================== */

.pilier-hero.apropos-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-color: rgba(27, 0, 51, 0.82);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid rgba(131, 14, 231, 0.25);
    margin-bottom: 0;
}


.apropos-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: center;
    z-index: 2;
}

.apropos-hero-left {
    display: flex;
    flex-direction: column;
}

.apropos-hero-right {
    display: flex;
    justify-content: flex-end;
}

/* ==========================================================================
   3. HERO - ORBES DÉCORATIVES
   ========================================================================== */

.apropos-hero-orb,
.apropos-hero-orb-secondary {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    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;
}

.apropos-hero-orb-secondary {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle at 50% 50%, rgba(79, 209, 255, 0.9), transparent 65%);
    bottom: -60px;
    left: 10%;
    animation: float-slow 28s ease-in-out infinite alternate-reverse;
}

/* ==========================================================================
   4. HERO - BADGE DISPONIBILITÉ
   ========================================================================== */

.apropos-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 8px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    background: rgba(10, 0, 35, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.apropos-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    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;
    flex-shrink: 0;
}

/* ==========================================================================
   5. HERO - TITRE & SOUS-TITRE
   ========================================================================== */

.apropos-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 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.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 30px 0;
    line-height: 1.7;
}

.apropos-hero-sub strong {
    color: #ffffff;
    font-weight: 600;
}

/* ==========================================================================
   6. HERO - METRICS (Position, Signature, Format)
   ========================================================================== */

.apropos-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.metric-item {
    padding: 16px 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);
    -webkit-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 {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.metric-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 6px;
    line-height: 1.3;
}

.metric-note {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
}

/* ==========================================================================
   7. HERO - CTA BUTTONS
   ========================================================================== */

.apropos-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.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);
}

/* ==========================================================================
   8. HERO - ENERGY CARD (Profil énergétique)
   ========================================================================== */

.apropos-hero-energy-card {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    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%);
    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: 25px;
}

.energy-card-header > div:first-child {
    flex: 1;
}

.energy-card-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.energy-card-header .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: 18px;
    margin-bottom: 20px;
}

.energy-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.energy-stats-grid .energy-stat-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-highlight);
}

.energy-pill {
    display: block;
    background: rgba(131, 14, 231, 0.15);
    border: 1px solid rgba(131, 14, 231, 0.3);
    border-radius: 20px;
    padding: 12px 16px;
    font-size: 0.88rem;
    margin-top: 18px;
}

.energy-pill span {
    color: var(--color-accent);
    font-weight: bold;
}

.energy-card-footer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.energy-card-footer strong {
    color: var(--color-highlight);
}

/* ==========================================================================
   9. TABLE DES MATIÈRES INLINE (TOC)
   ========================================================================== */

.toc-inline-section {
    width: 100%;
    margin-top: 40px;          /* ← espace après le hero */
    padding: var(--section-padding, 80px) 20px;
    background: rgba(40, 0, 68, 0.6);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid rgba(131, 14, 231, 0.2);
}

.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: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-highlight);
    margin: 0 0 15px 0;
}

.toc-inline-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.toc-inline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.toc-inline-card {
    background: var(--glass-bg, rgba(40, 0, 68, 0.75));
    border: 1px solid var(--glass-border, rgba(131, 14, 231, 0.3));
    border-radius: 16px;
    padding: 25px 28px;
    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, rgba(131, 14, 231, 0.6));
}

.toc-card-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent);
    font-weight: bold;
    flex-shrink: 0;
}

.toc-card-content {
    flex: 1;
    min-width: 0;
}

.toc-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-highlight);
    margin: 0 0 5px 0;
}

.toc-card-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.toc-card-arrow {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.toc-inline-card:hover .toc-card-arrow {
    transform: translateX(5px);
}

/* ==========================================================================
   10. SECTIONS PILIER (Conteneur commun)
   ========================================================================== */

.pilier-section {
    max-width: 1100px;
    margin: 0 auto clamp(60px, 10vw, 100px);
    padding: clamp(30px, 5vw, 50px);
    border-radius: 16px;
    border: 1px solid rgba(131, 14, 231, 0.3);
    background-color: rgba(40, 0, 68, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Animation d'entrée */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.pilier-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

#seo-a-propos {
    max-width: 1100px;
    margin: 0 auto clamp(60px, 10vw, 100px);
    padding: clamp(30px, 5vw, 50px);
    border-radius: 16px;
    border: 1px solid rgba(131, 14, 231, 0.3);
    background-color: rgba(40, 0, 68, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

#qui-je-suis {
    margin-top: 60px;
}

/* Titre de section */
.section-title,
.pilier-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    color: var(--color-highlight);
    margin: 0 0 50px 0;
}

/* ==========================================================================
   11. SECTION "QUI JE SUIS"
   ========================================================================== */

.pilier-intro-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.pilier-intro-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 15px 0;
}

.pilier-intro-text p:last-child {
    margin-bottom: 0;
}

.pilier-intro-text strong {
    color: var(--color-highlight);
}

/* Values block */
.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: 0 12px 12px 0;
}

.value-highlight-quote blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ffffff;
    font-style: italic;
    margin: 0;
}

/* Service cards (Capricorne, Lion, etc.) */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(131, 14, 231, 0.3);
    background: rgba(10, 0, 35, 0.8);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.service-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-accent);
    margin: 0 0 12px 0;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ==========================================================================
   12. SECTION "PSYCHOPOMPE" - Image + Texte
   ========================================================================== */

.pilier-image-text-block {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.pilier-image-text-block.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.pilier-image-text-block.reverse .image-part {
    order: 2;
}

.image-part img {
    width: 100%;
    height: auto;
    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: 0 0 20px 0;
}

.text-part p:last-child {
    margin-bottom: 0;
}

.text-part strong {
    color: var(--color-accent);
    font-weight: 700;
}

.text-part a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-part a:hover {
    color: var(--color-highlight);
}

/* ==========================================================================
   13. SECTION "PARCOURS" - Timeline
   ========================================================================== */

.apropos-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-intro {
    margin-bottom: 60px;
    text-align: center;
}

.timeline-column-label {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-highlight);
    margin: 0 0 20px 0;
}

.timeline-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

.timeline-content {
    position: relative;
}

.timeline-list {
    position: relative;
    padding: 0 0 0 60px;
    margin: 0;
    list-style: none;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 10%, 
        rgba(255, 215, 0, 0.3) 90%, 
        transparent 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -48px;
    top: 5px;
    width: 18px;
    height: 18px;
    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: 3px solid var(--color-bg-body);
}

.timeline-period {
    font-size: 0.82rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-heading {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-highlight);
    margin: 0 0 10px 0;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ==========================================================================
   14. SECTION "FAÇON DE TRAVAILLER"
   ========================================================================== */

.working-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.method-card {
    background: rgba(10, 0, 35, 0.8);
    border: 1px solid rgba(131, 14, 231, 0.3);
    border-radius: 16px;
    padding: 28px 24px;
    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-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-accent);
    margin: 0 0 12px 0;
}

.method-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.method-card a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.method-card a:hover {
    color: var(--color-highlight);
}

/* Principes */
.working-principles {
    max-width: 700px;
    margin: 0 auto;
    padding: 35px;
    background: rgba(10, 0, 35, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
}

.principles-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-accent);
    text-align: center;
    margin: 0 0 25px 0;
}

.principles-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px;
}

.principles-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   15. SECTION PSYCHOPOMPE (Page À propos)
   ========================================================================== */

.psychopompe-details {
    margin-top: 50px;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 35px;
}

.psychopompe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.psychopompe-item {
    background: rgba(40, 0, 68, 0.6);
    border: 1px solid rgba(131, 14, 231, 0.25);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.psychopompe-item:hover {
    border-color: rgba(131, 14, 231, 0.5);
    transform: translateY(-5px);
}

.psychopompe-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.psychopompe-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.psychopompe-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.psychopompe-conclusion {
    background: rgba(10, 0, 35, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 30px 35px;
    text-align: center;
}

.psychopompe-conclusion p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* ==========================================================================
   16. ANIMATIONS
   ========================================================================== */

@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); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes pulse-big-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==========================================================================
   16. RESPONSIVE - TABLETTE (max 1100px)
   ========================================================================== */

@media (max-width: 1100px) {
    .apropos-hero-inner {
        grid-template-columns: 1fr 360px;
        gap: 40px;
    }
    
    .apropos-hero-energy-card {
        max-width: 360px;
        padding: 25px;
    }
    
    .apropos-hero-metrics {
        gap: 12px;
    }
    
    .metric-item {
        padding: 14px 14px;
    }
    
    .metric-value {
        font-size: 0.95rem;
    }
    
    .metric-note {
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   17. RESPONSIVE - MOBILE LARGE (max 900px)
   ========================================================================== */

@media (max-width: 900px) {
    /* Hero */
    .pilier-hero.apropos-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .page-apropos .container {
        padding: 0 20px;
    }
    
    .apropos-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .apropos-hero-right {
        order: -1;
        justify-content: center;
    }
    
    .apropos-hero-energy-card {
        max-width: 100%;
    }
    
    /* Metrics en 1 colonne */
    .apropos-hero-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .metric-item {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 4px 15px;
        padding: 16px 20px;
    }
    
    .metric-label {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0;
        align-self: center;
    }
    
    .metric-value {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0;
        text-align: right;
        font-size: 1rem;
    }
    
    .metric-note {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 8px;
        font-size: 0.85rem;
    }
    
    /* CTA */
    .apropos-hero-cta-row {
        flex-direction: column;
    }
    
    .apropos-hero-cta-row .button {
        width: 100%;
        text-align: center;
    }
    
    /* Orbes réduites */
    .apropos-hero-orb {
        width: 280px;
        height: 280px;
        top: -60px;
        right: -80px;
    }
    
    .apropos-hero-orb-secondary {
        width: 180px;
        height: 180px;
        bottom: -40px;
    }
    
    /* Image-texte */
    .pilier-image-text-block,
    .pilier-image-text-block.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pilier-image-text-block.reverse .image-part {
        order: 0;
    }
    
    /* Timeline */
    .timeline-list {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: -38px;
    }
}

/* ==========================================================================
   18. RESPONSIVE - MOBILE (max 768px)
   ========================================================================== */

@media (max-width: 768px) {
    .pilier-section {
        margin-left: 15px;
        margin-right: 15px;
        padding: 25px 20px;
    }
    
    .section-title,
    .pilier-content h2 {
        font-size: 1.6rem;
        margin-bottom: 35px;
    }
    
    .value-highlight-quote {
        padding: 20px 25px;
    }
    
    .value-highlight-quote blockquote {
        font-size: 1.05rem;
    }
    
    .toc-inline-grid {
        grid-template-columns: 1fr;
    }
    
    .toc-inline-card {
        padding: 20px;
    }
    
    .working-principles {
        padding: 25px 20px;
    }
    
    .principles-list {
        grid-template-columns: 1fr;
    }

    .psychopompe-grid {
        grid-template-columns: 1fr;
    }

    .psychopompe-item {
        padding: 25px 20px;
        text-align: center;
    }
}

/* ==========================================================================
   19. RESPONSIVE - PETIT MOBILE (max 480px)
   ========================================================================== */

@media (max-width: 480px) {
    .pilier-hero.apropos-hero {
        padding: 90px 0 50px;
    }
    
    .page-apropos .container {
        padding: 0 15px;
    }
    
    .apropos-hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .apropos-hero-title {
        font-size: 1.6rem;
    }
    
    .apropos-hero-sub {
        font-size: 0.95rem;
    }
    
    .apropos-hero-energy-card {
        padding: 20px;
    }
    
    .energy-stats-grid {
        gap: 12px;
    }
    
    .energy-stats-grid .energy-stat-value {
        font-size: 1rem;
    }
    
    /* Cacher les orbes sur très petit écran */
    .apropos-hero-orb,
    .apropos-hero-orb-secondary {
        display: none;
    }
    
    .timeline-list {
        padding-left: 40px;
    }
    
    .timeline-list::before {
        left: 12px;
    }
    
    .timeline-marker {
        left: -32px;
        width: 14px;
        height: 14px;
    }
    
    .timeline-heading {
        font-size: 1.2rem;
    }
}


/* ==========================================================================
   Landing Page — Voyance 2026 (préfixe lp26-) — v3 Mystique & Premium
   ========================================================================== */

/* ===== VARIABLES & WRAPPER ===== */
.lp26-page {
    background: var(--color-bg-body);
    color: var(--color-text);
    --lp26-gold:        #c9a84c;
    --lp26-gold-light:  #e8c96a;
    --lp26-border:      var(--glass-border);
    --lp26-border-glow: var(--glass-border-glow);
    --lp26-glass:       var(--glass-bg);
}
.lp26-page .container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BANDEAU INFO ===== */
.lp26-info-bar {
    background: rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--lp26-gold-light);
    padding: 12px 20px;
    text-align: center;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .04em;
}
.lp26-info-bar svg { vertical-align: middle; margin-right: 8px; }

/* ===== HERO ===== */
.lp26-hero {
    padding: clamp(70px, 10vw, 120px) 0 clamp(50px, 7vw, 80px);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(131, 14, 231, 0.65) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 80%, rgba(201, 168, 76, 0.09) 0%, transparent 50%),
        var(--color-bg-body);
}
.lp26-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.lp26-hero > .container { position: relative; z-index: 1; }

/* Split hero : texte gauche / photo droite */
.lp26-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}
.lp26-hero-text { text-align: left; }
.lp26-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--color-highlight);
    line-height: 1.15;
    text-shadow: 0 0 50px rgba(131, 14, 231, 0.5);
    margin-bottom: 20px;
}
.lp26-hero .lp26-subtitle {
    font-size: 1.15rem;
    color: var(--lp26-gold);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 12px;
}
.lp26-hero .lp26-disciplines {
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.lp26-hero-cta {
    display: inline-block;
    padding: 17px 44px;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 100%);
    color: var(--color-bg-body);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.4), 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: transform .25s ease, box-shadow .25s ease;
    letter-spacing: .03em;
}
.lp26-hero-cta:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.6), 0 14px 36px rgba(0, 0, 0, 0.6);
    color: var(--color-bg-body);
    text-decoration: none;
}

/* Photo portrait hero */
.lp26-hero-photo { flex-shrink: 0; }
.lp26-hero-photo img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid var(--color-accent);
    box-shadow:
        0 0 0 6px rgba(131, 14, 231, 0.2),
        0 0 50px rgba(131, 14, 231, 0.5),
        0 0 80px rgba(201, 168, 76, 0.15);
    display: block;
}

.lp26-artisan-badge {
    margin: 0 auto;
    max-width: 560px;
    background: var(--glass-bg);
    border: 1px solid var(--lp26-border);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    transition: border-color .3s, box-shadow .3s;
}
.lp26-artisan-badge:hover {
    border-color: var(--lp26-border-glow);
    box-shadow: 0 0 30px rgba(131, 14, 231, 0.2);
}
.lp26-artisan-badge-icon { font-size: 2rem; margin-bottom: 10px; }
.lp26-artisan-badge-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--lp26-gold-light);
    margin-bottom: 8px;
}
.lp26-artisan-badge-text {
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 760px) {
    .lp26-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .lp26-hero-text  { text-align: center; }
    .lp26-hero-photo { order: -1; display: flex; justify-content: center; }
    .lp26-hero-photo img { width: 160px; height: 160px; }
    .lp26-hero-cta   { display: block; text-align: center; }
}

/* ===== STATS ===== */
.lp26-stats {
    padding: clamp(36px, 5vw, 56px) 0;
    background: var(--color-bg-section);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.lp26-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.lp26-stat-item {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid rgba(201, 168, 76, 0.12);
}
.lp26-stat-item:last-child { border-right: none; }
.lp26-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--lp26-gold);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}
.lp26-stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: .07em;
    text-transform: uppercase;
    line-height: 1.45;
}

/* ===== SÉPARATEUR ORNEMENTAL ===== */
.lp26-ornament {
    text-align: center;
    padding: 6px 0;
    color: rgba(201, 168, 76, 0.3);
    font-size: .75rem;
    letter-spacing: .4em;
}

/* ===== ACCROCHE ===== */
.lp26-accroche {
    padding: clamp(50px, 7vw, 80px) 0;
    background: var(--color-bg-body);
}
.lp26-accroche-box {
    background: var(--glass-bg);
    border: 1px solid var(--lp26-border);
    border-radius: 16px;
    padding: 44px 52px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.lp26-accroche-box::before {
    content: '\201C';
    position: absolute;
    top: -18px;
    left: 32px;
    font-size: 9rem;
    font-family: Georgia, serif;
    color: rgba(201, 168, 76, 0.07);
    line-height: 1;
    pointer-events: none;
}
.lp26-accroche-box p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    z-index: 1;
    line-height: 1.8;
    margin-bottom: 18px;
}
.lp26-accroche-box p:last-child { margin-bottom: 0; }
.lp26-highlight { color: var(--lp26-gold-light); font-weight: 700; }
.lp26-signature {
    text-align: right;
    color: var(--lp26-gold);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-top: 26px !important;
    position: relative;
    z-index: 1;
}

/* ===== TRIPLE APPROCHE ===== */
.lp26-synergie {
    padding: clamp(60px, 9vw, 100px) 0;
    background: var(--color-bg-section);
}
.lp26-synergie-intro {
    text-align: center;
    margin-bottom: 50px;
}
.lp26-synergie-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    color: #fff;
    margin-bottom: 18px;
}
.lp26-synergie-intro p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
}
.lp26-triple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 44px;
}
.lp26-triple-card {
    background: var(--glass-bg);
    border: 1px solid var(--lp26-border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.lp26-triple-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 40px rgba(201,168,76,0.15), 0 12px 40px rgba(0,0,0,0.5);
    border-color: var(--lp26-border-glow);
}
.lp26-triple-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
    transition: transform .4s ease, filter .4s ease;
}
.lp26-triple-card:hover .lp26-triple-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 10px var(--lp26-gold));
}
.lp26-triple-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--lp26-gold-light);
    margin-bottom: 12px;
}
.lp26-triple-card p {
    font-size: .93rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 18px;
}
.lp26-triple-keyword {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--lp26-gold);
    border: 1px solid var(--lp26-border-glow);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.lp26-synergie-footer {
    background: var(--glass-bg);
    border: 1px solid var(--lp26-border);
    border-top: 2px solid var(--lp26-gold);
    border-radius: 0 0 16px 16px;
    padding: 40px;
    text-align: center;
}
.lp26-synergie-footer h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: var(--lp26-gold-light);
    margin-bottom: 18px;
}
.lp26-synergie-footer p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

/* ===== SEO SECTIONS ===== */
.lp26-seo-section {
    padding: clamp(40px,6vw,70px) 0;
    background: var(--color-bg-body);
    border-top: 1px solid rgba(201,168,76,0.07);
}
.lp26-seo-section:nth-of-type(2n) { background: var(--color-bg-section); }
.lp26-seo-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem,3vw,2rem);
    color: #fff;
    text-align: center;
    margin-bottom: 28px;
}
.lp26-seo-content {
    background: var(--glass-bg);
    border: 1px solid var(--lp26-border);
    border-radius: 14px;
    padding: 36px 40px;
    columns: 2;
    column-gap: 44px;
}
.lp26-seo-content p {
    font-size: .97rem;
    color: rgba(255,255,255,0.72);
    break-inside: avoid;
    line-height: 1.8;
    margin-bottom: 16px;
}
@media (max-width: 680px) {
    .lp26-seo-content { columns: 1; padding: 24px; }
}

/* ===== CONFIANCE & AVIS ===== */
.lp26-confiance {
    padding: clamp(50px,7vw,80px) 0;
    background: var(--color-bg-section);
}
.lp26-confiance-box {
    background: var(--glass-bg);
    border: 1px solid var(--lp26-border);
    border-radius: 16px;
    padding: 44px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.lp26-confiance-header {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 40px;
}
.lp26-confiance-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--lp26-gold);
    box-shadow: 0 0 24px rgba(201,168,76,0.25);
    overflow: hidden;
}
.lp26-confiance-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp26-confiance-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--lp26-gold-light);
    margin-bottom: 10px;
}
.lp26-confiance-content p { font-size: .97rem; color: rgba(255,255,255,0.8); line-height: 1.7; }
.lp26-avis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.lp26-avis-item {
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid var(--lp26-border);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    transition: border-color .3s, box-shadow .3s;
}
.lp26-avis-item::before {
    content: '\201C';
    position: absolute;
    top: 8px; right: 16px;
    font-size: 3.5rem;
    color: rgba(201,168,76,0.1);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.lp26-avis-item:hover {
    border-color: var(--lp26-border-glow);
    box-shadow: 0 0 24px rgba(201,168,76,0.1);
}
.lp26-avis-stars {
    color: var(--lp26-gold);
    font-size: .9rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.lp26-avis-text {
    font-style: italic;
    font-size: .92rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    margin-bottom: 14px;
}
.lp26-avis-author {
    font-weight: 700;
    font-size: .85rem;
    color: var(--lp26-gold);
    text-align: right;
}
@media (max-width: 640px) {
    .lp26-avis-grid { grid-template-columns: 1fr; }
}
.lp26-avis-total {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--lp26-border);
}
.lp26-avis-total a {
    color: var(--lp26-gold);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .03em;
    transition: color .2s;
}
.lp26-avis-total a:hover { color: var(--lp26-gold-light); }

/* ===== DÉLIVRABLES ===== */
.lp26-delivrables {
    padding: clamp(50px,7vw,80px) 0;
    background: var(--color-bg-body);
}
.lp26-delivrables h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem,3.5vw,2.2rem);
    color: #fff;
    text-align: center;
    margin-bottom: 36px;
}
.lp26-delivrables-list {
    background: var(--glass-bg);
    border: 1px solid var(--lp26-border);
    border-radius: 16px;
    padding: 38px 44px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.lp26-delivrable-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
}
.lp26-delivrable-item:first-child { padding-top: 0; }
.lp26-delivrable-item:last-child { border-bottom: none; padding-bottom: 0; }
.lp26-delivrable-check {
    color: var(--lp26-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
    text-shadow: 0 0 10px rgba(201,168,76,0.5);
}
.lp26-delivrable-text strong {
    font-family: var(--font-body);
    color: rgba(255,255,255,0.95);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}
.lp26-delivrable-text span {
    font-size: .9rem;
    color: rgba(255,255,255,0.5);
}

/* ===== FORMULAIRE ===== */
.lp26-form-section {
    padding: clamp(50px,8vw,90px) 0;
    background: var(--color-bg-section);
}
.lp26-form-wrapper {
    background: var(--glass-bg);
    border: 2px solid var(--lp26-gold);
    border-radius: 20px;
    padding: clamp(36px,6vw,56px) clamp(28px,5vw,52px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(201,168,76,0.08), 0 20px 60px rgba(0,0,0,0.6);
}
.lp26-form-wrapper::before {
    content: '';
    position: absolute;
    top: -40%; right: -40%;
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
    pointer-events: none;
}
.lp26-form-header {
    text-align: center;
    margin-bottom: 38px;
    position: relative;
    z-index: 1;
}
.lp26-form-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem,3.5vw,2.2rem);
    color: #fff;
    margin-bottom: 14px;
}
.lp26-form-artisan-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
    font-size: .87rem;
    color: rgba(255,255,255,0.5);
}
.lp26-price-display { margin: 24px 0 6px; }
.lp26-price-current {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--lp26-gold-light);
    text-shadow: 0 0 30px rgba(201,168,76,0.4);
    line-height: 1;
}
.lp26-price-note {
    font-size: .85rem;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
}
.lp26-promo-box {
    background: rgba(201,168,76,0.06);
    border: 1px dashed rgba(201,168,76,0.4);
    border-radius: 10px;
    padding: 22px;
    margin: 0 auto 32px;
    text-align: center;
    max-width: 94%;
    position: relative;
    z-index: 1;
}
.lp26-promo-box .lp26-promo-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--lp26-gold-light);
    margin-bottom: 10px;
}
.lp26-promo-box p {
    font-size: .9rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin-bottom: 10px;
}
.lp26-promo-code {
    display: inline-block;
    background: rgba(0,0,0,0.4);
    color: var(--lp26-gold-light);
    font-weight: 700;
    font-family: monospace;
    padding: 4px 14px;
    border-radius: 6px;
    border: 1px solid var(--lp26-border-glow);
    letter-spacing: 2px;
    font-size: .95rem;
}
.lp26-form-body { position: relative; z-index: 1; }
.lp26-form-body label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--lp26-gold);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
}
.lp26-form-body input,
.lp26-form-body textarea {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(13, 0, 30, 0.65);
    color: rgba(255,255,255,0.9);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color .25s, box-shadow .25s, background .25s;
}
.lp26-form-body input::placeholder,
.lp26-form-body textarea::placeholder { color: rgba(255,255,255,.28); }
.lp26-form-body input:focus,
.lp26-form-body textarea:focus {
    outline: none;
    border-color: var(--lp26-gold);
    background: rgba(13, 0, 30, 0.9);
    box-shadow: 0 0 18px rgba(201,168,76,0.12);
}
.lp26-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 580px) { .lp26-row-2 { grid-template-columns: 1fr; } }
.lp26-submit-btn {
    width: 100%;
    padding: 20px 30px;
    font-size: 1.1rem;
    margin-top: 8px;
}
.lp26-secure-notice {
    text-align: center;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: .8rem;
    color: rgba(255,255,255,.35);
    position: relative;
    z-index: 1;
}
.lp26-secure-notice svg { vertical-align: middle; margin-right: 6px; }
.lp26-redirect-note {
    text-align: center;
    margin-top: 22px;
    font-size: .9rem;
    color: rgba(255,255,255,0.38);
    font-style: italic;
}

/* ===== FAQ ===== */
.lp26-faq-wrapper { max-width: 860px; margin: 0 auto; }
.lp26-faq-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem,3.5vw,2.2rem);
    color: #fff;
    text-align: center;
    margin-bottom: 44px;
}
.lp26-page .faq-section {
    background: var(--color-bg-body);
    padding: clamp(50px,7vw,80px) 0;
    border-top: 1px solid rgba(201,168,76,0.07);
}
.lp26-page .faq-item {
    border: 1px solid var(--lp26-border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--glass-bg);
}
.lp26-page .faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: transparent;
    color: rgba(255,255,255,0.88);
    font-family: var(--font-heading);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.lp26-page .faq-question:hover,
.lp26-page .faq-item.active .faq-question {
    background: rgba(201,168,76,0.07);
    color: var(--lp26-gold-light);
}
.lp26-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: block;
}
.lp26-page .faq-item.active .faq-answer { max-height: 500px; }
.lp26-page .faq-answer-content {
    padding: 4px 24px 20px;
}
.lp26-page .faq-answer-content p {
    color: rgba(255,255,255,0.68);
    font-size: .95rem;
    line-height: 1.75;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .lp26-accroche-box { padding: 28px 22px; }
    .lp26-confiance-box { padding: 28px 22px; }
    .lp26-confiance-header { flex-direction: column; align-items: center; text-align: center; }
    .lp26-delivrables-list { padding: 28px 20px; }
    .lp26-form-wrapper { padding: 30px 20px; }
    .lp26-synergie-footer { padding: 28px 22px; }
}
@media (max-width: 560px) {
    .lp26-stats-grid { grid-template-columns: 1fr; }
    .lp26-stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12); padding: 18px; }
    .lp26-stat-item:last-child { border-bottom: none; }
}

/* Fix décalage header quand modal ouverte (scrollbar width compensation) */
body.vb-modal-open {
    padding-right: var(--scrollbar-width, 15px);
}
body.vb-modal-open .site-header {
    padding-right: var(--scrollbar-width, 15px);
}

/* ============================================================
   PROTECTION CONTENU — sélection texte + drag images
   ============================================================ */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
input, textarea, select, [contenteditable],
.vb-form input, .vb-form textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
}
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}
a img, button img, .slick-slide img {
    pointer-events: auto;
}
