/* ===================== HERO SECTION (MICROSOFT FLUENT DESIGN) ===================== */

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #F3F2F1; /* Gris clair Microsoft Surface */
    overflow: hidden;
    z-index: 1;
  }
  
  /* --- BACKGROUND AURORA ANIMATION --- */
  .hero-section::before,
  .hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1;
    /* animation désactivée pour thème Microsoft épuré */
  }
  
  .hero-section::before {
    background: #0078D4; /* Bleu Microsoft */
    width: 50vw;
    height: 50vw;
    top: -10%;
    left: -10%;
    animation-delay: 0s;
  }
  
  .hero-section::after {
    background: #5C2D91; /* Mauve Power Platform */
    width: 40vw;
    height: 40vw;
    bottom: 10%;
    right: -5%;
    animation-delay: -5s;
  }
  
  @keyframes auroraMove {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
  }
  
  canvas#hero-canvas {
    display: none !important;
  }
  
  /* --- CONTENU HERO --- */
  .hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 20px;
    max-width: 1200px;
    margin-top: -50px;
  }
  
  /* Kicker */
  .hero-kicker {
    font-family: 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0078D4;
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
  }
  
  /* Titre Principal H1 */
  .et-hero-tabs h1 {
    font-family: 'Segoe UI', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #201F1E;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
  }
  
  .et-hero-tabs h1 span {
    display: inline-block;
  }
  
  /* --- BLOCKQUOTE "SAGE" STYLE --- */
  .blockquote-wrapper {
    margin: 0 auto 60px auto;
    max-width: 900px;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
    position: relative;
    padding: 0 40px;
  }
  
  /* Guillemets décoratifs */
  .blockquote-wrapper::before {
    content: '“';
    font-family: 'Georgia', serif;
    font-size: 6rem;
    color: rgba(0, 120, 212, 0.15); /* Bleu très pâle */
    position: absolute;
    top: -40px;
    left: 0;
    line-height: 1;
  }
  
  .blockquote-wrapper h1 {
    font-family: 'Georgia', 'Times New Roman', serif !important; /* Police "Sagesse" */
    font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #323130 !important; /* Gris anthracite élégant */
    text-transform: none !important;
    letter-spacing: normal !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8); /* Légère aura blanche pour détacher du fond */
  }
  
  /* Mots clés dans la citation */
  .blockquote-wrapper .text-white {
    color: #005A9E !important; /* Bleu Microsoft Profond mais doux */
    font-weight: 600;
    font-style: normal; /* Redresser les mots clés pour l'emphase */
    text-decoration: underline;
    text-decoration-color: rgba(0, 120, 212, 0.3);
    text-underline-offset: 4px;
  }
  
  /* --- BOUTON D'ACTION --- */
  .hero-cta-wrapper {
    margin-top: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
  }
  
  .btnMeContacter {
    background: #0078D4;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 120, 212, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
  }
  
  .btnMeContacter:hover {
    background: #106EBE;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 120, 212, 0.4);
  }
  
  /* Scroll Indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #0078D4;
  }
  
  .scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #0078D4;
    border-radius: 20px;
    position: relative;
  }
  
  .scroll-wheel {
    width: 4px;
    height: 8px;
    background: #0078D4;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
  }
  
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  
  @media (max-width: 768px) {
    .et-hero-tabs h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }
    
    .blockquote-wrapper {
      padding: 0 10px;
      margin-bottom: 40px;
    }
    
    .blockquote-wrapper::before {
      font-size: 4rem;
      top: -20px;
      left: -10px;
    }
    
    .blockquote-wrapper h1 {
      font-size: 1.2rem !important;
    }
    
    .hero-section::before,
    .hero-section::after {
      filter: blur(60px);
      opacity: 0.5;
    }
  }
  