/* CSS spécifique pour /seminaire-dentreprise - extrait depuis la version live */

/* Bloc #1 */
.hero_bg-pattern {
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 150%;
      background: radial-gradient(ellipse at center, rgba(118, 228, 155, 0.06) 0%, transparent 70%);
      transform: rotate(45deg);
      z-index: -1;
      animation: float-pattern 20s ease-in-out infinite;
    }
    
    @keyframes float-pattern {
      0%, 100% { transform: rotate(45deg) translateY(0); }
      50% { transform: rotate(45deg) translateY(30px); }
    }
    
    .hero_subtitle {
      transform: translateY(20px);
      animation: fadeUp 0.8s ease forwards 0.2s;
    }
    
    .hero_title {
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.4s;
    }
    
    .hero_title .highlight {
      color: var(--text-light);
      background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .hero_description {
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.6s;
    }
    
    .hero_description strong {
      color: var(--text-light);
      font-weight: 600;
    }
    
    .hero_description .highlight {
      color: var(--accent-green);
      font-weight: 600;
    }
    
    /* Stats factuels */
    .hero_stats {
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.7s;
    }
    
    .stat_item {
      transition: all 0.3s ease;
    }
    
    .stat_item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-green), var(--accent-purple));
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    
    .stat_item:hover::before {
      transform: scaleX(1);
    }
    
    .stat_item:hover {
      background: rgba(118, 228, 155, 0.08);
      border-color: rgba(118, 228, 155, 0.3);
      transform: translateY(-5px);
    }
    
    .stat_icon svg {
      width: 20px;
      height: 20px;
      fill: var(--primary-dark);
    }
    
    /* CTA simples et directs */
    .hero_cta-container {
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.8s;
    }
    
    .hero_cta {
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(118, 228, 155, 0.2);
    }
    
    .hero_cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.7s;
    }
    
    .hero_cta:hover::before {
      left: 100%;
    }
    
    .hero_cta:hover {
      background: var(--accent-purple);
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(66, 58, 187, 0.3);
    }
    
    .hero_cta.secondary {
      background: transparent;
      border: 2px solid var(--accent-green);
      color: var(--text-light);
      box-shadow: none;
    }
    
    .hero_cta.secondary:hover {
      background: rgba(118, 228, 155, 0.1);
      border-color: var(--accent-purple);
    }
    
    /* Animations */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @media (max-width: 768px) {
      
      .hero_cta-container {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .hero_cta {
        width: 100%;
      }
    }

/* Bloc #2 */
.section_problematique {
      background: linear-gradient(135deg, rgba(19, 21, 33, 0.95) 0%, var(--primary-dark) 50%, rgba(27, 31, 45, 0.95) 100%);
    }
    
    .problematique-diagonal-top {
      position: absolute;
      top: -10vw;
      left: 0;
      width: 100%;
      height: 10vw;
      background-color: var(--primary-dark);
      transform: skewY(-2deg);
      transform-origin: top left;
      z-index: -1;
      border-bottom: 1px solid rgba(118, 228, 155, 0.1);
    }

    .problematique-header {
      text-align: center;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.1s;
    }
    
    .problematique-text {
      max-width: 800px;
      text-align: center;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.2s;
    }
    
    .problematique-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, var(--accent-green), var(--accent-purple));
      border-radius: 2px;
    }
    
    .problematique-description {
      color: var(--text-secondary);
      font-size: 1.1rem;
      line-height: 1.7;
    }
    
    .problematique-description strong {
      color: var(--text-light);
      font-weight: 600;
    }
    
    .problematique-description .highlight {
      color: var(--accent-green);
      font-weight: 600;
    }
    
    .problematique-insight {
      background: rgba(118, 228, 155, 0.08);
      border-left: 4px solid var(--accent-green);
      padding: var(--spacing-md);
      border-radius: 0 var(--border-radius) var(--border-radius) 0;
    }
    
    .insight-text {
      font-size: 1rem;
      color: var(--text-light);
      font-style: italic;
      margin: 0;
    }
    
    .insight-source {
      font-size: 0.85rem;
      color: var(--text-secondary);
    }
    
    .maillage-link {
      display: inline-block;
      color: var(--accent-green);
      text-decoration: none;
      font-size: 0.95rem;
      padding: var(--spacing-xs) var(--spacing-sm);
      border: 1px solid rgba(118, 228, 155, 0.3);
      border-radius: var(--border-radius);
      transition: all var(--transition-normal);
    }
    
    .maillage-link:hover {
      background: rgba(118, 228, 155, 0.1);
      border-color: var(--accent-green);
      transform: translateY(-2px);
    }
    
    /* Visual challenges */
    .problematique-visual {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.4s;
    }
    
    .challenges-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: var(--spacing-md);
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .challenge-card {
      background: linear-gradient(135deg, rgba(19, 21, 33, 0.8), rgba(27, 31, 45, 0.9));
      border: 1px solid rgba(118, 228, 155, 0.1);
      border-radius: var(--border-radius);
      padding: var(--spacing-md);
      position: relative;
      overflow: hidden;
      transition: all var(--transition-normal);
    }
    
    .challenge-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(118, 228, 155, 0.05), rgba(66, 58, 187, 0.05));
      opacity: 0;
      transition: opacity var(--transition-normal);
    }
    
    .challenge-card:hover {
      transform: translateY(-5px);
      border-color: rgba(118, 228, 155, 0.3);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
    
    .challenge-card:hover::before {
      opacity: 1;
    }
    
    .challenge-header {
      display: flex;
      align-items: center;
      margin-bottom: var(--spacing-md);
      position: relative;
      z-index: 2;
    }
    
    .challenge-number {
      width: 40px;
      height: 40px;
      background: var(--accent-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Broad Sans', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-right: var(--spacing-md);
      flex-shrink: 0;
    }
    
    .challenge-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-light);
      text-transform: uppercase;
      margin: 0;
    }
    
    .challenge-description {
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: var(--spacing-md);
      font-size: 1rem;
      position: relative;
      z-index: 2;
    }
    
    .challenge-consequence {
      background: rgba(255, 107, 107, 0.1);
      border-left: 3px solid #ff6b6b;
      padding: var(--spacing-sm);
      border-radius: 0 var(--border-radius) var(--border-radius) 0;
      position: relative;
      z-index: 2;
    }
    
    .challenge-consequence-text {
      font-size: 0.9rem;
      color: var(--text-light);
      margin: 0;
    }
    
    .challenge-consequence-label {
      font-size: 0.8rem;
      color: #ff6b6b;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: var(--spacing-xs);
    }
    
    /* Background decoration */
    .problematique-bg-element {
      position: absolute;
      opacity: 0.03;
      z-index: -1;
    }
    
    .problematique-bg-1 {
      top: 20%;
      right: 10%;
      width: 150px;
      height: 150px;
      background: radial-gradient(var(--accent-green) 2px, transparent 2px);
      background-size: 20px 20px;
      animation: float 20s infinite ease-in-out;
    }
    
    .problematique-bg-2 {
      bottom: 25%;
      left: 5%;
      width: 120px;
      height: 120px;
      background: radial-gradient(var(--accent-purple) 1px, transparent 1px);
      background-size: 15px 15px;
      animation: float 25s infinite ease-in-out reverse;
    }
    
    /* Animations */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes slideInRight {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(180deg); }
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .challenges-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }

    }
    
    @media (max-width: 768px) {
      .challenges-grid {
        grid-template-columns: 1fr;
      }
      
      .problematique-description {
        font-size: 1rem;
      }
      
      .challenge-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
      }
      
      .challenge-number {
        margin-right: 0;
      }
    }

/* Bloc #3 */
.conclusion-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, var(--accent-green), var(--accent-purple));
        border-radius: 2px;
      }
          .problematique-description {
      color: var(--text-secondary);
      font-size: 1.1rem;
      line-height: 1.7;
    }
    
    .problematique-description strong {
      color: var(--text-light);
      font-weight: 600;
    }
    
    .problematique-description .highlight {
      color: var(--accent-green);
      font-weight: 600;
    }
    
    .problematique-insight {
      background: rgba(118, 228, 155, 0.08);
      border-left: 4px solid var(--accent-green);
      padding: var(--spacing-md);
      border-radius: 0 var(--border-radius) var(--border-radius) 0;
    }
      .maillage-link {
        display: inline-block;
        color: var(--accent-green);
        text-decoration: none;
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.95rem;
        padding: var(--spacing-xs) var(--spacing-sm);
        border: 1px solid rgba(118, 228, 155, 0.3);
        border-radius: var(--border-radius);
        transition: all var(--transition-normal);
      }
      
      .maillage-link:hover {
        background: rgba(118, 228, 155, 0.1);
        border-color: var(--accent-green);
        transform: translateY(-2px);
      }


      .synthese-container {
        background: linear-gradient(135deg, rgba(19, 21, 33, 0.8), rgba(27, 31, 45, 0.9));
        border: 1px solid rgba(118, 228, 155, 0.2);
        border-radius: var(--border-radius);
        padding: var(--spacing-lg);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
      }
      
      .synthese-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(118, 228, 155, 0.05), rgba(66, 58, 187, 0.05));
        opacity: 0;
        transition: opacity var(--transition-normal);
      }
      
      .synthese-container:hover {
        border-color: rgba(118, 228, 155, 0.3);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      }
      
      .synthese-container:hover::before {
        opacity: 1;
      }
            .synthese-points {
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 2;
      }
      .synthese-point {
        display: flex;
        align-items: flex-start;
        margin-bottom: var(--spacing-sm);
        padding: var(--spacing-sm);
        background: rgba(118, 228, 155, 0.05);
        border-radius: var(--border-radius);
        border-left: 3px solid var(--accent-green);
        transition: all var(--transition-normal);
      }
      
      .synthese-point:hover {
        background: rgba(118, 228, 155, 0.1);
        transform: translateX(5px);
      }
      
      .synthese-point-icon {
        width: 20px;
        height: 20px;
        margin-right: var(--spacing-sm);
        margin-top: 2px;
        flex-shrink: 0;
      }
      
      .synthese-point-icon svg {
        width: 100%;
        height: 100%;
        fill: var(--accent-green);
      }
      
      .synthese-point-text {
        font-family: 'Schibsted Grotesk', sans-serif;
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.5;
      }
      
      .synthese-point-text strong {
        font-weight: 600;
      }
            /* Animations */
      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      @keyframes slideInRight {
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      
      @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-15px) rotate(180deg); }
      }

/* Bloc #4 */
html.wf-design-mode .faq-item,
    html.wf-design-mode .faq-answer {
      opacity: 1 !important;
      transform: none !important;
      max-height: none !important;
    }
     :root {
      --transition-normal: 0.3s ease;
    }
    .section_faq {
      position: relative;
      background: linear-gradient(135deg, rgba(19, 21, 33, 0.98) 0%, var(--primary-dark) 100%);
      overflow: hidden;
      z-index: 1;
    }
    
    .faq-diagonal-top {
      position: absolute;
      top: -15vw;
      left: 0;
      width: 100%;
      height: 15vw;
      background-color: var(--primary-dark);
      transform: skewY(3deg);
      transform-origin: top right;
      z-index: 0;
      border-bottom: 1px solid rgba(118, 228, 155, 0.1);
    }
    
    .faq-diagonal-bottom {
      position: absolute;
      bottom: -15vw;
      left: 0;
      width: 100%;
      height: 15vw;
      background-color: var(--primary-dark);
      transform: skewY(-3deg);
      transform-origin: bottom left;
      z-index: 0;
      border-top: 1px solid rgba(118, 228, 155, 0.1);
    }
    
    .faq-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2376E49B' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.05;
      z-index: 0;
    }
    
    .faq-container {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    
    .faq-header {
      text-align: center;
      margin-bottom: var(--spacing-lg);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.1s;
    }
    
    .faq-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: var(--spacing-md);
      text-transform: uppercase;
      color: var(--text-light);
      position: relative;
      display: inline-block;
    }
    
    .faq-title .highlight {
      color: var(--accent-green);
    }
    
    .faq-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(to right, var(--accent-green), var(--accent-purple));
      border-radius: 2px;
    }
    
    .faq-subtitle {
      color: var(--text-secondary);
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    .faq-items {
      display: flex;
      flex-direction: column;
      gap: var(--spacing-md);
      margin-bottom: var(--spacing-xl);
    }
    
    .faq-item {
      background: rgba(19, 21, 33, 0.5);
      border: 1px solid rgba(118, 228, 155, 0.1);
      border-radius: var(--border-radius);
      overflow: hidden;
      transition: all var(--transition-normal);
      opacity: 0;
      transform: translateY(20px);
    }
    
    .faq-item:nth-child(1) { animation: fadeUp 0.8s ease forwards 0.2s; }
    .faq-item:nth-child(2) { animation: fadeUp 0.8s ease forwards 0.3s; }
    .faq-item:nth-child(3) { animation: fadeUp 0.8s ease forwards 0.4s; }
    .faq-item:nth-child(4) { animation: fadeUp 0.8s ease forwards 0.5s; }
    .faq-item:nth-child(5) { animation: fadeUp 0.8s ease forwards 0.6s; }
    .faq-item:nth-child(6) { animation: fadeUp 0.8s ease forwards 0.7s; }
    .faq-item:nth-child(7) { animation: fadeUp 0.8s ease forwards 0.8s; }
    
    .faq-item:hover {
      border-color: rgba(118, 228, 155, 0.3);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transform: translateY(-5px);
    }
    
    .faq-question {
      padding: var(--spacing-md);
      cursor: pointer;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
    }
    
    .faq-question-text {
      font-family: 'Broad Sans', sans-serif;
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--text-light);
      padding-right: var(--spacing-md);
    }
    
    .faq-icon {
      position: relative;
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }
    
    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background-color: var(--accent-green);
      transition: all var(--transition-normal);
    }
    
    .faq-icon::before {
      top: 11px;
      left: 0;
      width: 24px;
      height: 2px;
    }
    
    .faq-icon::after {
      top: 0;
      left: 11px;
      width: 2px;
      height: 24px;
    }
    
    .faq-item.active .faq-icon::after {
      transform: rotate(90deg);
      opacity: 0;
    }
    
    .faq-answer {
      max-height: 0;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
      max-height: 1000px;
    }
    
    .faq-answer-content {
      padding: 0 var(--spacing-md) var(--spacing-md);
      color: var(--text-secondary);
      line-height: 1.6;
      font-family: 'Schibsted Grotesk', sans-serif;
    }
    
    .faq-answer-content p:last-child {
      margin-bottom: 0;
    }
    
    .faq-answer-content strong {
      color: var(--text-light);
      font-weight: 600;
    }
    
    .faq-answer-content .highlight {
      color: var(--accent-green);
      font-weight: 600;
    }
    
    .faq-answer-list {
      list-style: none;
      padding: 0;
      margin: var(--spacing-sm) 0;
    }
    
    .faq-answer-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: var(--spacing-xs);
      color: var(--text-secondary);
    }
    
    .faq-answer-list li::before {
      content: '▸';
      color: var(--accent-green);
      font-weight: bold;
      margin-right: var(--spacing-xs);
      margin-top: 2px;
    }
    
    /* Background elements */
    .faq-bg-element {
      position: absolute;
      z-index: 0;
    }
    
    .faq-wave {
      width: 400px;
      height: 400px;
      background-color: var(--accent-green);
      border-radius: 65% 35% 65% 35% / 35% 65% 35% 65%;
      opacity: 0.03;
      top: 20%;
      right: -200px;
      animation: morphWave 15s infinite alternate ease-in-out;
    }
    
    @keyframes morphWave {
      0% {
        border-radius: 65% 35% 65% 35% / 35% 65% 35% 65%;
      }
      50% {
        border-radius: 35% 65% 35% 65% / 65% 35% 65% 35%;
      }
      100% {
        border-radius: 65% 35% 65% 35% / 35% 65% 35% 65%;
      }
    }
    
    .faq-dots {
      width: 300px;
      height: 300px;
      background-image: radial-gradient(var(--accent-green) 1px, transparent 1px);
      background-size: 20px 20px;
      opacity: 0.05;
      bottom: 15%;
      left: 5%;
    }
    
    /* Animations */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Media Queries */
    @media (max-width: 992px) {
      .faq-title {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .faq-title {
        font-size: 2.2rem;
      }
      
      .faq-question-text {
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 576px) {
      .faq-title {
        font-size: 2rem;
      }
      
      .faq-question {
        padding: var(--spacing-sm) var(--spacing-md);
      }
      
      .faq-question-text {
        font-size: 1rem;
      }
      
      .faq-answer-content {
        padding: 0 var(--spacing-md) var(--spacing-md);
        font-size: 0.95rem;
      }
    }
