.background--custom {
    min-height: 505px;
}
.hero-page {
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 80px 0;
  }
  .bottom {
    height: 200px;
  }
  .hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
  }
  
  .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centre l'ensemble */
    gap: 60px;
  }
  
  .hero-image {
    flex: 0 0 auto; /* Pas de croissance, taille naturelle */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-text {
    flex: 0 0 auto; /* Pas de croissance, taille naturelle */
    color: white;
    text-align: left; /* Texte aligné à gauche dans son conteneur */
  }
  .hero-title {
    font-family: "Outfit", sans-serif;
    font-size: 72px;
    font-weight: 300;
    margin: 0 0 20px 0;
    color: #ffffff;
  }
  
  .hero-subtitle {
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  

  .hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
  }
  
  /* Sections communes */
  .section-title {
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #722EB9, #C179C5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .section-subtitle {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    margin: 0 0 60px 0;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
 
  /* Section Introduction */
  .intro-section {
    padding: 80px 0;
    background: rgba(255,255,255,0.6);
    margin-top: 25px;
  }
  
  .intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
  }
  
  .intro-content h2 {
    font-family: "Outfit", sans-serif;
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin: 0 0 30px 0;
    color: #333;
  }
  
  .intro-lead {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 60px 0;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
  }
  
  .stat-number {
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #722EB9;
    margin-bottom: 10px;
  }
  
  .stat-text {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #666;
    line-height: 1.4;
  }
  
  /* Section Processus */
  .process-section {
    background: #f8f9fa;
    padding: 0;
    position: relative;
  }
  
  .process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
  }
  
  .process-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .process-step {
    display: flex;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(114, 46, 185, 0.15);
  }
  
  .step-icon {
    flex: 0 0 80px;
    height: 80px;
    width:80px;
    background: linear-gradient(135deg, #722EB9, #C179C5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
  }
  
  .step-content h3 {
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 15px 0;
    color: #333;
  }
  
  .step-content p {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
    color: #666;
  }
  
  .step-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #722EB9;
    background: rgba(114, 46, 185, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
  }
  
  .detail-item i {
    font-size: 12px;
  }
  
  /* Section Livrables */
  .deliverables-section {
    padding: 80px 0;
    background: rgba(255,255,255,0.6);
  }
  
  .deliverables-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
  }
  
  .deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .deliverable-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
  }
  
  .deliverable-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(114, 46, 185, 0.15);
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #722EB9, #C179C5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .deliverable-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 15px 0;
    color: #333;
  }
  
  .deliverable-card p {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
    color: #666;
  }
  
  .card-features {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .card-features li {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
  }
  
  .card-features li:last-child {
    border-bottom: none;
  }
  
  .card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #722EB9;
    font-weight: bold;
  }
  
  /* Section Bénéfices */
  .benefits-section {
    background: #f8f9fa;
    padding: 0;
    position: relative;
  }
  
  .benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
  }
  
  .benefits-content {
    display: flex;
    gap: 60px;
    align-items: center;
  }
  
  .benefits-left {
    flex: 0 0 45%;
  }
  
  .benefits-right {
    flex: 1;
  }
  
  .benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateX(10px);
  }
  
  .benefit-icon {
    flex: 0 0 50px;
    height: 50px;
    background: linear-gradient(135deg, #722EB9, #C179C5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
  }
  
  .benefit-content h3 {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: #333;
  }
  
  .benefit-content p {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    color: #666;
    line-height: 1.5;
  }
  
  .benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }
  
 
  
  /* Section FAQ */
  .faq-section {
    background: #f8f9fa;
    padding: 0;
    position: relative;
  }
  
  .faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
  }
  
  .faq-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }
  
  .faq-image {
    flex: 0 0 40%;
  }
  
  .faq-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }
  
  .faq-list {
    flex: 1;
  }
  
  .faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 10px 30px rgba(114, 46, 185, 0.1);
  }
  
  .faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    transition: all 0.3s ease;
  }
  
  .faq-item.active .faq-question {
    background: linear-gradient(135deg, #722EB9, #C179C5);
    color: white;
  }
  
  .faq-question h3 {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #333;
  }
  
  .faq-item.active .faq-question h3 {
    color: white;
  }
  
  .faq-question i {
    font-size: 16px;
    color: #722EB9;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
  }
  
  .faq-answer p {
    padding: 0 30px 25px 30px;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }
  
  /* Section CTA */
  .cta-section {
    padding: 80px 0;
  }
  
  .cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
  }
  
  .cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-family: "Outfit", sans-serif;
    font-size: 42px;
    font-weight: 300;
    margin: 0 0 20px 0;
    color: #fff;
  }
  
  .cta-content p {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 40px 0;
    color: #fff;
  }
  
  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cta-primary,
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .cta-primary {
    background: linear-gradient(135deg, #722EB9, #C179C5);
    color: white;
    box-shadow: 0 8px 25px rgba(114, 46, 185, 0.3);
  }
  
  .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(114, 46, 185, 0.4);
  }
  
  .cta-secondary {
    background: white;
    color: #722EB9;
    border: 2px solid #722EB9;
  }
  
  .cta-secondary:hover {
    background: #722EB9;
    color: white;
    transform: translateY(-3px);
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .hero-container {
      max-width: 950px;
      gap: 40px;
    }
    
    .hero-title {
      font-size: 56px;
    }
    
    .hero-subtitle {
      font-size: 20px;
    }
    
    .process-container,
    .deliverables-container,
    .benefits-container,
    .pricing-container,
    .faq-container,
    .cta-container {
      max-width: 950px;
    }
    
    .pricing-grid {
      max-width: 900px;
    }
    
    .section-title {
      font-size: 42px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-page {
      padding: 80px 0 60px 0;
    }
    
    .hero-container {
      flex-direction: column;
      text-align: center;
      gap: 30px;
      padding: 0 20px;
    }
    
    .hero-image {
      order: 1;
      flex: none;
    }
    
    .hero-text {
      order: 2;
    }
    
    .hero-title {
      font-size: 48px;
    }
    
    .hero-subtitle {
      font-size: 18px;
    }
    
    .intro-stats {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .process-steps-grid,
    .deliverables-grid {
      grid-template-columns: 1fr;
    }
    
    .process-step {
      flex-direction: column;
      text-align: center;
      padding: 30px 20px;
    }
    
    .step-icon {
      align-self: center;
    }
    
    .benefits-content,
    .faq-content {
      flex-direction: column;
      gap: 40px;
    }
    
    .benefits-left,
    .benefits-right,
    .faq-image {
      flex: none;
    }
    
    .section-title {
      font-size: 36px;
    }
    
    .section-subtitle {
      font-size: 18px;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 38px;
    }
    
    .hero-subtitle {
      font-size: 16px;
    }
    
    .intro-container,
    .process-container,
    .deliverables-container,
    .benefits-container,
    .faq-container,
    .cta-container {
      padding-left: 15px;
      padding-right: 15px;
    }
    
    .section-title {
      font-size: 32px;
    }
    
    .section-subtitle {
      font-size: 16px;
    }
    
    .deliverable-card,
    .process-step {
      padding: 20px;
    }
    
    .faq-question {
      padding: 20px;
    }
    
    .faq-answer p {
      padding: 0 20px 20px 20px;
    }
  }