/** Shopify CDN: Minification failed

Line 3466:12 Expected identifier but found whitespace
Line 3466:14 Unexpected "{"
Line 3466:23 Expected ":"
Line 3466:67 Unexpected "0"
Line 3466:70 Unexpected "{"
Line 3466:79 Expected ":"
Line 3466:123 Expected ":"
Line 3467:15 Expected identifier but found whitespace
Line 3467:17 Unexpected "{"
Line 3467:26 Expected ":"
... and 20 more hidden warnings

**/


/* CSS from section stylesheet tags */
.articles-section {
    background: #000;
    padding: 120px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
  }

  .articles-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    width: 100%;
  }

  /* Header de la section */
  .articles-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .articles-section-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    color: #fff;
  }

  /* Grille des articles */
  .articles-section .articles-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 40px !important;
    width: 100% !important;
    grid-auto-rows: auto !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
  }

  /* Cartes d'articles */
  .articles-section .article-card {
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.3s ease;
    width: auto !important;
    flex: none !important;
  }

  .article-card:hover {
    transform: translateY(-4px);
  }

  .article-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
  }

  /* Images */
  .article-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
  }

  .article-card:hover .article-image img {
    filter: grayscale(0%);
  }

  .article-placeholder {
    width: 100%;
    height: 100%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
  }

  /* Contenu en dessous */
  .article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  /* Métadonnées */
  .article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-family: 'Alexandria', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
  }

  .article-category {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Alexandria', sans-serif;
    font-weight: 500;
  }

  .article-separator {
    opacity: 0.6;
  }

  .article-date {
    font-family: 'Alexandria', sans-serif;
    opacity: 0.8;
  }

  /* Titre */
  .article-title {
    color: #fff;
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
  }

  /* Description courte */
  .article-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 400;
    line-height: 1.5;
    margin: 12px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Bouton voir tous les articles */
  .articles-see-all {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }

  .articles-see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .articles-see-all-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .articles-see-all-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
  }

  .articles-see-all-btn:hover:before {
    left: 100%;
  }

  .articles-see-all-btn svg {
    transition: transform 0.3s ease;
  }

  .articles-see-all-btn:hover svg {
    transform: translateX(4px);
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .articles-container {
      max-width: 1200px;
    }
  }

  @media (max-width: 768px) {
    .articles-section .articles-grid {
      grid-template-columns: 1fr 1fr !important;
      gap: 30px !important;
    }
  }

  @media (max-width: 480px) {
    .articles-section {
      padding: 80px 0;
    }
    
    .articles-container {
      padding: 0 20px;
    }
    
    .articles-header {
      margin-bottom: 40px;
    }
    
    .articles-section .articles-grid {
      grid-template-columns: 1fr !important;
      gap: 20px !important;
    }
    
    .article-image {
      margin-bottom: 16px;
    }
    
    .articles-see-all {
      margin-top: 40px;
    }
    
    .articles-see-all-btn {
      padding: 14px 28px;
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .article-meta {
      flex-wrap: wrap;
      gap: 6px;
    }
    
    .articles-grid {
      gap: 24px;
    }
    
    .article-image {
      margin-bottom: 12px;
      border-radius: 12px;
    }
    
    .articles-see-all {
      margin-top: 32px;
    }
    
    .articles-see-all-btn {
      padding: 12px 24px;
      font-size: 14px;
      gap: 10px;
    }
  }
.audit-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #059669 0%, #047857 25%, #065f46 50%, #064e3b  75%, #022c22 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 120px 0;
  }

  .audit-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .audit-container {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .audit-eyebrow {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
  }

  .audit-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 40px 0;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
  }

  .audit-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 16px 28px;
    color: #fff;
    text-decoration: none;
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
  }

  .audit-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  .audit-cta-text {
    flex: 1;
  }

  .audit-cta-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .audit-cta:hover .audit-cta-icon {
    transform: translate(4px, -4px);
  }

  /* Animations */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  /* Canvas Three.js */

  /* Responsive */
  @media (max-width: 768px) {
    .audit-section {
      min-height: 500px;
      padding: 80px 0;
    }
    
    .audit-container {
      padding: 0 20px;
      text-align: center;
    }
    
    .audit-eyebrow {
      margin-bottom: 20px;
    }
    
    .audit-title {
      margin-bottom: 32px;
    }
    
    .audit-cta {
      padding: 14px 24px;
      gap: 10px;
    }
  }

  @media (max-width: 480px) {
    .audit-section {
      min-height: 400px;
      padding: 60px 0;
    }
    
    .audit-cta {
      padding: 12px 20px;
      font-size: 14px;
    }
  }
.audit-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #059669 0%, #047857 25%, #065f46 50%, #064e3b  75%, #022c22 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 120px 0;
  }

  .audit-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .audit-container {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .audit-eyebrow {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
  }

  .audit-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 40px 0;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
  }

  .audit-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 16px 28px;
    color: #fff;
    text-decoration: none;
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
  }

  .audit-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  .audit-cta-text {
    flex: 1;
  }

  .audit-cta-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .audit-cta:hover .audit-cta-icon {
    transform: translate(4px, -4px);
  }

  /* Animations */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  /* Canvas Three.js */

  /* Responsive */
  @media (max-width: 768px) {
    .audit-section {
      min-height: 500px;
      padding: 80px 0;
    }
    
    .audit-container {
      padding: 0 20px;
      text-align: center;
    }
    
    .audit-eyebrow {
      margin-bottom: 20px;
    }
    
    .audit-title {
      margin-bottom: 32px;
    }
    
    .audit-cta {
      padding: 14px 24px;
      gap: 10px;
    }
  }

  @media (max-width: 480px) {
    .audit-section {
      min-height: 400px;
      padding: 60px 0;
    }
    
    .audit-cta {
      padding: 12px 20px;
      font-size: 14px;
    }
  }
.blog-section {
    position: relative;
    background: #000;
    min-height: 100vh;
    padding: 120px 0 80px;
    color: #fff;
  }

  .blog-section__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .blog-section__gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(60% 60% at 60% 40%, rgba(0,255,133,.15) 0%, rgba(72,255,0,.12) 35%, rgba(0,160,80,.18) 65%, rgba(0,0,0,.85) 100%);
    mix-blend-mode: screen;
  }

  .blog-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
  }

  /* SIDEBAR */
  .blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
  }

  .sidebar-header h2 {
    font-family: 'Alexandria', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
  }

  .search-bar {
    position: relative;
    margin-bottom: 30px;
  }

  .search-bar input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 40px 12px 16px;
    color: #fff;
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .search-bar input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
  }

  .search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
  }

  .sidebar-filters h3 {
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 12px 0;
    color: rgba(255, 255, 255, 0.8);
  }

  .mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Alexandria', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-bottom: 12px;
  }

  .mobile-toggle:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
  }

  .toggle-icon {
    transition: transform 0.3s ease;
  }

  .mobile-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
  }

  .filter-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 8px;
  }

  .filter-btn:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
  }

  .filter-btn.active {
    background: rgba(0, 255, 136, 0.15);
    border-color: #00ff88;
    color: #00ff88;
  }

  .filter-count {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 500;
  }

  .filter-btn.active .filter-count {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
  }

  /* MAIN CONTENT */
  .blog-main {
    min-height: 100vh;
  }

  .blog-header {
    margin-bottom: 50px;
  }

  .blog-header h1 {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
  }

  .blog-description {
    font-family: 'Alexandria', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }

  /* ARTICLES GRID */
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
  }

  .article-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .article-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
  }

  .article-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
  }

  .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .article-card:hover .article-image img {
    transform: scale(1.05);
  }

  .article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
  }

  .article-tag {
    background: rgba(0, 255, 136, 0.9);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
  }

  .article-content {
    padding: 20px;
  }

  .article-date {
    color: rgba(0, 255, 136, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
  }

  .article-title {
    margin-bottom: 16px;
  }

  .article-title a {
    font-family: 'Alexandria', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
  }

  .article-title a:hover {
    color: #00ff88;
  }

  .article-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
  }

  .article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ff88;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .article-link:hover {
    color: #00cc6a;
    transform: translateX(4px);
  }

  .article-link svg {
    transition: transform 0.3s ease;
  }

  .article-link:hover svg {
    transform: rotate(45deg);
  }

  /* LOAD MORE */
  .load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .load-more-btn {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    border-radius: 50px;
    padding: 16px 32px;
    color: #00ff88;
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .load-more-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
  }

  .load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* LOADER */
  .loader {
    display: flex;
    gap: 4px;
  }

  .loader-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: loader-bounce 1.4s ease-in-out infinite both;
  }

  .loader-dot:nth-child(1) { animation-delay: -0.32s; }
  .loader-dot:nth-child(2) { animation-delay: -0.16s; }

  @keyframes loader-bounce {
    0%, 80%, 100% {
      transform: scale(0);
    }
    40% {
      transform: scale(1);
    }
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .blog-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .blog-sidebar {
      position: relative;
      top: auto;
      padding: 20px;
    }
    
    .filter-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 10px;
    }

    .filter-btn {
      padding: 8px 12px;
      font-size: 13px;
      margin-bottom: 0;
    }

    .filter-count {
      font-size: 11px;
      padding: 1px 6px;
    }

    .sidebar-filters h3 {
      font-size: 14px;
    }
  }

  @media (max-width: 768px) {
    .blog-container {
      padding: 0 16px;
      gap: 20px;
    }
    
    .articles-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .article-card {
      border-radius: 16px;
    }
    
    .article-content {
      padding: 16px;
    }
    
    .blog-sidebar {
      padding: 16px;
    }

    /* Menu déroulant mobile */
    .mobile-toggle {
      display: flex;
    }

    .filter-categories {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, opacity 0.3s ease;
      opacity: 0;
    }

    .filter-categories.expanded {
      max-height: 500px;
      opacity: 1;
      margin-top: 0;
    }

    .filter-categories.expanded {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .filter-btn {
      padding: 10px 14px;
      font-size: 13px;
      border-radius: 12px;
    }

    .filter-count {
      font-size: 11px;
      padding: 2px 6px;
    }

    .sidebar-filters h3 {
      font-size: 16px;
    }

    .blog-header h1 {
      font-size: 28px;
    }

    .blog-description {
      font-size: 16px;
    }
  }

  @media (max-width: 1200px) and (min-width: 769px) {
    .articles-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* ANIMATIONS */
  .article-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
  }

  .article-card:nth-child(1) { animation-delay: 0.1s; }
  .article-card:nth-child(2) { animation-delay: 0.2s; }
  .article-card:nth-child(3) { animation-delay: 0.3s; }
  .article-card:nth-child(4) { animation-delay: 0.4s; }
  .article-card:nth-child(5) { animation-delay: 0.5s; }
  .article-card:nth-child(6) { animation-delay: 0.6s; }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* STATES */
  .article-card.hidden {
    display: none;
  }

  .no-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
  }

  .no-results h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .no-other-blogs {
    padding: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-style: italic;
  }
.site-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 40px;
    margin-top: 100px;
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

 

  .legal-top-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .legal-top-link:hover {
    color: #c8ff00;
  }

  .footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-contact {
    flex: 0 0 auto;
    min-width: 250px;
  }

  .footer-navigations {
    display: flex;
    gap: 60px;
    flex: 1;
    justify-content: flex-end;
  }

  .footer-nav,
  .footer-services,
  .footer-third-nav {
    min-width: 150px;
  }


  /* Navigation sections */
  .footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
  }

  .footer-link:hover {
    color: #c8ff00;
  }

  /* Contact section */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .contact-link:hover {
    color: #c8ff00;
  }

  .contact-icon {
    font-size: 16px;
  }

  /* Footer bottom */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
  }

  .footer-bottom-menu {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .bottom-menu-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .bottom-menu-link:hover {
    color: #c8ff00;
  }


  .footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 30px;
  }


  /* Social links */
  .social-links {
    display: flex;
    gap: 15px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-link:hover {
    background: #c8ff00;
    transform: translateY(-2px);
  }

  .social-icon {
    font-size: 18px;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .footer-main {
      gap: 40px;
    }
    
    .footer-navigations {
      gap: 40px;
    }
    
    .footer-nav,
    .footer-services,
    .footer-third-nav {
      min-width: 120px;
    }
  }

  @media (max-width: 1024px) {
    .footer-navigations {
      gap: 30px;
    }
    
    .footer-nav,
    .footer-services,
    .footer-third-nav {
      min-width: 100px;
    }

    .footer-contact {
      min-width: 200px;
    }
  }

  @media (max-width: 900px) {
    .footer-navigations {
      flex-wrap: wrap;
      gap: 30px;
    }
    
    .footer-nav,
    .footer-services,
    .footer-third-nav {
      flex: 1;
      min-width: 140px;
    }
  }

  @media (max-width: 768px) {
    .site-footer {
      padding: 60px 0 30px;
    }

    .footer-content {
      padding: 0 20px;
    }

    
    .footer-main {
      flex-direction: column;
      gap: 40px;
      margin-bottom: 40px;
      padding-bottom: 40px;
    }

    .footer-contact {
      min-width: auto;
      text-align: center;
    }

    .footer-navigations {
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .footer-nav,
    .footer-services,
    .footer-third-nav {
      text-align: center;
      min-width: 120px;
    }

    .footer-bottom {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      text-align: center;
    }

    .footer-bottom-left {
      align-items: center;
      text-align: center;
    }

    .footer-bottom-row {
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }

    .footer-bottom-menu {
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .footer-bottom-right {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      width: 100%;
    }

  }

  @media (max-width: 600px) {
    .footer-navigations {
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }

    .footer-nav,
    .footer-services,
    .footer-third-nav {
      width: 100%;
      max-width: 200px;
    }
  }

  @media (max-width: 480px) {
    .site-footer {
      padding: 40px 0 20px;
    }

    .footer-content {
      padding: 0 15px;
    }

   


    .footer-main {
      gap: 30px;
      margin-bottom: 30px;
      padding-bottom: 30px;
    }

    .footer-title {
      font-size: 14px;
      margin-bottom: 15px;
    }

    .footer-links li {
      margin-bottom: 8px;
    }

    .footer-link {
      font-size: 13px;
    }

    .contact-link {
      font-size: 13px;
    }

  }
.brand-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 40px;
    background: #000;
    backdrop-filter: blur(10px);
    z-index: 10000;
    transition: background .3s ease, box-shadow .3s ease;
    width: 100vw;
    box-sizing: border-box;
  }
  .brand-header--transparent { background: transparent; box-shadow: none; }
  .brand-header--dark { background: #000; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
  .brand-header.scrolled { background: #000; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
  
  /* Force transparent sur homepage/mobile jusqu'au scroll */
  @media (max-width: 768px) {
    .brand-header--transparent:not(.scrolled):not(.menu-open) { 
      background: transparent !important; 
      box-shadow: none !important; 
    }
  }
  .brand-header.menu-open { background: #000 !important; }
  .brand-header__menu { 
    background: none; 
    border: 0; 
    padding: 10px; 
    cursor: pointer; 
    z-index: 9999999; 
    position: relative;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }
  .brand-header__hamburger { display: flex; flex-direction: column; gap: 5px; }
  .brand-header__hamburger span { width: 24px; height: 2px; background: #fff; transition: .3s ease; }
  .brand-header__menu.active .brand-header__hamburger span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .brand-header__menu.active .brand-header__hamburger span:nth-child(2) { opacity: 0; }
  .brand-header__menu.active .brand-header__hamburger span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

  /* Structure grid du header */
  .brand-header__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
  }

  .brand-header__center {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .brand-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px; /* espace entre CTA et bouton homepage */
    z-index: 1;
  }
  .brand-header__center a { 
    color: #fff; 
    font-family: 'Alexandria', sans-serif; 
    font-weight: 500; 
    font-size: 20px; 
    text-decoration: none; 
    letter-spacing: -0.02em; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    height: 100%;
    padding: 8px 16px;
  }
  
  .brand-header__logo-img { 
    display: block; 
    height: var(--logo-height, 40px); 
    width: auto; 
    max-width: 300px; 
    max-height: 50px;
    object-fit: contain;
  }
  
  .brand-header__logo-text { 
    color: #fff; 
    font-family: 'Alexandria', sans-serif; 
    text-align: center;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 500;
  }

  .btn-cta { 
    padding: 12px 20px; 
    border-radius: 999px; 
    text-decoration: none; 
    font-family: 'Alexandria', sans-serif; 
    font-weight: 500; 
    font-size: 14px; 
    transition: .3s ease; 
  }
  .btn-cta:hover { transform: translateY(-1px); }

  /* Bouton homepage - visible sur desktop */
  .btn-homepage {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Alexandria', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
  }

  .btn-homepage:hover {
    transform: translateY(-2px);
  }


  .brand-nav { 
    position: fixed !important; 
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.98) !important;
    opacity: 0 !important; 
    visibility: hidden !important; 
    transition: opacity 0.3s ease !important;
    z-index: 10000 !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    pointer-events: none !important;
    display: block !important;
  }
  .brand-nav.active { 
    opacity: 1 !important; 
    visibility: visible !important;
    pointer-events: auto !important;
    display: block !important;
  }
  .brand-nav__inner { 
    width: 100% !important;
    height: 100vh !important; 
    display: flex !important; 
    flex-direction: column !important; 
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 0 !important; 
    position: relative !important; 
  }
  
  /* Bouton de fermeture */
  .brand-nav__close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 9999999;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .brand-nav__close-icon {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
  }
  
  .brand-nav__close-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform-origin: center;
    transition: all 0.3s ease;
  }
  
  .brand-nav__close-icon span:first-child {
    transform: translateY(-50%) rotate(45deg);
  }
  
  .brand-nav__close-icon span:last-child {
    transform: translateY(-50%) rotate(-45deg);
  }
  
  /* Menu principal à gauche */
  .brand-nav__main { 
    display: flex !important; 
    flex-direction: column !important; 
    gap: 20px !important; 
    padding: 100px 60px !important;
    flex: 1 !important;
    justify-content: center !important;
    align-items: flex-start !important;
    width: 100% !important;
  }
  .brand-nav__link { 
    color: #fff !important; 
    font-family: 'Alexandria', sans-serif !important;
    font-size: clamp(32px, 6vw, 56px) !important; 
    font-weight: 400 !important; 
    text-decoration: none !important; 
    transition: all 0.3s ease !important; 
    opacity: 1 !important;
    transform: translateY(0) !important;
    line-height: 1 !important;
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    padding: 0 !important;
  }
  .brand-nav.active .brand-nav__link { 
    opacity: 1; 
    transform: translateY(0); 
    transition: all 0.6s ease;
  }
  .brand-nav.active .brand-nav__link:nth-child(1) { transition-delay: 0.1s; }
  .brand-nav.active .brand-nav__link:nth-child(2) { transition-delay: 0.2s; }
  .brand-nav.active .brand-nav__link:nth-child(3) { transition-delay: 0.3s; }
  .brand-nav.active .brand-nav__link:nth-child(4) { transition-delay: 0.4s; }
  .brand-nav__link:hover { color: #c8ff00; }
  
  /* Menu secondaire (mentions légales) en bas à gauche */
  .brand-nav__secondary { 
    position: absolute !important;
    bottom: 60px !important;
    left: 60px !important;
    display: flex !important; 
    flex-direction: column !important; 
    gap: 8px !important; 
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .brand-nav__secondary-link { 
    color: rgba(255,255,255,0.5); 
    font-family: 'Alexandria', sans-serif;
    font-size: 13px; 
    font-weight: 400; 
    text-decoration: none; 
    transition: .3s ease; 
  }
  .brand-nav__secondary-link:hover { color: rgba(255,255,255,0.8); }

  /* Animation pour le bouton scroll */
  @keyframes slideInRight {
    0% {
      opacity: 0;
      transform: translateX(30px) translateY(-50%);
    }
    100% {
      opacity: 1;
      transform: translateX(0) translateY(-50%);
    }
  }

  @media (max-width: 1024px) {
    .brand-header__right {
      gap: 12px; /* Espacement réduit sur tablette */
    }
    
    .btn-cta,
    .btn-homepage {
      padding: 10px 18px;
      font-size: 13px;
    }
    
    /* Garder le bouton homepage visible sur tablette */
    .btn-homepage {
      display: inline-block;
    }
  }

  @media (max-width: 768px) {
    .brand-header { 
      height: 60px;
      padding: 0 16px;
      grid-template-columns: 1fr auto 1fr;
      gap: 12px;
    }
    
    .brand-header__center {
      grid-column: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 200px;
      overflow: hidden;
    }
    
    .brand-header__center a {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px 8px;
    }
    
    .brand-header__logo-img {
      height: clamp(24px, calc(var(--logo-height, 40px) * 0.8), 36px);
      width: auto;
      max-width: 180px;
      max-height: 44px;
      object-fit: contain;
    }
    
    .brand-header__logo-text {
      font-size: clamp(15px, 4vw, 18px);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      text-align: center;
    }
    
    /* Conteneurs latéraux optimisés */
    .brand-header__left,
    .brand-header__right {
      flex-shrink: 0;
      min-width: 44px;
    }
    
    /* Masquer le bouton homepage sur mobile seulement */
    .btn-homepage {
      display: none;
    }
    
    .brand-header__right {
      gap: 0;
      justify-content: flex-end;
    }
    
    .btn-cta {
      padding: 8px 14px;
      font-size: 12px;
      white-space: nowrap;
      min-width: 0;
    }
    .brand-nav__main {
      gap: 16px;
      padding: 0 30px;
    }
    .brand-nav__link { 
      font-size: clamp(36px, 12vw, 70px); 
    }
    .brand-nav__secondary { 
      bottom: 40px;
      left: 30px;
    }
    .brand-nav__secondary-link { 
      font-size: 12px; 
    }
  }

  @media (max-width: 480px) {
    .brand-header { 
      padding: 0 12px;
      gap: 8px;
    }
    
    .brand-header__center {
      max-width: 150px;
    }
    
    .brand-header__logo-img {
      height: clamp(20px, calc(var(--logo-height, 40px) * 0.7), 30px);
      max-width: 140px;
      max-height: 38px;
    }
    
    .brand-header__logo-text {
      font-size: clamp(13px, 3.5vw, 16px);
    }
    
    .btn-cta {
      padding: 6px 12px;
      font-size: 11px;
    }
    
    /* Bouton hamburger légèrement plus petit */
    .brand-header__menu {
      padding: 8px;
      min-width: 40px;
      min-height: 40px;
    }
    
    .brand-header__hamburger span {
      width: 20px;
    }
  }
.brand-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
  }
  .brand-hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
  .brand-hero__gradient { position: absolute; inset: 0; z-index: 2; background: radial-gradient(60% 60% at 60% 40%, rgba(0,255,133,.28) 0%, rgba(72,255,0,.25) 35%, rgba(0,160,80,.3) 65%, rgba(0,0,0,.9) 100%); mix-blend-mode: screen; }
  
  /* Conteneur principal avec contraintes strictes */
  .brand-hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
  }
  
  .brand-hero__content { 
    text-align: center; 
    max-width: 1100px; 
    margin: 0 auto;
    width: 100%;
  }
  .brand-hero__badges { display:flex; gap:12px; justify-content:center; margin-bottom: 28px; }
  .badge { background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); border-radius: 10px; padding:8px 14px; color:#fff; font-family: 'Alexandria', sans-serif; font-size:11px; font-weight: 400; letter-spacing:.2px; }
  .brand-hero__title { color:#fff; font-family: 'Alexandria', sans-serif; line-height:1.1; letter-spacing:-.02em; margin:0 0 18px; }
  .brand-hero__title .line { display:block; font-weight:400; font-size: clamp(32px, 6vw, 72px); transform: translateY(30px); opacity: 0; }
  .brand-hero__title .line--highlight { background: linear-gradient(45deg, #c8ff00, #00ffa3); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; font-weight:600; }
  .brand-hero__subtitle { color: rgba(255,255,255,.8); font-family: 'Alexandria', sans-serif; font-size: clamp(14px, 1.8vw, 18px); font-weight: 400; margin: 0 0 28px; transform: translateY(20px); opacity: 0; }
  .btn-cta { background:#c8ff00; color:#000; padding:14px 32px; border-radius:999px; font-family: 'Alexandria', sans-serif; font-weight:500; font-size: 15px; display:inline-block; transition:.3s ease; box-shadow: 0 10px 30px rgba(200,255,0,.25); transform: translateY(20px); opacity: 0; }
  .btn-cta:hover { transform: translateY(18px); background:#b3e600; }
  .brand-hero__location { 
    position:absolute; 
    right: 40px; 
    bottom: 40px; 
    color: rgba(255,255,255,.7); 
    font-family: 'Alexandria', sans-serif;
    font-size: 13px;
    font-weight: 400;
    z-index:3; 
    display:flex; 
    gap:8px; 
    align-items:flex-start;
    max-width: 250px;
    text-align: right;
    line-height: 1.4;
  }

  .hero-loaded .brand-hero__title .line { transform:none; opacity: 1; transition: .8s ease .2s; }
  .hero-loaded .brand-hero__title .line:nth-child(2) { transition-delay: .4s; }
  .hero-loaded .brand-hero__subtitle { transform:none; opacity:1; transition: .8s ease .6s; }
  .hero-loaded .btn-cta { transform:none; opacity:1; transition: .8s ease .8s; }
  .hero-loaded .logos-marquee { opacity: 1; transform: none; transition: .8s ease 1s; }

  /* Logos défilants avec contraintes strictes */
  .logos-marquee {
    margin-top: 60px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    mask: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, transparent 100%);
    opacity: 0;
    transform: translateY(30px);
  }
  
  .logos-marquee__track {
    display: flex;
    align-items: center;
    gap: clamp(40px, 8vw, 120px);
    width: max-content;
    animation: marquee-scroll var(--marquee-speed, 50s) linear infinite;
    will-change: transform;
    transform: translateX(0);
    max-width: none;
  }
  
  .logos-marquee__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }
  
  .logos-marquee__item img {
    display: block;
    height: var(--logo-height, 60px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .logos-marquee__item:hover img {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .logos-marquee:hover .logos-marquee__track {
    animation-play-state: paused;
  }
  
  @keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @media (max-width: 768px){ 
    .brand-hero {
      width: 100vw;
      max-width: 100vw;
      margin-left: calc(-50vw + 50%);
      overflow-x: hidden;
      overflow: hidden;
      position: relative !important;
      top: auto !important;
      left: auto !important;
      height: auto;
      min-height: 100vh;
      z-index: 2;
    }
    
    .brand-hero__container {
      padding: 0 20px;
      max-width: 100vw;
      width: 100%;
      overflow: hidden;
      position: relative;
    }
    
    .brand-hero__content {
      max-width: 100% !important;
      width: 100% !important;
      overflow: hidden !important;
      position: relative !important;
    }
    
    .brand-hero__location { 
      right: 20px !important;
      bottom: 20px !important;
      max-width: 200px !important;
      font-size: 13px !important;
    }
    
    .logos-marquee { 
      margin-top: 40px !important;
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden !important;
      position: relative !important;
    }
    
    .logos-marquee__track { 
      gap: 30px !important;
      max-width: calc(100vw - 40px) !important;
      animation-duration: 30s !important;
      contain: layout !important;
    }
    
    .logos-marquee__item {
      flex-shrink: 0 !important;
      min-width: 0 !important;
      max-width: 120px !important;
    }
    
    .logos-marquee__item img {
      height: 40px !important;
      max-width: 70px !important;
      width: auto !important;
    }
    
    /* Force l'anti-débordement sur tous les éléments de la section */
    .brand-hero *,
    .brand-hero *::before,
    .brand-hero *::after {
      max-width: 100% !important;
      overflow-x: hidden !important;
    }
  }
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.contact-combined {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
  }

  .contact-combined__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .contact-combined__gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(60% 60% at 60% 40%, rgba(0,255,133,.28) 0%, rgba(72,255,0,.25) 35%, rgba(0,160,80,.3) 65%, rgba(0,0,0,.9) 100%);
    mix-blend-mode: screen;
  }

  .contact-combined__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: calc(100vh - 160px);
  }

  /* Contenu gauche */
  .contact-combined__left {
    display: flex;
    align-items: center;
  }

  .contact-combined__content {
    max-width: 500px;
  }

  .contact-combined__title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 32px 0;
  }

  .contact-combined__subtitle {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
  }

  .contact-combined__cta {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-family: 'Alexandria', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .contact-combined__cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
  }

  /* Formulaire droite */
  .contact-combined__right {
    display: flex;
    justify-content: center;
  }

  .contact-combined__form-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 520px;
  }

  /* Messages de succes et d'erreur */
  .contact-form__success {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Alexandria', sans-serif;
    font-weight: 500;
    font-size: 14px;
  }

  .contact-form__success svg {
    flex-shrink: 0;
  }

  .contact-form__success p {
    margin: 0;
  }

  .contact-form__errors {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-family: 'Alexandria', sans-serif;
  }

  .contact-form__errors h4 {
    margin: 0 0 8px 0;
    font-weight: 600;
    font-size: 14px;
  }

  .contact-form__errors ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .contact-form__errors li {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .contact-form__errors li:last-child {
    margin-bottom: 0;
  }

  /* Champs du formulaire */
  .contact-form__fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .contact-form__label {
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
  }

  .contact-form__input,
  .contact-form__textarea {
    font-family: 'Alexandria', sans-serif;
    font-size: 15px;
    padding: 16px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    resize: vertical;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form__input:focus,
  .contact-form__textarea:focus {
    outline: none;
    border-color: #00bcd4;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
  }

  .contact-form__input::placeholder,
  .contact-form__textarea::placeholder {
    color: #999;
    font-family: 'Alexandria', sans-serif;
  }

  .contact-form__textarea {
    min-height: 120px;
    font-family: 'Alexandria', sans-serif;
    line-height: 1.5;
  }

  /* Bouton d'envoi */
  .contact-form__submit {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 18px 32px;
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 8px;
    min-height: 56px;
  }

  .contact-form__submit:hover {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
  }

  .contact-form__submit svg {
    transition: transform 0.3s ease;
  }

  .contact-form__submit:hover svg {
    transform: translateX(3px);
  }

  /* Mentions legales */
  .contact-form__legal {
    text-align: center;
    margin-top: 16px;
  }

  .contact-form__legal p {
    font-family: 'Alexandria', sans-serif;
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

  .contact-form__legal a {
    color: #3949ab;
    text-decoration: underline;
    transition: color 0.3s ease;
  }

  .contact-form__legal a:hover {
    color: #1a237e;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .contact-combined__container {
      gap: 60px;
    }
  }

  @media (max-width: 1024px) {
    .contact-combined__container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
    
    .contact-combined__left {
      justify-content: center;
    }
    
    .contact-combined__content {
      max-width: 600px;
    }
  }

  @media (max-width: 768px) {
    .contact-combined {
      min-height: auto;
      padding: 60px 0;
    }
    
    .contact-combined__container {
      padding: 0 20px;
      min-height: auto;
    }
    
    .contact-combined__form-card {
      padding: 36px 28px;
      border-radius: 20px;
    }
    
    .contact-form__row {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .contact-form__fields {
      gap: 22px;
    }
    
    .contact-form__input,
    .contact-form__textarea {
      padding: 15px 16px;
    }
    
    .contact-form__submit {
      padding: 16px 28px;
      min-height: 52px;
    }
  }

  @media (max-width: 480px) {
    .contact-combined__form-card {
      padding: 28px 24px;
      border-radius: 18px;
    }
    
    .contact-form__input,
    .contact-form__textarea {
      padding: 14px 16px;
      font-size: 15px;
    }
    
    .contact-form__submit {
      padding: 15px 26px;
      font-size: 15px;
      min-height: 50px;
    }
    
    .contact-form__fields {
      gap: 20px;
    }
    
    .contact-form__row {
      gap: 18px;
    }
  }
.contact-form-section {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    padding: 0 0 120px;
    position: relative;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .contact-form__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 80vh;
  }

  .contact-form__wrapper {
    width: 100%;
    max-width: 600px;
  }

  .contact-form__card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
  }

  /* Messages de succès et d'erreur */
  .contact-form__success {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Alexandria', sans-serif;
    font-weight: 500;
  }

  .contact-form__success svg {
    flex-shrink: 0;
  }

  .contact-form__success p {
    margin: 0;
  }

  .contact-form__errors {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-family: 'Alexandria', sans-serif;
  }

  .contact-form__errors h4 {
    margin: 0 0 12px 0;
    font-weight: 600;
    font-size: 16px;
  }

  .contact-form__errors ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .contact-form__errors li {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .contact-form__errors li:last-child {
    margin-bottom: 0;
  }

  /* Champs du formulaire */
  .contact-form__fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .contact-form__label {
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
  }

  .contact-form__input,
  .contact-form__textarea {
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.3s ease;
    resize: vertical;
  }

  .contact-form__input:focus,
  .contact-form__textarea:focus {
    outline: none;
    border-color: #3949ab;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(57, 73, 171, 0.1);
  }

  .contact-form__textarea {
    min-height: 120px;
    font-family: 'Alexandria', sans-serif;
  }

  /* Bouton d'envoi */
  .contact-form__submit {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 18px 32px;
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 8px;
  }

  .contact-form__submit:hover {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  }

  .contact-form__submit svg {
    transition: transform 0.3s ease;
  }

  .contact-form__submit:hover svg {
    transform: translateX(4px);
  }

  /* Mentions légales */
  .contact-form__legal {
    text-align: center;
    margin-top: 24px;
  }

  .contact-form__legal p {
    font-family: 'Alexandria', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
  }

  .contact-form__legal a {
    color: #3949ab;
    text-decoration: underline;
    transition: color 0.3s ease;
  }

  .contact-form__legal a:hover {
    color: #1a237e;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .contact-form__container {
      justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .contact-form-section {
      padding: 0 0 80px;
    }
    
    .contact-form__container {
      padding: 0 20px;
      min-height: auto;
    }
    
    .contact-form__card {
      padding: 32px 24px;
      border-radius: 20px;
    }
    
    .contact-form__row {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    
    .contact-form__fields {
      gap: 20px;
    }
  }

  @media (max-width: 480px) {
    .contact-form__card {
      padding: 24px 20px;
      border-radius: 16px;
    }
    
    .contact-form__input,
    .contact-form__textarea {
      padding: 14px 16px;
      font-size: 15px;
    }
    
    .contact-form__submit {
      padding: 16px 28px;
      font-size: 15px;
    }
  }
.contact-hero {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }

  .contact-hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
  }

  .contact-hero__content {
    max-width: 600px;
  }

  .contact-hero__title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 24px 0;
  }

  .contact-hero__subtitle {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px 0;
  }

  .contact-hero__cta {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .contact-hero__cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .contact-hero {
      padding: 80px 0 60px;
    }
    
    .contact-hero__container {
      padding: 0 20px;
    }
  }
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
.expert-services-split {
    background: #f8f8f8;
    padding: 120px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .expert-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 40px;
    align-items: start;
  }

  /* Expert côté gauche */
  .expert-side {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .expert-card {
    background: #000;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: sticky;
    top: 40px;
  }

  .expert-card:hover {
    transform: translateY(-8px);
  }

  .expert-photo {
    position: relative;
    margin-bottom: 24px;
    display: inline-block;
  }

  .expert-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .expert-card:hover .expert-image {
    border-color: #c8ff00;
    transform: scale(1.05);
  }

  .expert-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
  }

  .expert-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #c8ff00;
    color: #000;
    font-family: 'Alexandria', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .expert-info {
    color: #fff;
  }

  .expert-name {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
  }

  .expert-role {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    color: #c8ff00;
    margin: 0 0 16px 0;
  }

  .expert-description {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px 0;
  }

  .expert-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-link:hover {
    background: #c8ff00;
    color: #000;
    transform: translateY(-2px);
  }

  /* Services côté droit */
  .services-side {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .services-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(28px, 4.5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 48px 0;
    color: #000;
    letter-spacing: -0.02em;
  }

  .services-list {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }

  .service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .service-item:first-child {
    border-top: 1px solid #e0e0e0;
  }

  .service-item:hover {
    background: rgba(0, 0, 0, 0.02);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 -20px;
  }

  .service-item:hover .service-arrow {
    transform: translate(8px, -8px);
  }

  .service-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 40px;
  }

  .service-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: #000;
    flex: 1;
  }

  .service-price {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    color: #666;
    white-space: nowrap;
    margin-right: 40px;
  }

  .service-arrow {
    width: 24px;
    height: 24px;
    color: #000;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .services-cta {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
  }

  .services-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 16px 32px;
    border-radius: 999px;
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .services-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }

  .services-button .button-arrow {
    transition: transform 0.3s ease;
  }

  .services-button:hover .button-arrow {
    transform: translate(4px, -4px);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .expert-services-container {
      gap: 32px;
    }
    
    .expert-card,
    .services-list {
      padding: 32px;
    }
  }

  @media (max-width: 768px) {
    .expert-services-split {
      padding: 80px 0;
    }
    
    .expert-services-container {
      padding: 0 20px;
      flex-direction: column;
      gap: 32px;
    }
    
    .expert-side,
    .services-side {
      flex: 1;
      max-width: 100%;
    }
    
    .services-side {
      order: 1;
    }
    
    .expert-side {
      order: 2;
    }
    
    .expert-card {
      position: static;
      padding: 32px;
    }
    
    .services-list {
      padding: 32px;
    }
    
    .service-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    
    .service-price {
      margin-right: 0;
      align-self: flex-end;
    }
  }

  @media (max-width: 480px) {
    .expert-services-container {
      padding: 0 20px;
      gap: 24px;
    }
    
    .expert-card,
    .services-list {
      padding: 24px;
      border-radius: 16px;
    }
    
    .services-button {
      padding: 14px 24px;
      font-size: 15px;
    }
  }
.faq-section {
    background: var(--faq-background, #fff);
    padding: 120px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
  }

  /* Header */
  .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .faq-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 16px 0;
    color: var(--faq-title-color, #000);
  }

  .faq-subtitle {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--faq-subtitle-color, #666);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* FAQ List */
  .faq-list {
    display: flex;
    flex-direction: column;
  }

  .faq-item {
    border-bottom: 1px solid var(--faq-border-color, #e5e5e5);
  }

  .faq-item:first-child {
    border-top: 1px solid var(--faq-border-color, #e5e5e5);
  }

  /* Question */
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
  }

  .faq-question {
    color: var(--faq-question-color, #000);
  }

  .faq-question:hover {
    opacity: 0.7;
  }

  .faq-question[aria-expanded="true"] {
    color: var(--faq-question-color, #000);
  }

  .faq-question-text {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--faq-question-color, #000);
    flex: 1;
    margin-right: 20px;
  }

  /* Icon */
  .faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--faq-question-color, #000);
    transition: transform 0.3s ease;
  }

  .faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
  }

  .faq-icon-horizontal,
  .faq-icon-vertical {
    transition: opacity 0.3s ease;
  }

  .faq-question[aria-expanded="true"] .faq-icon-horizontal {
    opacity: 0;
  }

  /* Answer */
  .faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .faq-answer[aria-hidden="false"] {
    max-height: 1000px;
    padding-bottom: 24px;
  }

  .faq-answer-content {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--faq-answer-color, #555);
    padding-right: 40px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .faq-section {
      padding: 80px 0;
    }
    
    .faq-container {
      padding: 0 20px;
    }
    
    .faq-header {
      margin-bottom: 40px;
    }
    
    .faq-question {
      padding: 20px 0;
    }
    
    .faq-question-text {
      margin-right: 16px;
    }
    
    .faq-answer-content {
      padding-right: 36px;
    }
    
    .faq-answer[aria-hidden="false"] {
      padding-bottom: 20px;
    }
  }

  @media (max-width: 480px) {
    .faq-question {
      padding: 18px 0;
    }
    
    .faq-question-text {
      margin-right: 12px;
    }
    
    .faq-answer-content {
      padding-right: 32px;
    }
    
    .faq-icon {
      width: 18px;
      height: 18px;
    }
  }
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
.page-template {
    background: #000;
    color: #fff;
    min-height: 80vh;
    padding-top: 0; /* Le main a déjà le bon espacement */
    padding-bottom: 60px;
  }

  /* Styles spécifiques pour les pages légales */
  .page-template--legal {
    padding-top: 20px; /* Espacement supplémentaire léger pour les pages légales */
  }

  .page-header {
    padding: {{ section.settings.header_padding | default: 60 }}px 0 {{ section.settings.content_padding | default: 40 }}px;
    text-align: {{ section.settings.text_alignment | default: 'left' }};
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
  }

  .page-template--legal .page-header {
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }

  .page-header h1 {
    font-size: clamp(2rem, 4vw, {{ section.settings.title_size | default: 48 }}px);
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
  }

  .page-template--legal .page-header h1 {
    font-size: clamp(2rem, 4vw, 42px);
  }

  .breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
  }

  .breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .breadcrumbs a:hover {
    color: #c8ff00;
  }

  .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
  }

  .breadcrumb-current {
    color: #fff;
    font-weight: 500;
  }

  .last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-style: italic;
    margin: 0;
  }

  .page-content {
    padding-bottom: {{ section.settings.bottom_padding | default: 60 }}px;
  }

  .rte {
    max-width: {{ section.settings.content_width | default: 800 }}px;
    {% if section.settings.text_alignment == 'center' %}
      margin: 0 auto;
      text-align: center;
    {% elsif section.settings.text_alignment == 'right' %}
      margin-left: auto;
      text-align: right;
    {% else %}
      margin-right: auto;
      text-align: left;
    {% endif %}
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: {{ section.settings.text_size | default: 16 }}px;
  }

  /* Styles spécifiques pour les pages légales */
  .rte--legal {
    max-width: 900px;
    text-align: left;
    margin: 0;
    line-height: 1.9;
  }

  .rte h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin: 60px 0 30px;
    color: #fff;
    font-weight: 600;
  }

  .rte--legal h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: 50px 0 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(200, 255, 0, 0.3);
  }

  .rte h3 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    margin: 40px 0 20px;
    color: #fff;
    font-weight: 600;
  }

  .rte--legal h3 {
    color: #c8ff00;
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
    margin: 35px 0 18px;
  }

  .rte h4 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin: 30px 0 15px;
    color: #fff;
    font-weight: 600;
  }

  .rte--legal h4 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin: 25px 0 12px;
  }

  .rte p {
    margin-bottom: 24px;
  }

  .rte--legal p {
    margin-bottom: 20px;
    text-align: justify;
  }

  .rte ul, .rte ol {
    margin: 24px 0;
    padding-left: 30px;
  }

  .rte--legal ul, .rte--legal ol {
    margin: 20px 0;
    padding-left: 32px;
  }

  .rte li {
    margin-bottom: 12px;
  }

  .rte--legal li {
    margin-bottom: 10px;
    text-align: justify;
  }

  .rte a {
    color: #c8ff00;
    text-decoration: underline;
    transition: color 0.3s ease;
  }

  .rte a:hover {
    color: #fff;
  }

  .rte blockquote {
    border-left: 4px solid #c8ff00;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
  }

  .rte strong, .rte b {
    color: #fff;
    font-weight: 600;
  }

  .rte em, .rte i {
    color: rgba(255, 255, 255, 0.8);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .page-template {
      padding-top: 0;
      padding-bottom: 40px;
    }

    .page-template--legal {
      padding-top: 10px;
    }

    .page-header {
      padding: 30px 0 20px;
      text-align: left;
    }

    .breadcrumbs {
      justify-content: flex-start;
      flex-wrap: wrap;
    }

    .page-content {
      padding-bottom: 30px;
    }

    .rte, .rte--legal {
      text-align: left;
      margin: 0;
    }

    .rte h2, .rte--legal h2 {
      margin: 30px 0 20px;
    }

    .rte h3, .rte--legal h3 {
      margin: 25px 0 15px;
    }

    .rte ul, .rte ol, .rte--legal ul, .rte--legal ol {
      padding-left: 20px;
    }
  }
.partners-section {
    background: #000;
    padding: 120px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
  }

  .partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
  }

  /* Header */
  .partners-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .partners-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    color: #fff;
  }

  .partners-title--bold {
    font-weight: 700;
  }

  /* Grille des logos */
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 60px 40px;
    align-items: center;
    justify-items: center;
  }

  .partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
  }

  .partner-logo {
    width: auto;
    max-width: 180px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
    object-fit: contain;
  }

  .partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .partners-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 50px 30px;
    }
  }

  @media (max-width: 768px) {
    .partners-section {
      padding: 80px 0;
    }
    
    .partners-container {
      padding: 0 20px;
    }
    
    .partners-header {
      margin-bottom: 60px;
    }
    
    .partners-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px 20px;
    }
    
    .partner-item {
      height: 60px;
    }
    
    .partner-logo {
      max-width: 140px;
    }
  }

  @media (max-width: 480px) {
    .partners-grid {
      gap: 30px 15px;
    }
    
    .partner-item {
      height: 50px;
    }
    
    .partner-logo {
      max-width: 120px;
    }
  }
.projects-section {
    background: #fff;
    padding: 120px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
  }

  .projects-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
  }

  /* Header */
  .projects-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
  }

  .projects-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    color: #000;
  }

  .projects-description {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    margin: 0;
  }

  /* Statistiques */
  .projects-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .stat-number {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 600;
    line-height: 1;
    color: #000;
  }

  .stat-label {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    color: #333;
    text-transform: capitalize;
  }

  /* Grille des projets */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
  }

  .project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
  }

  .project-image {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Overlay */
  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
  }

  .project-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .project-name {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    color: #fff;
    margin: 0;
  }

  /* Badges */
  .shopify-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 8px 16px;
    font-family: 'Alexandria', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    width: fit-content;
  }

  .project-category {
    display: inline-flex;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 8px 16px;
    font-family: 'Alexandria', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    width: fit-content;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .projects-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    
    .projects-stats {
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    .projects-section {
      padding: 80px 0;
    }
    
    .projects-container {
      padding: 0 20px;
    }
    
    .projects-header {
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }
    
    .projects-stats {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }
    
    .projects-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .project-overlay {
      padding: 20px;
    }
  }

  @media (max-width: 480px) {
    .projects-stats {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }
.rich-text-section {
    padding: 80px 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: #ffffff !important;
    min-height: 200px;
  }
  
  .rich-text-section::before,
  .rich-text-section::after {
    content: none !important;
    display: none !important;
  }
  
  .rich-text-section * {
    max-width: 100%;
  }

  .rich-text-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }

  .rich-text-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: inherit;
  }

  .rich-text-content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: inherit;
  }

  .rich-text-content p {
    margin-bottom: 16px;
  }

  .rich-text-content p:last-child {
    margin-bottom: 0;
  }

  .rich-text-button {
    display: inline-block;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .rich-text-button:hover {
    background: #333;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .rich-text-container {
      padding: 0 20px;
    }
    
    .rich-text-title {
      font-size: 24px;
    }
  }
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
.services-section {
    background: #f8f8f8;
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
  }

  .services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
  }

  .service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .service-item:first-child {
    border-top: 1px solid #e0e0e0;
  }

  .service-item:hover {
    background: rgba(0, 0, 0, 0.02);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 -20px;
  }

  .service-item:hover .service-arrow {
    transform: translate(8px, -8px);
  }

  .service-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 40px;
  }

  .service-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: #000;
    flex: 1;
  }

  .service-price {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    color: #666;
    white-space: nowrap;
    margin-right: 40px;
  }

  .service-arrow {
    width: 24px;
    height: 24px;
    color: #000;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  /* Bouton CTA */
  .services-cta {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
  }

  .services-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 16px 32px;
    border-radius: 999px;
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .services-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }

  .services-button .button-arrow {
    transition: transform 0.3s ease;
  }

  .services-button:hover .button-arrow {
    transform: translate(4px, -4px);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .services-section {
      padding: 60px 0;
    }
    
    .services-container {
      padding: 0 20px;
    }
    
    .service-item {
      padding: 24px 0;
    }
    
    .service-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    
    .service-price {
      margin-right: 0;
      align-self: flex-end;
    }
    
    .service-item:hover {
      padding-left: 10px;
      padding-right: 10px;
      margin: 0 -10px;
    }
    
    .services-cta {
      margin-top: 40px;
      padding-top: 30px;
    }
    
    .services-button {
      padding: 14px 24px;
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .service-content {
      gap: 12px;
    }
    
    .service-price {
      font-size: 18px;
    }
  }
.team-section {
    background: #000;
    padding: 120px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
  }

  .team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
  }

  /* Header */
  .team-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .team-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 16px 0;
    color: #fff;
  }

  .team-subtitle {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Grille de l'équipe */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    justify-items: center;
  }

  /* Membre de l'équipe */
  .team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 400px;
    width: 100%;
  }

  .team-member:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
  }

  /* Photo du membre */
  .member-photo {
    position: relative;
    margin-bottom: 24px;
    display: inline-block;
  }

  .member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .team-member:hover .member-image {
    border-color: #c8ff00;
    transform: scale(1.05);
  }

  .member-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
  }

  /* Badge d'expertise */
  .expertise-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #c8ff00;
    color: #000;
    font-family: 'Alexandria', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Informations du membre */
  .member-info {
    color: #fff;
  }

  .member-name {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
  }

  .member-role {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    color: #c8ff00;
    margin: 0 0 16px 0;
  }

  .member-description {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px 0;
  }

  /* Réseaux sociaux */
  .member-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-link:hover {
    background: #c8ff00;
    color: #000;
    transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .team-section {
      padding: 80px 0;
    }
    
    .team-container {
      padding: 0 20px;
    }
    
    .team-header {
      margin-bottom: 60px;
    }
    
    .team-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .team-member {
      padding: 30px;
    }
    
    .member-image,
    .member-placeholder {
      width: 100px;
      height: 100px;
    }
  }

  @media (max-width: 480px) {
    .team-member {
      padding: 24px;
    }
    
    .member-image,
    .member-placeholder {
      width: 80px;
      height: 80px;
    }
    
    .member-socials {
      gap: 12px;
    }
    
    .social-link {
      width: 36px;
      height: 36px;
    }
  }
.testimonials-section {
    background: #000;
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
  }

  .testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* Header */
  .testimonials-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
  }

  .testimonials-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
  }

  .testimonials-subtitle {
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }

  /* Slider */
  .testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
  }

  .testimonials-track {
    display: flex;
    transition: transform 0.6s ease;
    gap: 30px;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
  }

  .testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  /* Brand */
  .testimonial-brand {
    margin-bottom: 30px;
  }

  .company-logo {
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .company-logo:hover {
    opacity: 1;
  }

  /* Testimonial text */
  .testimonial-text {
    flex: 1;
    margin-bottom: 30px;
  }

  .testimonial-text p {
    font-family: 'Alexandria', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
  }

  /* Author */
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
  }

  .author-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
  }

  .author-info {
    flex: 1;
  }

  .author-name {
    font-family: 'Alexandria', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 4px 0;
    color: #fff;
  }

  .author-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
  }

  /* Navigation */
  .testimonials-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-bottom: 40px;
  }

  .nav-btn {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  /* Dots */
  .testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot.active {
    background: #c8ff00;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .testimonial-card {
      flex: 0 0 calc(50% - 15px);
    }
  }

  @media (max-width: 768px) {
    .testimonials-container {
      padding: 0 20px;
    }
    
    .testimonials-header {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 60px;
    }
    
    .testimonial-card {
      flex: 0 0 calc(100% - 20px);
      padding: 30px;
      min-height: 350px;
    }
    
    .testimonials-track {
      gap: 20px;
    }
  }
.text-cut-section {
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .text-cut-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .text-cut-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 24px 0;
  }

  .text-cut-display {
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    line-height: 1.6;
  }

  .text-cut-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-left: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    opacity: 0.7;
  }

  .text-cut-toggle:hover {
    opacity: 1;
  }

  .text-cut-toggle em {
    font-style: italic;
    text-decoration: underline;
  }

  .text-cut-toggle-less {
    background: none;
    border: none;
    padding: 0;
    margin: 16px 0 0 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    opacity: 0.7;
    display: block;
  }

  .text-cut-toggle-less:hover {
    opacity: 1;
  }

  .text-cut-toggle-less em {
    font-style: italic;
    text-decoration: underline;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .text-cut-section {
      padding: 60px 0;
    }
    
    .text-cut-container {
      padding: 0 20px;
    }

    .text-cut-title {
      font-size: 28px;
    }
  }
.why-section {
    background: #fff;
    padding: 120px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
  }

  .why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
  }

  /* Header */
  .why-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .why-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 24px 0;
    color: #000;
  }

  .highlighted-name {
    color: #00d4aa;
  }

  .why-subtitle {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
  }

  .subtitle-highlight {
    color: #00d4aa;
    font-weight: 600;
  }

  /* Contenu principal */
  .why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  /* Headers des colonnes */
  .column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .column-icon {
    font-size: 24px;
  }

  .column-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 500;
    margin: 0;
    color: #000;
  }

  .column-subtitle {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
  }

  .column-description {
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
  }

  /* Colonne problèmes */
  .problems-column {
    background: #fff;
  }

  .items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #e3e3e3;
  }

  .item-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .item-text {
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
  }

  /* Colonne solutions */
  .solutions-column {
    background: rgba(0, 212, 170, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 170, 0.1);
  }

  .solutions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .solution-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .solution-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
  }

  .solution-content {
    flex: 1;
  }

  .solution-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: #000;
  }

  .solution-description {
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #666;
    margin: 0;
  }

  /* CTA Button */
  .why-cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #00d4aa;
    color: #fff;
    text-decoration: none;
    padding: 18px 28px;
    border-radius: 16px;
    font-family: 'Alexandria', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
  }

  .why-cta-button:hover {
    background: #00b893;
    transform: translateY(-2px);
  }

  .cta-main-text {
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
  }

  .cta-sub-text {
    font-family: 'Alexandria', sans-serif;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .why-content {
      gap: 60px;
    }
    
    .solutions-column {
      padding: 30px;
    }
  }

  @media (max-width: 768px) {
    .why-section {
      padding: 80px 0;
    }
    
    .why-container {
      padding: 0 20px;
    }
    
    .why-header {
      margin-bottom: 60px;
    }
    
    .why-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .solutions-column {
      padding: 24px;
    }
    
    .solution-item {
      gap: 12px;
    }
  }

  @media (max-width: 480px) {
    .column-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    
    .list-item {
      padding: 12px;
    }
    
    .solutions-list {
      gap: 20px;
    }
  }

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }