    :root {
      /* Backgrounds */
      --bg: #0b0b0d;        
      --bg2: #070708;          

      /* Text */
      --text: #f2f2f4;        
      --muted: #c7c7cc;      
      --muted2: #9a9aa1;    

      /* Accents */
      --accent: #2f2f33;      
      --accent2: #df437c;    

      /* Cards & borders */
      --card: rgba(255, 255, 255, 0.05);
      --stroke: rgba(255, 255, 255, 0.10);

      /* Effects */
      --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
      --glow: rgba(223, 67, 124, 0.3);

      /* Layout */
      --radius: 18px;
      --radius2: 22px;
      --container: 1120px;
    }

    /* --- RESET & BASE --- */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif !important;
}
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    img, video {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Effet d'ambiance lumineuse au fond */
    .bg-ambient {
      position: fixed;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 100vw;
      height: 60vh;
      background: radial-gradient(circle at 50% 50%, rgba(223, 67, 124, 0.08) 0%, transparent 60%);
      z-index: -1;
      pointer-events: none;
    }

    /* --- PORTFOLIO SECTION --- */
    .examples {
      padding: 8rem 0;
      position: relative;
      margin-top: 65px;
    }

    .examples__title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      text-align: center;
      margin-bottom: 4rem;
      background: linear-gradient(135deg, #fff 0%, var(--muted) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.2;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .examples__grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 2.5rem;
    }

    /* Cards */
    .ex-card {
      background: var(--card);
      border: 1px solid var(--stroke);
      border-radius: var(--radius2);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
    }

    .ex-card:hover {
      transform: translateY(-10px);
      border-color: rgba(223, 67, 124, 0.4);
      box-shadow: var(--shadow), 0 10px 30px rgba(223, 67, 124, 0.1);
      background: rgba(255, 255, 255, 0.08);
    }

    /* Media (Images / Video) */
    .ex-card__media {
      width: 100%;
      height: 240px;
      border-radius: calc(var(--radius2) - 8px);
      overflow: hidden;
      margin-bottom: 1.5rem;
      position: relative;
      background: var(--bg2);
      border: 1px solid var(--stroke);
    }

    .ex-card__media img,
    .ex-card__media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .ex-card:hover .ex-card__media img {
      transform: scale(1.05);
    }

    .ex-card__media::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11, 11, 13, 0.5), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .ex-card:hover .ex-card__media::after {
      opacity: 1;
    }

    /* Content */
    .ex-card__title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .ex-card__desc {
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 2rem;
      flex-grow: 1; /* Pousse le bouton vers le bas */
    }

    /* Card Buttons */
    .ex-card__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 0.8rem 1.5rem;
      background: transparent;
      color: #fff;
      border: 1px solid var(--stroke);
      border-radius: var(--radius);
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .ex-card__btn:hover {
      background: var(--accent2);
      border-color: var(--accent2);
      color: #fff;
      box-shadow: 0 0 20px rgba(223, 67, 124, 0.4);
    }

    /* --- CTA SECTION --- */
    .cta_container {
      padding: 4rem 24px 8rem;
    }

    .cta__box {
      background: linear-gradient(145deg, var(--card) 0%, rgba(223, 67, 124, 0.05) 100%);
      border: 1px solid var(--stroke);
      border-radius: calc(var(--radius2) * 1.5);
      padding: 4rem 2rem;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      position: relative;
      overflow: hidden;
    }

    /* Glowing borders for CTA */
    .cta__box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent2), transparent);
      opacity: 0.5;
    }

    .cta__title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 1rem;
    }

    .cta__text {
      font-size: 1.15rem;
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto 2.5rem;
    }

    .cta__actions {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Primary Global Button */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2rem;
      border-radius: var(--radius);
      font-size: 1rem;
      font-weight: 700;
      transition: all 0.3s ease;
      cursor: pointer;
      text-align: center;
      border: 1px solid transparent;
    }

    .btn--primary {
      background: var(--accent2);
      color: #fff;
      box-shadow: 0 4px 15px rgba(223, 67, 124, 0.2);
    }

    .btn--primary:hover {
      background: transparent;
      border-color: var(--accent2);
      box-shadow: 0 0 25px rgba(223, 67, 124, 0.4);
      transform: translateY(-3px);
    }

    /* Animations JS classes */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Délais en cascade pour les cartes */
    .ex-card:nth-child(1) { transition-delay: 0.1s; }
    .ex-card:nth-child(2) { transition-delay: 0.2s; }
    .ex-card:nth-child(3) { transition-delay: 0.3s; }
    .ex-card:nth-child(4) { transition-delay: 0.4s; }
    .ex-card:nth-child(5) { transition-delay: 0.5s; }
    .ex-card:nth-child(6) { transition-delay: 0.6s; }
    .ex-card:nth-child(7) { transition-delay: 0.7s; }

    /* --- RESPONSIVE 320px --- */
    @media (max-width: 768px) {
      .examples { padding: 4rem 0; }
      .examples__grid {
        grid-template-columns: 1fr;
      }
      .cta__box {
        padding: 3rem 1.5rem;
      }
      .cta__actions {
        flex-direction: column;
        gap: 1rem;
      }
      .cta__actions .btn {
        width: 100%;
      }
    }

    @media (max-width: 380px) {
      .ex-card__media {
        height: 200px; /* Plus petit sur très petits écrans */
      }
      .ex-card__title {
        font-size: 1.3rem;
      }
    }
    body{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif !important;
}