/* ==========================================
   1. STYLES GÉNÉRAUX & STRUCTURE
   ========================================== */
   body {
    margin: 0;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0f172a;
    box-sizing: border-box;
  }
  
  /* Image d'arrière-plan fixe */
  .red-heeler {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.75);
  }
  
  /* Le Conteneur Principal (Identique à vos autres pages) */
  .rectangle {
    width: 100%;
    max-width: 950px;
    min-height: 250px;
    padding: 45px;
    box-sizing: border-box;
    
    /* Effet Glassmorphism */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    /* Bordures et Ombres */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
  }
  
  /* ==========================================
     2. TYPOGRAPHIES (Identiques à votre base)
     ========================================== */
  .text-decale {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 15px 0;
    line-height: 1.2;
  }
  
  .text-decale-left-up {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin: 0;
  }
  
  .text-decale-left-down {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
  }
  
  /* ==========================================
     3. GRILLE ET BLOCS D'AVIS CLIENTS
     ========================================== */
  .reviews-grid {
    display: flex;
    flex-direction: column; /* Aligne les avis de haut en bas */
    gap: 20px;
  }
  
  /* Style de chaque carte d'avis */
  .review-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
  }
  
  /* Effet lumineux/surélévation discret au survol */
  .review-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(88, 101, 242, 0.4);
    transform: translateY(-2px);
  }
  
  /* En-tête à l'intérieur d'un avis */
  .review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .client-avatar {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
  }
  
  .client-meta {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pousse les étoiles tout à droite */
  }
  
  .client-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.05rem;
  }
  
  .client-project {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
  }
  
  .review-stars {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
  
  /* Texte de l'avis client */
  .review-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    font-style: italic;
    margin: 0;
  }
  
  /* ==========================================
     4. LIENS & PIED DE PAGE
     ========================================== */
  .reviews-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
  }
  
  .link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
  }
  
  .link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #5865F2;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .link:hover {
    color: #5865F2;
  }
  
  .back-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
  }
  