  :root {
      --bs-primary: #1565c0;
      --bs-primary-dark: #008741;
      --bs-secondary: #0077b6;
      --bs-primary-light: #e3f2fd;
      --gradient-primary: linear-gradient(135deg, #1565C0 0%, #008741 100%);
      --gradient-green: linear-gradient(135deg, #008741 0%, #005a2b 100%);
  }

  .bg-primary {
      background: var(--gradient-primary) !important;
  }

  body {
      font-family: 'Inter', sans-serif;
  }

  /* Navigation */
  .navbar-sticky {
      position: sticky;
      top: 0;
      z-index: 1030;
      box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
  }

  .navbar-brand {
      font-weight: 700;
      color: var(--bs-primary) !important;
      font-size: 1.5rem;
      text-decoration: none;
  }

  .demo-badge {
      background: var(--bs-primary-dark);
      color: white;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-left: 1rem;
  }

 /* Hero Section */

/* Variante fond dégradé (par défaut) */
.hero-section.hero--gradient {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
    padding: 64px 0;
}

/* Variante image + overlay : mets l’URL de ton image ci-dessous */
.hero-section.hero--image {
    position: relative;
    padding: 64px 0;
    background: url('../img/pac1000-hero2.jpg') center/cover no-repeat;
}

.hero-section.hero--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(21, 101, 192, 0.95) 0%,
            rgba(0, 135, 65, 0.85) 50%);
}


.hero-section.hero--image>.container {
    position: relative;
    z-index: 1;
}

  .text-accent {
      color: #ffd166;
  }

  /* Buttons */
  .btn-primary {
      background: var(--gradient-primary);
      border: none;
      font-weight: 600;
      border-radius: 10px;
      padding: 12px 30px;
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(21, 101, 192, 0.3);
  }

  /* Form Container */
  .form-container {
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(21, 101, 192, 0.15);
      padding: 2rem;
      border: 2px solid rgba(21, 101, 192, 0.1);
  }

  .form-control,
  .form-select {
      border: 2px solid #e9ecef;
      border-radius: 10px;
      padding: 12px;
      font-size: 16px;
  }

  .form-control:focus,
  .form-select:focus {
      border-color: var(--bs-primary);
      box-shadow: 0 0 0 0.2rem rgba(21, 101, 192, 0.25);
  }

  /* Progress Bar */
  .progress {
      height: 10px;
      border-radius: 10px;
      background-color: #e9ecef;
  }

  .progress-bar {
      background: var(--gradient-primary);
      border-radius: 10px;
      transition: width 0.5s ease;
  }

  /* Choice Buttons */
  .choice-btn {
      transition: all 0.3s;
      border-radius: 10px;
      border: 2px solid #e9ecef;
      background: white;
      color: #495057;
      padding: 15px;
      font-weight: 500;
  }

  .choice-btn:hover {
      background-color: rgba(21, 101, 192, 0.05);
      border-color: var(--bs-primary);
      transform: scale(1.02);
  }

  .choice-btn.btn-selected {
      background-color: var(--bs-primary) !important;
      color: white !important;
      border-color: var(--bs-primary) !important;
  }

  /* Trust Badges */
  .trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 2rem;
  }

  .trust-badge {
      padding: 0.5rem 1rem;
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 8px;
      font-size: 0.875rem;
      font-weight: 600;
      color: #212529;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  }

  /* Phone CTA */
  .phone-cta {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.5rem;
      background: var(--gradient-primary);
      color: white;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.3s ease;
  }

  /* Proof Strip */
  .proof-modern {
      padding: 2rem 0;
      background: white;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .proof-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 3rem;
      opacity: 0.7;
      filter: grayscale(100%);
      transition: all 0.3s ease;
  }

  .proof-logos:hover {
      opacity: 1;
      filter: grayscale(0%);
  }

  /* Features */
  .feature-card {
      background: #fff;
      border: 1px solid #eef1f5;
      border-radius: 14px;
      padding: 20px;
      height: 100%;
  }

  .icon-box {
      background: var(--gradient-primary);
  }

  /* Steps */
  .step-card {
      background: #fff;
      border: 1px solid #eef1f5;
      border-radius: 14px;
      padding: 22px;
      height: 100%;
  }

  .step-num {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient-primary);
      color: #fff;
      font-weight: 700;
  }

  /* Urgency */
  .urgency {
      background: var(--gradient-primary);
      color: #fff;
      border-radius: 16px;
  }

  /* Testimonials */
  .testimonials-modern {
      padding: 5rem 0;
      background: #f9fafb;
  }

  .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
  }

  .testimonial-card-modern {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      position: relative;
      box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  }

  .testimonial-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
  }

  .testimonial-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
  }

  .testimonial-name {
      font-weight: 700;
      color: #111827;
  }

  .testimonial-rating {
      color: #fbbf24;
      font-size: 0.875rem;
  }

  /* FAQ */
  .faq-modern {
      padding: 5rem 0;
      background: white;
  }

  .faq-container {
      max-width: 800px;
      margin: 0 auto;
  }

  .faq-item {
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 12px;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: all 0.3s ease;
  }

  .faq-question {
      width: 100%;
      padding: 1.5rem;
      background: white;
      border: none;
      text-align: left;
      font-weight: 600;
      color: #111827;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .faq-question:hover {
      background: #f9fafb;
  }

  .faq-question.active {
      background: var(--bs-primary-light);
      color: var(--bs-primary);
  }

  .faq-icon {
      transition: transform 0.3s ease;
  }

  .faq-question.active .faq-icon {
      transform: rotate(180deg);
  }

  .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
  }

  .faq-answer.active {
      padding: 1.5rem;
      max-height: 500px;
  }

  /* CTA */
  .cta-modern {
      padding: 5rem 0;
      background: var(--gradient-primary);
      color: white;
      text-align: center;
  }

  .cta-content {
      max-width: 600px;
      margin: 0 auto;
  }

  .cta-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
  }

  .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 2.5rem;
      background: white;
      color: var(--bs-primary);
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  }

  .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
      color: var(--bs-primary-dark);
  }

  /* Sticky CTA */
  .sticky-cta {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1031;
      display: none;
      background: #111827;
      padding: 10px 14px;
      box-shadow: 0 -6px 18px rgba(0, 0, 0, .2);
  }

  .sticky-cta .btn {
      width: 100%;
  }

  /* Steps visibility */
  .step-hidden {
      display: none;
  }

  .step-visible {
      display: block;
      animation: fadeIn 0.5s ease-in-out;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @media (max-width: 991.98px) {
      .sticky-cta {
          display: block;
      }

      .hero-section {
          padding-bottom: 110px;
      }
  }