


/* ══════════════════════════════════════
   VARIABLES GLOBALES
   ══════════════════════════════════════ */
:root {
  --yellow:       #f5e723;
  --teal:         #5ebcb8;
  --teal-mid:     #5ebcb8;
  --bg:           #0a3d51;
  --surface:      rgba(255,255,255,0.04);
  --border:       rgba(255,255,255,0.1);
  --text-mid:     rgba(255,255,255,0.65);
  --text-dim:     rgba(255,255,255,0.4);
  --font-display: 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CURSEUR CUSTOM ── */
body { cursor: none; }

#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: #f5e723;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid #f5e723;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

body.hovering #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: #5ebcb8;
  opacity: 1;
}

    body {
      font-family: 'Inter', sans-serif;
      background: #0a3d51;
      color: #fff;
      overflow-x: hidden;
    }


  /* ── NAVIGATION ── */
    #navbar {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      z-index: 1000;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: transparent;
      transition: background 0.4s ease, box-shadow 0.4s ease;
        box-shadow: 0 1px 0 rgba(255,255,255,0.08);
          opacity: 0;
  transform: translateY(-10px);
    }
 
    #navbar.scrolled {
      background: #0a3d51;
      box-shadow: 0 1px 0 rgba(255,255,255,0.08);
    }

#content-nav{
    width: 80%;
    margin: auto;
    display: flex;
      align-items: center;
      justify-content: space-between;
    
}
 
    /* Logo — remplace ce bloc par ton SVG */
    #nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }
 
    /* Placeholder logo : cercle jaune + texte */
    /* ↓ REMPLACE tout ce bloc #nav-logo par ton SVG */

#nav-logo svg {
  width: 120px;   /* ← ajuste selon ton SVG */
  height: auto;
}

 
    /* Liens nav */
    #nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }
 
    #nav-links a {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      letter-spacing: 0.01em;
      position: relative;
      transition: color 0.25s ease;
        text-transform: uppercase;
    }
 
    /* Soulignement slide au hover */
    #nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: #f5e723;
      transition: width 0.3s cubic-bezier(0.77, 0, 0.18, 1);
    }
 
    #nav-links a:hover { color: #fff; }
    #nav-links a:hover::after { width: 100%; }
 
    /* CTA bouton nav */
    #nav-cta {
      background: #f5e723;
      color: #0d4a4e;
      font-family: 'Inter', sans-serif;
        text-decoration: none;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.08em;
      padding: 14px 28px;
      border-radius: 100px;
        text-transform: uppercase;
      border: none;
      cursor: none;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      transition: color 0.35s ease;
    }
 
    #nav-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 100px;
      background: #5ebcb8;
      transform: translateX(-101%);
      transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
      z-index: 0;
    }
 
    #nav-cta span {
      position: relative;
      z-index: 1;
    }
 
    #nav-cta:hover::before { transform: translateX(0); }
    #nav-cta:hover { color: #fff; }



 /* ── LANG TOGGLE ── */
    #lang-toggle {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.4);
      color: #fff;
      font-family: inherit;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 6px 12px;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      margin-left: 12px;
    }
    #lang-toggle:hover {
      background: rgba(255,255,255,0.1);
      border-color: #fff;
    }
    #navbar.scrolled #lang-toggle {
      border-color: rgba(255,255,255,0.4);
      color: #fff;
    }
    #navbar.scrolled #lang-toggle:hover {
      background: rgba(0,0,0,0.08);
    }





    /* ── HERO ── */
    #hero {
      position: relative;
      width: 100vw;
      height: calc(100vh - 100px);
      background: #0a3d51;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
      max-width: 860px;
      opacity: 0;
    }

    .hero-content h1 {
      font-size: clamp(32px, 5vw, 64px);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 20px;
    }

.hero-content h1 .surline{
    color: #f5e723;
}

.subtitle{
    color: #5ebcb8;
    font-size: clamp(14px, 1.5vw, 17px);
    margin: 0 auto 15px;
    position: relative;
    display: inline-block;
}

.subtitle:after {
    content: "";
    width: 20px;
    height: 1px;
    background-color:#5ebcb8;
    position: absolute;
    top: 10px;
    left: -40px;
}
.subtitle:before {
    content: "";
    width: 20px;
    height: 1px;
    background-color:#5ebcb8;
    position: absolute;
    top: 10px;
    right: -40px;
}

    .hero-content p {
      font-size: clamp(14px, 1.5vw, 17px);
      color: rgba(255,255,255,0.72);
      max-width: 540px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

  /* ── BOUTONS — effet slide gauche → droite ── */
    .btn-yellow,
    .btn-outline {
      position: relative;
      overflow: hidden;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.08em;
      padding: 14px 28px;
      border-radius: 100px;
      cursor: none;
      z-index: 2;
      transition: color 0.35s ease;
        text-decoration: none;
    }
 
    /* Pseudo-élément = le fond qui glisse */
    .btn-yellow::before,
    .btn-outline::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 100px;
      transform: translateX(-101%);
      transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
      z-index: -1;
    }
 
    .btn-yellow {
      background: #f5e723;
      color: #0d4a4e;
      border: 2px solid #f5e723;
      width: fit-content;
        text-decoration: none;
    }
    /* Slide vers teal */
    .btn-yellow::before { background: #5ebcb8;;
}
    .btn-yellow:hover::before { transform: translateX(0); }
    .btn-yellow:hover { color: #fff; border: 2px solid #5ebcb8;}
 
    .btn-outline {
      background: transparent;
      color: #5ebcb8;
      border: 2px solid #5ebcb8;
    }
    /* Slide vers jaune */
    .btn-outline::before { background: #5ebcb8; }
    .btn-outline:hover::before { transform: translateX(0); }
    .btn-outline:hover { color: #ffffff; border-color: #5ebcb8; }
    /* ── IRIS OVERLAY ── */
    #iris-overlay {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      z-index: 9999;
      pointer-events: none;
    }





/* ── MARQUEE SCROLL ── */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 28px 0;
  background: transparent;
    opacity: 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  will-change: transform;
}

.marquee-track span {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.15);
  white-space: nowrap;
  
  transition: color 0.3s ease;
}

.marquee-track .dot {
  font-size: 14px;
  color: #f5e723;
  opacity: 1;
}





/* ═══════════════════════════════════════════════
AVANTAGE ------------*/

 
#agent-intro {
  height: 700vh; /* 6 cartes + intro = 700vh */
  position: relative;
}

 
#agent-intro-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* grille en fond */
  background-color: #0a3d51;
  background-image:
    linear-gradient(rgba(94,188,184,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,188,184,0.07) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* halo teal en haut à droite */
#agent-intro-inner::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(94,188,184,0.09) 0%, transparent 70%);
  pointer-events: none;
}

/* halo jaune en bas à gauche */
#agent-intro-inner::before {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,231,35,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════
   COLONNE GAUCHE — fixe dans le sticky
   ══════════════════════════════════════ */
.agent-left {
  position: relative;
  z-index: 2;
  width: 40%;
  flex-shrink: 0;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agent-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #f5e723;
  text-transform: uppercase;
}

.agent-title {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.agent-title em {
  font-style: normal;
  color: #5ebcb8;
  display: block;
}

.agent-desc {
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 450px;
}

.agent-desc strong { color: #fff; font-weight: 700; }

/* Pill ×10 */
.agent-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(245,231,35,0.25);
  background: rgba(245,231,35,0.05);
  border-radius: 100px;
  padding: 12px 24px;
  align-self: flex-start;
}

.pill-val {
  font-size: 22px;
  font-weight: 800;
  color: #f5e723;
  line-height: 1;
}

.pill-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* Barre de progression */
.agent-progress {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #5ebcb8;
  border-radius: 2px;
  transition: width 0.1s linear;
}

.progress-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-top: -8px;
}

/* ══════════════════════════════════════
   ZONE CARTES — 50% droite
   ══════════════════════════════════════ */
.agent-cards {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 80vh;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   CARTE BASE
   ══════════════════════════════════════ */
.a-card {
  position: absolute;
  top: 20%;
  left: 0;
  width: 82%;
  height: 400px;
  background: #0e4d64;
  border: 1px solid rgba(94,188,184,0.15);
  border-radius: 20px;
  overflow: hidden;
  will-change: transform;
  box-shadow: 0 4px 40px rgba(0,0,0,0.25);
}

/* Z-index : dernière carte au-dessus */
.a-card--1 { z-index: 1; }
.a-card--2 { z-index: 2; }
.a-card--3 { z-index: 3; }
.a-card--4 { z-index: 4; }
.a-card--5 { z-index: 5; }
.a-card--6 { z-index: 6; background: #0e4d64; border-color: rgba(245,231,35,0.2); }

/* grille intérieure sur chaque carte */
.a-card-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94,188,184,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,188,184,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.a-card--6 .a-card-grid {
  background-image:
    linear-gradient(rgba(245,231,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,231,35,0.04) 1px, transparent 1px);
}

/* Barre couleur en haut de chaque carte */
.a-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 20px 20px 0 0;
}
.a-card--1::before { background: linear-gradient(90deg, #5ebcb8, transparent); }
.a-card--2::before { background: linear-gradient(90deg, #4aa3c4, transparent); }
.a-card--3::before { background: linear-gradient(90deg, #6b7fd4, transparent); }
.a-card--4::before { background: linear-gradient(90deg, #9b7fd4, transparent); }
.a-card--5::before { background: linear-gradient(90deg, #d46fa0, transparent); }
.a-card--6::before { background: linear-gradient(90deg, #f5e723, transparent); }

/* Contenu intérieur */
.a-card-inner {
  position: relative;
  z-index: 1;
  padding: 36px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Ligne haute : numéro + icône */
.a-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.a-card-num {
  font-size: 52px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}

.a-card-ico {
  width: 44px;
  height: 44px;
  background: rgba(94,188,184,0.12);
  border: 1px solid rgba(94,188,184,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-card-ico svg {
  width: 22px;
  height: 22px;
  color: #5ebcb8;
}

.a-card-ico--yellow {
  background: rgba(245,231,35,0.1);
  border-color: rgba(245,231,35,0.25);
}
.a-card-ico--yellow svg { color: #f5e723; }

/* Titre */
.a-card-title {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.a-card-title--yellow { color: #f5e723; }

/* Corps */
.a-card-body {
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  flex: 1;
}

/* Métrique */
.a-card-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(94,188,184,0.12);
  margin-top: auto;
}
.a-card--6 .a-card-metric { border-top-color: rgba(245,231,35,0.12); }

.metric-val {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  color: #5ebcb8;
  line-height: 1;
}
.metric-val--yellow { color: #f5e723; }

.metric-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  line-height: 1.4;
}

/* Tags */
.a-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.a-card-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 4px 12px;
}

.a-card-tags--yellow span {
  color: rgba(245,231,35,0.7);
  border-color: rgba(245,231,35,0.2);
}



/* ══════════════════════════════════════
   AGENTS IA
   ══════════════════════════════════════ */
    #agents {
      background: #071f2b;
      padding: 120px 200px;
      position: relative;
      overflow: hidden;
    }

    #agents::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(94,188,184,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .agents-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .agents-sub {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: #5ebcb8;
      margin-bottom: 16px;
    }

    .agents-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 16px;
    }

    .agents-title span {
      color: #f5e723;
    }

    .agents-desc {
      font-size: 1rem;
      color: rgba(255,255,255,0.55);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .agents-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 56px;
    }

    .agent-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: border-color 0.3s, background 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }

    .agent-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(94,188,184,0.04) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .agent-card:hover {
      border-color: rgba(94,188,184,0.35);
      background: rgba(94,188,184,0.05);
      transform: translateY(-4px);
    }

    .agent-card:hover::after { opacity: 1; }

    .agent-card--featured {
      border-color: rgba(245,231,35,0.3);
      background: rgba(245,231,35,0.04);
    }

    .agent-card--featured::after {
      background: linear-gradient(135deg, rgba(245,231,35,0.06) 0%, transparent 60%);
    }

    .agent-card--featured:hover {
      border-color: rgba(245,231,35,0.6);
      background: rgba(245,231,35,0.07);
    }

    .agent-icon {
      font-size: 2rem;
      line-height: 1;
    }

    .agent-category {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: #5ebcb8;
    }

    .agent-card--featured .agent-category {
      color: #f5e723;
    }

    .agent-name {
      font-size: 1.1rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.02em;
    }

    .agent-body {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
      flex: 1;
    }

    .agent-kpis {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .agent-kpis li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(255,255,255,0.75);
    }

    .kpi-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #f5e723;
      flex-shrink: 0;
    }

    .agent-card--featured .kpi-dot { background: #f5e723; }

    .agent-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.4);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      padding: 4px 12px;
      align-self: flex-start;
    }

    .agent-card--featured .agent-tag {
      color: #f5e723;
      border-color: rgba(245,231,35,0.3);
    }

    .agents-cta-wrap {
      display: flex;
      justify-content: center;
    }





/* ══════════════════════════════════════
   SECTION PROCESS — timeline verticale
══════════════════════════════════════ */
#process {
  background: #0a3d51;
  padding: 120px 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── GAUCHE ── */
.process-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5ebcb8;
  margin-bottom: 24px;
}

.process-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.process-title span {
  color: #f5e723;
}

.process-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  max-width: 420px;
}

    .process-cta-wrap {
      display: flex;
      justify-content: flex-start;
    }


/* ── DROITE — timeline ── */
.process-right {
  position: sticky;
  top: 100px;
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Ligne verticale */
.timeline-line {
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  z-index: 0;
}

.timeline-line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, #5ebcb8, #f5e723);
  border-radius: 2px;
  transition: height 0.6s ease;
}

/* ── ÉTAPE ── */
.timeline-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dot */
.timeline-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(94,188,184,0.25);
  background: #0a3d51;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.timeline-dot-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(94,188,184,0.3);
  transition: background 0.4s, transform 0.4s;
}

.timeline-step.is-visible .timeline-dot {
  border-color: #5ebcb8;
  box-shadow: 0 0 0 6px rgba(94,188,184,0.08);
}

.timeline-step.is-visible .timeline-dot-inner {
  background: #5ebcb8;
  transform: scale(1.2);
}

.timeline-step[data-step="3"].is-visible .timeline-dot {
  border-color: #f5e723;
  box-shadow: 0 0 0 6px rgba(245,231,35,0.08);
}

.timeline-step[data-step="3"].is-visible .timeline-dot-inner {
  background: #f5e723;
}

/* Contenu */
.timeline-content {
  flex: 1;
  padding-top: 6px;
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.timeline-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
}

.timeline-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5ebcb8;
  background: rgba(94,188,184,0.1);
  border: 1px solid rgba(94,188,184,0.2);
  border-radius: 4px;
  padding: 3px 9px;
}

.timeline-badge--yellow {
  color: #f5e723;
  background: rgba(245,231,35,0.08);
  border-color: rgba(245,231,35,0.2);
}

.timeline-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}

.timeline-title--yellow { color: #f5e723; }

.timeline-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.timeline-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.timeline-tags--yellow span {
  color: rgba(245,231,35,0.6);
  border-color: rgba(245,231,35,0.15);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #process { padding: 80px 24px; }

  .process-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .process-right { position: static; }
  .process-desc  { max-width: 100%; }
}



/* ============================================
   SECTION DOT GRID 
   ============================================ */
 
#horizons {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #0a3d51;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
 
#horizons #dotCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none; /* le canvas capte les events via JS sur la section */
}
 
.horizons-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 40px;
  max-width: 860px;

}
 
.horizons-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #5ebcb8;
  text-transform: uppercase;
  margin-bottom: 20px;
}
 
.horizons-title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 56px;
}
 
.horizons-title span { color: #5ebcb8; }

.horizons-content p{
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

 
.horizons-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
    margin-top: 30px;
}
 
.horizons-card {
  background: #0a3d51;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: left;
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: auto;
  transition: border-color 0.3s ease;
    text-align: center;
}
 
.horizons-card:hover {
  border-color: rgba(94,188,184,0.4);
}
 
.model-active {
  background: rgba(94,188,184,0.1);
  border-color: #5ebcb8;
    
}
 
.horizons-badge {
  font-size: 30px;
  font-weight: 800;
  color: #f5e723;
}
 
.horizons-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

    .horizons-cta-wrap {
      display: flex;
      justify-content: center;
        margin-top: 30px;
    }




/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
 
#contact {
  background: #0a3d51;
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 100px 80px;
    border: 1px solid rgba(255,255,255,0.15);
}
 
/* ── COLONNE GAUCHE ── */
.contact-left {
 
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 50%;
}
 
.contact-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #5ebcb8;
  text-transform: uppercase;
}
 
.contact-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
}
 
.contact-title span { color: #f5e723; }
 
.contact-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
 
/* Checkpoints */
.contact-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  opacity: 0;
  transform: translateX(-30px);
}
 
.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #5ebcb8;
  color: #0a3d51;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
 
/* Slots */
.contact-slots {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 20px 24px;
}
 
.slots-number {
  font-size: 52px;
  font-weight: 800;
  color: #f5e723;
  line-height: 1;
}
 
.contact-slots strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f5e723;
  display: block;
  margin-bottom: 4px;
}
 
.contact-slots p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
 
/* ── COLONNE DROITE — FORMULAIRE ── */
.contact-right {
  display: flex;
    align-items: center;
  max-width: 50%;
}
 
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
    margin: auto;
  gap: 20px;
}
 
.form-title {
  font-size: 18px;
  font-weight: 800;
  color: #0a3d51;
  letter-spacing: 0.02em;
}
 
.form-sub {
  font-size: 13px;
  color: rgba(10,61,81,0.5);
  margin-top: -12px;
}
 
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
 
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
 
.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0a3d51;
}
 
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #0a3d51;
  background: #fff;
  border: 1px solid rgba(10,61,81,0.2);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s ease;
  width: 100%;
  cursor: auto;
  appearance: none;
  -webkit-appearance: none;
}
 
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a3d51' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
 
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(10,61,81,0.35);
}
 
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #5ebcb8;
}
 
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
 
.form-submit {
  background: #f5e723;
  color: #0a3d51;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 16px;
  border-radius: 100px;
  border: none;
  cursor: none;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
  margin-top: 4px;
}
 
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: #5ebcb8;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 0;
}
 
.form-submit span { position: relative; z-index: 1; }
.form-submit:hover::before { transform: translateX(0); }
.form-submit:hover { color: #fff; }
 
.form-note {
  font-size: 12px;
  color: rgba(10,61,81,0.4);
  text-align: center;
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#site-footer {
  position: relative;
  background: #061f2a;
  overflow: hidden;
  border-top: 1px solid rgba(94, 188, 184, 0.15);
}

#footerCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

/* ── TOP ── */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px 64px;
}

/* ── COL GÉNÉRIQUE ── */
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5ebcb8;
  margin-bottom: 24px;
}

/* ── COL BRAND ── */
.footer-logo svg { display: block; }

.footer-tagline {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

.footer-tagline strong { color: #fff; font-weight: 700; }

/* Newsletter */
.footer-newsletter { margin-top: 28px; }

.footer-nl-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.footer-nl-row {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.footer-nl-row:focus-within {
  border-color: #5ebcb8;
}

.footer-nl-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  padding: 11px 14px;
  cursor: auto;
}

.footer-nl-row input::placeholder { color: rgba(255,255,255,0.3); }

.footer-nl-row button {
  background: #5ebcb8;
  border: none;
  padding: 11px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #061f2a;
  transition: background 0.2s;
}

.footer-nl-row button:hover { background: #f5e723; }

.footer-nl-row button svg { width: 16px; height: 16px; }

.footer-powered {
  margin-top: 28px;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.05em;
}

.footer-powered strong {
  color: rgba(255,255,255,0.45);
  font-weight: 700;
}

/* ── LIENS NAV ── */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: #f5e723;
  padding-left: 4px;
}

/* ── LIENS CONTACT ── */
.footer-links--contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.footer-links--contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #5ebcb8;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-location svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #5ebcb8;
}

/* ── LANGUE ── */
.footer-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.footer-lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: rgba(255,255,255,0.45);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-lang-btn:hover,
.footer-lang-btn--active {
  border-color: #5ebcb8;
  color: #fff;
  background: rgba(94,188,184,0.1);
}

.footer-lang-sep { color: rgba(255,255,255,0.2); font-size: 12px; }

/* ── RÉSEAUX SOCIAUX ── */
.footer-socials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social-link:hover { color: #f5e723; }

.footer-social-link:hover .footer-social-icon {
  background: rgba(245,231,35,0.1);
  border-color: rgba(245,231,35,0.3);
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
}

/* ── Badge EU ── */
.footer-eu-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(245,231,35,0.2);
  border-radius: 8px;
  background: rgba(245,231,35,0.04);
}

.footer-eu-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-eu-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}

.footer-bottom-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-nav a {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-bottom-nav a:hover { color: #5ebcb8; }




/* ══════════════════════════════════════
   PAGE PROCESSUS
══════════════════════════════════════ */










 

/* ══════════════════════════════════════
   BENEFITS GRID
   ══════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

/* Carte large sur la ligne 2 */
.benefit-card--wide {
  grid-column: span 2;
}

/* ── CARD BASE ── */
.benefit-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
  animation: cardReveal 0.6s ease both;
  animation-delay: var(--delay, 0s);
}

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(94,188,184,0.05) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.benefit-card:hover {
  border-color: rgba(94,188,184,0.35);
  background: rgba(94,188,184,0.04);
  transform: translateY(-5px);
}
.benefit-card:hover::before { opacity: 1; }

/* ACCENT variant (card 02) */
.benefit-card--accent {
  border-color: rgba(94,188,184,0.2);
}

/* HIGHLIGHT variant (card 06) */
.benefit-card--highlight {
  background: rgba(245,231,35,0.04);
  border-color: rgba(245,231,35,0.2);
}
.benefit-card--highlight::before {
  background: linear-gradient(135deg, rgba(245,231,35,0.07) 0%, transparent 55%);
}
.benefit-card--highlight:hover {
  border-color: rgba(245,231,35,0.5);
  background: rgba(245,231,35,0.07);
}
.benefit-card--highlight .card-icon { color: var(--yellow); }
.benefit-card--highlight .card-num  { color: rgba(245,231,35,0.25); }
.benefit-card--highlight .metric-val { color: var(--yellow); }
.benefit-card--highlight .kpi-dot   { background: var(--yellow); }

/* ── CARD NUMBER ── */
.card-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(94,188,184,0.3);
  line-height: 1;
}

/* ── ICON ── */
.card-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon {
  width: 40px;
  height: 40px;
  color: var(--teal-mid);
  transition: transform 0.3s ease, color 0.3s ease;
}

.benefit-card:hover .card-icon {
  transform: scale(1.1);
  color: #5ecfcb;
}

/* ── TITLE ── */
.card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* ── BODY ── */
.card-body {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-dim);
  flex: 1;
}

/* ── METRIC ── */
.card-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.metric-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-mid);
  line-height: 1;
}

.metric-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  line-height: 1.3;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   CTA
   ══════════════════════════════════════ */
.intro-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}

.intro-cta {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  background: var(--yellow);
  border: none;
  border-radius: 6px;
  padding: 18px 44px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.intro-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,231,35,0.3);
}

.intro-cta-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}


/* ── SECTION SERVICES ── */
#services {
  height: 400vh;
  position: relative;
}

#services-inner {
  position: sticky;
  top: 72px;
  height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a3d51;
}

/* Block gauche 50% */
.services-left {
  width: 50%;
  flex-shrink: 0;
  padding: 0 80px;
}

.services-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #f5e723;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.services-title {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.services-title span { color: #5ebcb8; }

.services-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* Zone cards — 50% droite */
.services-cards {
  position: relative;
  width: 50%;
  height: 80vh;
  flex-shrink: 0;
}

/* Chaque card empilée */
.s-card {
  position: absolute;
  top: 0;
    height: 100%;
  left: 0;
  transform: translateY(0%) translateX(110%); /* départ hors écran à droite */
  width: 80%;  /* ~40% de la page = 80% de la zone droite */
  background: #114e65;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
    box-shadow: 0px 1px 20px 2px rgba(0,0,0,0.1);
}

/* Z-index : card 3 au-dessus de 2, 2 au-dessus de 1 */
.s-card:nth-child(1) { z-index: 1; }
.s-card:nth-child(2) { z-index: 2; }
.s-card:nth-child(3) { z-index: 3; }

.s-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.s-card-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}

.s-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(94,188,184,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}


.s-card-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #5ebcb8;
  text-transform: uppercase;
}

.s-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
}

.s-card-body {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.s-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.s-card-list li {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.s-card-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #f5e723;
  font-size: 6px;
  top: 5px;
}

.s-card-list strong { color: #fff; font-weight: 700; }

.s-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.s-card-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ── SECTION MELDS ── */
#melds,
#team{
  background: #0a3d51;
  padding: 100px 80px;
  text-align: center;
}

#team {
  background: #0a3d51;
  padding: 100px 80px 160px 80px;
  text-align: center;
  position: relative;  /* ← ajouter */
  z-index: 10;         /* ← ajouter, passe au-dessus du sticky */
}

.melds-sub,
#team .subtitle{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #5ebcb8;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.melds-title,
.team-title {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.melds-cta {
  display: inline-block;
  background: #f5e723;
  color: #0a3d51;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
}

.melds-cta::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: #5ebcb8;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 0;
}

.melds-cta span { position: relative; z-index: 1; }
.melds-cta:hover::before { transform: translateX(0); }
.melds-cta:hover { color: #fff; }

/* Cards */
.melds-cards,
.team-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.melds-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 24px;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;                    /* départ invisible pour l'animation */
  transform: translateY(30px);   /* départ décalé vers le bas */
}

.team-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 24px;
  flex: 1;
  min-width: 160px;
  max-width: 300px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;                    /* départ invisible pour l'animation */
  transform: translateY(30px);   /* départ décalé vers le bas */
}

.melds-letter {
  font-size: 42px;
  font-weight: 800;
  color: #5ebcb8;
  line-height: 1;
}

.team-letter {
  font-size: 18px;
  font-weight: 800;
  color: #5ebcb8;
  line-height: 1;
}

.melds-card strong,
.team-card strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.team-card strong {
    font-size: 24px;}

.melds-card p,
.team-card p  {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}







/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

/* Tablette paysage */
@media (max-width: 1100px) {
  .agent-left  { padding: 0 48px; }
  .a-card-inner { padding: 28px 28px; }
  .a-card-num { font-size: 38px; }
}

/* Tablette portrait + mobile */
@media (max-width: 768px) {

  /* Sur mobile : on empile verticalement (plus de sticky horizontal) */
  #agent-intro {
    height: auto;
  }

  #agent-intro-inner {
    position: relative;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 24px 40px;
    overflow: visible;
  }

  .agent-left {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }

  .agent-progress,
  .progress-label { display: none; }

  .agent-cards {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Toutes les cartes visibles, empilées */
  .a-card {
    position: relative;
    width: 100%;
    height: auto;
    transform: none !important; /* annule le translateX GSAP */
  }

  .a-card-inner {
    padding: 24px 22px;
  }

  .a-card-num { font-size: 32px; }
}

/* ══════════════════════════════════════
   FORMULAIRE — Messages de retour
   ══════════════════════════════════════ */
.form-success {
  background: rgba(94, 188, 184, 0.12);
  border: 1px solid #5ebcb8;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #5ebcb8;
  text-align: center;
  margin-top: 4px;
}

.form-error {
  background: rgba(220, 80, 80, 0.1);
  border: 1px solid rgba(220, 80, 80, 0.5);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #e07070;
  text-align: center;
  margin-top: 4px;
}

/* ══════════════════════════════════════
   RESPONSIVE — Section contact
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  #contact {
    flex-direction: column;
    padding: 80px 32px;
    gap: 48px;
  }
  .contact-left,
  .contact-right {
    max-width: 100%;
    width: 100%;
  }
}
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
  }
  .footer-bottom-nav { gap: 16px; }
}




/* ══════════════════════════════════════
   PAGE PROCESSUS  
══════════════════════════════════════ */


 /* ── SECTION PROCESS── */

#processus {
  height: 800vh; /* durée du scroll — augmente pour ralentir */
  position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    opacity: 0;

}
 
#processus-inner {
  position: sticky;
  top: 72px; /* hauteur nav */
  height: calc(100vh - 72px);
  overflow: hidden;
  background: #0a3d51;
    
}
 
.processus-slides {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 400%; /* 4 slides × 100vw */
  will-change: transform;
}
 
/* ── SLIDE BASE ── */
.slide {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
 
/* ── SLIDE 1 — Intro centrée ── */
.slide-intro {
  justify-content: center;
  align-items: center;
}
 
.slide-intro-content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
    text-align: center;
}
 
.slide-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #5ebcb8;
  text-transform: uppercase;
}
 
.slide-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
}
 
.slide-title span { color: #f5e723; }
 
.slide-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
 
.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  width: fit-content;
}
 
.slide-cta:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
 
/* ── SLIDE SPLIT (2 colonnes) ── */
.slide-split {
  gap: 80px;
  align-items: center;
}
 
.slide-split-left {
  width: 33%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.slide-split-right {
  width: 67%;
  display: flex;
  flex-direction: column;
  gap: 20px;
    padding-right: 20%;
}
 
.slide-split-right--title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
 
/* Slide inversée — texte à gauche, titre à droite */
.slide-split--reverse .slide-split-left { order: 1; }
.slide-split--reverse .slide-split-right { order: 2; }
 

.big-number{
    font-size: 25vw;
    font-weight: 800;
    color: rgba(255,255,255,0.10);
    position: absolute;
    z-index: 0;
    top: 10vh;
}

.slide-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #5ebcb8;
  border: 1px solid #5ebcb8;
  border-radius: 100px;
  padding: 4px 14px;
  width: fit-content;
}
 
.slide-big-title {
  font-size: clamp(48px, 5vw, 100px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
 
.slide-split-body {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
 
.slide-highlight {
  background: rgba(94,188,184,0.08);
  border: 1px solid rgba(94,188,184,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
 
.slide-highlight-label {
  font-weight: 700;
  color: #5ebcb8;
  margin-right: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
}
 
.slide-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
 
.slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
 
.slide-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 5px 14px;
}
 
.slide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.slide-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
 
.slide-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #f5e723;
  font-size: 6px;
  top: 5px;
}
 
/* ── SLIDE 5 — End centrée ── */
.slide-end {
  justify-content: center;
  align-items: center;
}
 
.slide-end-content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
    text-align: center;

}

.models{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
        margin-top: 30px;
}

.model{
 background: rgba(94,188,184,0.08);
  border: 1px solid rgba(94,188,184,0.3);
  border-radius: 8px;
    padding: 28px 24px;
    width: 27%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /*opacity: 0;
    transform: translateY(30px);*/}

.model h3{
    color: #5ebcb8;
}

.model p{
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}







/* ══════════════════════════════════════════════════════
   RESPONSIVE — YB Inspire
   Breakpoints : 1200px | 1024px | 768px | 480px
══════════════════════════════════════════════════════ */


/* ─────────────────────────────────────
   1200px — Grand laptop / tablette large
───────────────────────────────────── */
@media (max-width: 1200px) {
    
    html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
* { min-width: 0; }

  /* Navbar */
 

  /* Hero */
  #hero {
    padding: 0 48px;
  }

  /* Agents */
  #agents {
    padding: 100px 48px;
  }

  /* Process */
  #process {
    padding: 100px 48px;
  }

  /* Contact */
  #contact {
    padding: 80px 48px;
    gap: 48px;
  }
}


/* ─────────────────────────────────────
   1024px — Tablette paysage
───────────────────────────────────── */
@media (max-width: 1024px) {

  /* Navbar — réduit les gaps */
  #content-nav {
     width: 90%;
  }

  #nav-links {
    gap: 20px;
  }

  #nav-links a {
    font-size: 12px;
  }

  /* Hero */
  #hero {
    padding: 0 32px;
  }

  .hero-content h1 {
    font-size: clamp(36px, 6vw, 64px);
  }

  /* Agent intro — colonne gauche moins large */
  .agent-left {
    padding: 0 32px;
  }

  /* Agents — passe en 2 colonnes */
  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #agents {
    padding: 80px 32px;
  }

  /* Contact */
  #contact {
    flex-direction: column;
    padding: 80px 48px;
    gap: 56px;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
    width: 100%;
  }

  .contact-right {
    align-items: stretch;
  }
}


/* ─────────────────────────────────────
   768px — Tablette portrait / mobile large
───────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Navbar mobile ── */
  #navbar {
    
  }

  #nav-links {
    display: none; /* caché — à remplacer par un menu burger si besoin */
  }

  #nav-cta {
    display: none; /* CTA nav caché sur mobile */
  }

  /* ── Hero ── */
  #hero {
    padding: 0 24px;
    min-height: 100svh;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-btns a,
  .hero-btns button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ── Marquee ── */
  .marquee-track span {
    font-size: 20px;
  }

  /* ── Section agents ── */
  #agents {
    padding: 60px 20px;
  }

  .agents-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .agents-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  /* ── Process ── */
  #process {
    padding: 60px 20px;
  }

  .process-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-right {
    position: static;
  }

  .process-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .process-desc {
    max-width: 100%;
    font-size: 14px;
  }

  .process-cta {
    width: 100%;
    justify-content: center;
  }

  /* Timeline */
  .timeline-title {
    font-size: 22px;
  }

  .timeline-body {
    font-size: 13px;
  }

  /* ── Horizons ── */
  #horizons {
    min-height: auto;
    padding: 80px 0;
  }

  .horizons-content {
    padding: 60px 24px;
  }

  .horizons-title {
    font-size: clamp(24px, 7vw, 40px);
    margin-bottom: 32px;
  }

  .horizons-cards {
    flex-direction: column;
    align-items: center;
  }

  .horizons-card {
    max-width: 100%;
    width: 100%;
  }

  /* ── Contact ── */
  #contact {
    padding: 60px 20px;
    min-height: auto;
  }

  .contact-title {
    font-size: clamp(28px, 7vw, 48px);
  }

  .contact-desc {
    font-size: 14px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* ── Footer ── */
  .footer-top {
    padding: 48px 20px 40px;
  }

  .footer-bottom {
    padding: 20px;
  }
}


/* ─────────────────────────────────────
   480px — Mobile portrait
───────────────────────────────────── */
@media (max-width: 480px) {

  /* Navbar */
  #navbar {
    padding: 0 16px;
  }

  #nav-logo svg {
    width: 90px;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 10px;
  }

  /* Agent intro — cartes */
  .a-card-inner {
    padding: 20px 16px;
  }

  .a-card-title {
    font-size: 18px;
  }

  .metric-val {
    font-size: 28px;
  }

  /* Agents */
  .agent-card {
    padding: 24px 20px;
  }

  /* Timeline */
  .timeline-step {
    gap: 16px;
  }

  .timeline-dot {
    width: 32px;
    height: 32px;
  }

  .timeline-line {
    left: 15px;
  }

  .timeline-tags {
    gap: 4px;
  }

  .timeline-tags span {
    font-size: 9px;
    padding: 3px 8px;
  }

  /* Process */
  .process-title {
    font-size: 26px;
  }

  /* Contact */
  .slots-number {
    font-size: 40px;
  }

  .contact-form-wrap {
    padding: 24px 16px;
  }

  .form-title {
    font-size: 15px;
  }

  /* Footer */
  .footer-top {
    padding: 40px 16px 32px;
    gap: 32px;
  }

  .footer-bottom-nav {
    flex-direction: column;
    gap: 10px;
  }

  .footer-copy {
    font-size: 11px;
  }

  .footer-social-link {
    font-size: 13px;
  }

  /* Horizons */
  .horizons-badge {
    font-size: 22px;
  }
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE — processus.html & studio.html
   Breakpoints : 1200 | 1024 | 768 | 480
══════════════════════════════════════════════════════ */

 


/* ══════════════════════════════════════
   PAGE PROCESSUS — section #processus
══════════════════════════════════════ */

/* Sur mobile : le scroll horizontal devient un scroll vertical normal */
@media (max-width: 768px) {

  #processus {
    height: auto;
    opacity: 1; /* s'assure que la section est visible */
  }

  #processus-inner {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
    padding-top: 72px;
  }

  .processus-slides {
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .slide {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 60px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .slide-split {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .slide-split--reverse .slide-split-left,
  .slide-split--reverse .slide-split-right {
    order: unset;
  }

  .slide-split-left {
    width: 100%;
  }

  .slide-split-right {
    width: 100%;
    padding-right: 0;
  }

  .slide-title {
    font-size: clamp(28px, 8vw, 44px);
  }

  .slide-big-title {
    font-size: clamp(40px, 12vw, 72px);
  }

  .big-number {
    font-size: 35vw;
    top: 0;
    opacity: 0.06;
  }

  /* Section MELDS */
  #melds,
  #team {
    padding: 60px 20px;
  }

  .melds-cards,
  .team-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .models {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .model {
    width: 100%;
  }

  .slide-end-content {
    padding: 0 4px;
  }

  /* Contact sur processus.html */
  #contact {
    flex-direction: column;
    padding: 60px 20px;
    min-height: auto;
    gap: 40px;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
    width: 100%;
  }

  .contact-form-wrap {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .slide { padding: 48px 16px; }
  .melds-cards,
  .team-cards { grid-template-columns: 1fr; }
  .slide-big-title { font-size: 36px; }
  .contact-form-wrap { padding: 20px 14px; }
}


/* ══════════════════════════════════════
   PAGE STUDIO — section #services
══════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-left { padding: 0 40px; }
}

@media (max-width: 768px) {

  /* Le sticky stacking devient un scroll vertical */
  #services {
    height: auto;
  }

  #services-inner {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
    flex-direction: column;
    padding: 80px 20px 40px;
    gap: 40px;
  }

  .services-left {
    width: 100%;
    padding: 0;
  }

  .services-cards {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Annule le positionnement absolu des cartes GSAP */
  .s-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important; /* annule translateX GSAP */
    width: 100%;
    height: auto;
  }

  /* Section TEAM */
  #team {
    padding: 60px 20px;
  }

  .team-title {
    font-size: clamp(22px, 6vw, 36px);
  }

  .team-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .team-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  #services-inner { padding: 72px 16px 32px; }
  .s-card         { padding: 24px 16px; }
  .team-cards     { grid-template-columns: 1fr; }
  .services-title { font-size: 26px; }
}




