.circuits-secondary-section {
            padding: var(--space-16) var(--space-6);
          }
          /* ===== HERO SECTION AVEC BACKGROUND IMAGE ===== */
          .circuits-hero-section {
            padding: var(--space-16) var(--space-6) var(--space-8); /* Plus compact */
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%), 
                        url('/img/DSC06841-copie.jpg') center/cover no-repeat;
            position: relative;
            color: rgb(255, 255, 255);
            height: 65vh;
          }

          .circuits-hero-container {
            max-width: 1200px;
            margin: 0 auto;
          }

          .circuits-hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
          }

          .circuits-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: var(--space-2) var(--space-4);
            border-radius: 25px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: var(--space-4);
            border: 1px solid rgba(255, 255, 255, 0.2);
          }

          .circuits-hero-title {
            font-size: clamp(2rem, 4vw, 3rem); /* Réduit la taille */
            font-weight: 900;
            color: var(--color-white);
            margin-bottom: var(--space-4); /* Réduit l'espacement */
            line-height: 1.1;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
          }

          .circuits-hero-subtitle {
            font-size: 1rem; /* Plus petit */
            color: var(--color-white);
            line-height: 1.6;
            margin-bottom: var(--space-6); /* Moins d'espace */
            max-width: 500px; /* Plus étroit */
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
          }

          .circuits-hero-stats {
            display: flex;
            justify-content: center;
            gap: var(--space-8);
            margin-top: var(--space-6);
          }

          .circuits-hero-stats .stat-item {
            text-align: center;
          }

          .circuits-hero-stats .stat-number {
            font-size: 2rem; /* Réduit de 2.5rem */
            font-weight: 900;
            color: var(--color-white);
            line-height: 1;
            display: block;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
          }

          .circuits-hero-stats .stat-label {
            font-size: 0.875rem;
            color: var(--color-white);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: var(--space-2);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
          }

          /* Responsive pour la hero section */
          @media (max-width: 768px) {
            .circuits-hero-section {
              padding: var(--space-8) var(--space-3) var(--space-6);
            }

            .circuits-hero-stats {
              flex-direction: row; /* Gardez côte à côte */
              flex-wrap: wrap;
              justify-content: center;
              gap: var(--space-4);
            }

            .circuits-hero-stats .stat-number {
              font-size: 1.75rem;
            }
          }

          /* ===== SECTIONS HEADERS ===== */
          .circuits-main-section,
          .circuits-secondary-section {
            padding: var(--space-16) var(--space-6);
          }

          .circuits-main-section {
            background: var(--color-white);
          }

          .circuits-secondary-section {
            background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
          }

          .circuits-section-header {
            text-align: center;
            margin-top: var(--space-12); /* Ajout padding top */
            margin-bottom: var(--space-8);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
          }

          .circuits-section-title {
            font-size: clamp(1.5rem, 3vw, 2rem); /* Plus petit */
            font-weight: 800;
            color: var(--color-neutral-900);
            margin-bottom: var(--space-2); /* Moins d'espace */
            line-height: 1.1;
          }

          .circuits-section-subtitle {
            font-size: 0.9375rem; /* Plus petit */
            color: var(--color-neutral-600);
            line-height: 1.5;
          }

          /* Responsive adjustments */
          @media (max-width: 768px) {
            .circuits-section-header {
              margin-bottom: var(--space-6);
            }
            
            .circuits-section-title {
              font-size: clamp(1.25rem, 4vw, 1.75rem);
            }
            
            .circuits-section-subtitle {
              font-size: 0.875rem;
            }
          }

/* ===== SECTION CTA PLUS DE CIRCUITS ===== */
          .circuits-more-cta {
            padding: 0 var(--space-6);
            background: linear-gradient(135deg, 
              rgba(255, 255, 255, 0.8) 0%, 
              rgba(248, 250, 252, 0.6) 100%
            );
            position: relative;
          }

          .circuits-more-cta .circuits-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: var(--space-12);
            align-items: center;
          }

          /* ===== CONTENU PRINCIPAL ===== */
          .more-circuits-content {
            display: flex;
            flex-direction: column;
            gap: var(--space-6);
          }

          .more-circuits-header {
            text-align: left;
          }

          .circuits-count-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--primary-700) 100%);
            color: white;
            padding: var(--space-2) var(--space-4);
            border-radius: 25px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: var(--space-4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
          }

          .more-circuits-header h3 {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 800;
            color: var(--color-neutral-900);
            margin-bottom: var(--space-4);
            line-height: 1.2;
          }

          .more-circuits-header p {
            font-size: 1.125rem;
            color: var(--color-neutral-600);
            line-height: 1.7;
            max-width: 500px;
          }

          /* ===== FEATURES ===== */
          .more-circuits-features {
            display: flex;
            flex-direction: column;
            gap: var(--space-3);
          }

          .feature-item {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            padding: var(--space-3);
            background: rgba(255, 255, 255, 0.7);
            border-radius: var(--radius-lg);
            border-left: 4px solid var(--color-primary);
          }

          .feature-item .material-symbols-outlined {
            color: var(--color-primary);
            font-size: 24px;
            flex-shrink: 0;
          }

          .feature-item div {
            display: flex;
            flex-direction: column;
          }

          .feature-item strong {
            font-weight: 700;
            color: var(--color-neutral-900);
            font-size: 0.9375rem;
            margin-bottom: 2px;
          }

          .feature-item span {
            font-size: 0.8125rem;
            color: var(--color-neutral-600);
          }

          /* ===== ACTIONS ===== */
          .more-circuits-actions {
            display: flex;
            gap: var(--space-3);
            margin-top: var(--space-2);
          }

          .btn-more-primary {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--primary-700) 100%);
            color: white;
            padding: var(--space-3) var(--space-6);
            border-radius: var(--radius-lg);
            font-weight: 600;
            font-size: 0.9375rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
          }

          .btn-more-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
          }

          .btn-more-secondary {
            display: inline-flex;
            align-items: center;
            gap: var(--space-1);
            background: white;
            color: var(--color-primary);
            padding: var(--space-3) var(--space-4);
            border: 2px solid var(--color-primary);
            border-radius: var(--radius-lg);
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.3s ease;
          }

          .btn-more-secondary:hover {
            background: var(--color-primary);
            color: white;
            transform: translateY(-1px);
          }

          .btn-more-primary .material-symbols-outlined,
          .btn-more-secondary .material-symbols-outlined {
            font-size: 18px;
          }

          /* ===== VISUAL SECTION ===== */
          .more-circuits-visual {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            height: 320px;
            background: linear-gradient(
              135deg,
              var(--color-neutral-100) 0%,
              var(--color-neutral-200) 100%
            );
          }

          .more-circuits-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
          }

          .circuits-more-cta:hover .more-circuits-visual img {
            transform: scale(1.05);
          }

          .visual-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
              135deg,
              rgba(0, 0, 0, 0.3) 0%,
              rgba(255, 87, 34, 0.2) 100%
            );
            display: flex;
            align-items: center;
            justify-content: center;
          }

          .stat-highlight {
            text-align: center;
            color: white;
          }

          .stat-highlight .stat-number {
            font-size: 3rem;
            font-weight: 900;
            line-height: 1;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: var(--space-2);
          }

          .stat-highlight .stat-label {
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
            line-height: 1.3;
          }

          /* ===== RESPONSIVE ===== */
          @media (max-width: 992px) {
            .circuits-more-cta .circuits-container {
              grid-template-columns: 1fr;
              gap: var(--space-8);
              text-align: center;
            }
            
            .more-circuits-header {
              text-align: center;
            }
            
            .more-circuits-header p {
              max-width: 600px;
              margin: 0 auto;
            }
            
            .more-circuits-visual {
              height: 280px;
            }
          }

          @media (max-width: 768px) {
            .circuits-more-cta {
              padding: var(--space-12) var(--space-3);
            }
            
            .more-circuits-actions {
              flex-direction: column;
              align-items: center;
            }
            
            .btn-more-primary,
            .btn-more-secondary {
              width: 100%;
              justify-content: center;
              max-width: 280px;
            }
            
            .more-circuits-features {
              max-width: 400px;
              margin: 0 auto;
            }
            
            .more-circuits-visual {
              height: 240px;
            }
            
            .stat-highlight .stat-number {
              font-size: 2.5rem;
            }
          }

          @media (max-width: 480px) {
            .more-circuits-actions {
              gap: var(--space-2);
            }
            
            .btn-more-primary {
              padding: var(--space-3) var(--space-4);
              font-size: 0.875rem;
            }
            
            .btn-more-secondary {
              padding: 10px var(--space-3);
              font-size: 0.8125rem;
            }
            
            .feature-item {
              padding: var(--space-2);
            }
            
            .feature-item .material-symbols-outlined {
              font-size: 20px;
            }
          }



          /* Page detail */
