.hero {
      padding: 80px 0 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }
    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: var(--navy);
      background: var(--green-pale); border-radius: 100px;
      padding: 5px 14px; margin-bottom: 24px;
      border: 1px solid rgba(0,208,125,0.3);
    }
    .hero-eyebrow::before {
      content: ''; width: 6px; height: 6px;
      border-radius: 50%; background: var(--green); flex-shrink: 0;
    }
    h1 {
      font-size: clamp(32px, 4.5vw, 52px);
      font-weight: 800; line-height: 1.1;
      letter-spacing: -.025em; color: var(--navy);
      margin-bottom: 20px;
    }
    .hero-desc {
      font-size: 17px; color: var(--body-txt);
      line-height: 1.7; max-width: 440px; margin-bottom: 36px;
    }
    .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 700; color: var(--white);
      background: var(--navy); padding: 14px 28px;
      border-radius: var(--radius-md); transition: background .15s, transform .1s;
    }
    .btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 600; color: var(--navy);
      border: 1.5px solid var(--border); padding: 13px 26px;
      border-radius: var(--radius-md); transition: border-color .15s, background .15s;
    }
    .btn-secondary:hover { border-color: var(--navy); background: var(--surface); }

    .hero-stats {
      display: flex; gap: 40px; margin-top: 52px;
      padding-top: 36px; border-top: 1px solid var(--border);
    }
    .stat-num {
      font-size: 28px; font-weight: 800; color: var(--navy);
      letter-spacing: -.02em; line-height: 1;
    }
    .stat-num span { color: var(--green); }
    .stat-label {
      font-size: 12px; font-weight: 500; color: var(--muted);
      text-transform: uppercase; letter-spacing: .06em; margin-top: 4px;
    }

    .hero-visual {
      display: flex; justify-content: center; align-items: flex-end;
    }
    .hero-visual img {
      width: 100%; max-width: 460px;
      margin-bottom: -1px; /* flush with border */
    }

    /* ─── SECTION BASE ─── */
    .section { padding: 88px 0; }
    .section-alt { background: var(--surface); }
    .section-header { margin-bottom: 56px; }
    .section-header.centered { text-align: center; }
    .section-header.centered h1, .section-header.centered h2 { margin: 0 auto; }
    .eyebrow {
      display: inline-block; font-size: 11px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--navy); margin-bottom: 14px;
    }
    h1, h2 {
      font-size: clamp(24px, 3vw, 38px); font-weight: 800;
      color: var(--navy); line-height: 1.15; letter-spacing: -.02em;
      max-width: 560px; margin-bottom: 14px;
    }
    #partenaires h2 { margin-bottom: 26px; }
    .section-header p {
      font-size: 16px; color: var(--body-txt);
      max-width: 520px; line-height: 1.65;
    }
    .section-header.centered p { margin: 0 auto 14px; }
    .section-header.centered p:last-child { margin-bottom: 0; }

    /* ─── USE CASES (TABS) ─── */
    .tabs-nav {
      display: flex; gap: 0; border-bottom: 2px solid var(--border);
      margin-bottom: 56px; overflow-x: auto;
    }
    .tab-btn {
      display: flex; align-items: center; gap: 8px;
      padding: 14px 24px; font-size: 14px; font-weight: 600;
      color: var(--muted); white-space: nowrap;
      border-bottom: 2px solid transparent; margin-bottom: -2px;
      transition: color .15s, border-color .15s;
    }
    .tab-btn:hover { color: var(--navy); }
    .tab-btn.active {
      color: var(--navy); border-bottom-color: var(--navy);
    }
    .tab-icon { font-size: 16px; }

    .tab-panels {}
    .tab-panel { display: none; }
    .tab-panel.active {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }

    .use-text {}
    .use-text h3 {
      font-size: 26px; font-weight: 800; color: var(--navy);
      letter-spacing: -.02em; line-height: 1.2; margin-bottom: 14px;
    }
    .use-text p { font-size: 15px; color: var(--body-txt); line-height: 1.7; margin-bottom: 28px; }

    .steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
    .step { display: flex; align-items: flex-start; gap: 12px; }
    .step-dot {
      min-width: 24px; height: 24px; border-radius: 50%;
      background: var(--green-pale); border: 1.5px solid rgba(0,208,125,0.4);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700; color: var(--navy); flex-shrink: 0;
    }
    .step p { font-size: 14px; color: var(--body-txt); line-height: 1.55; margin: 0; }

    .use-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 14px; font-weight: 700; color: var(--navy);
      border-bottom: 2px solid var(--green); padding-bottom: 2px;
      transition: color .15s;
    }
    .use-link:hover { color: var(--navy-mid); }

    .use-visual img {
      width: 100%; border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      box-shadow: 0 8px 40px rgba(3,50,92,0.08);
    }

    /* ─── PARTNERS ─── */
    .partners-intro {
      font-size: 13px; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: var(--muted);
      text-align: center; margin-bottom: 40px;
    }
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .partner-card {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      height: 100px; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
      background: var(--white); gap: 10px; padding: 16px;
      transition: border-color .15s, box-shadow .15s;
      cursor: pointer;
    }
    .partner-card:hover {
      border-color: var(--navy);
      box-shadow: 0 4px 16px rgba(3,50,92,0.08);
    }
    .partner-logo-area {
      width: 100%; height: 40px;
      background: var(--surface); border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
    }
    .partner-logo-area span {
      font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .04em;
    }
    .partner-action {
      font-size: 11px; font-weight: 600; color: var(--navy);
      display: flex; align-items: center; gap: 4px;
    }
    .partner-action svg { width: 12px; height: 12px; }
    
    .partner-cta {
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--radius-xl); padding: 32px 36px; margin-top: 48px;
      box-shadow: 0 8px 32px rgba(3,50,92,0.06);
    }
    .partner-cta-text h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
    .partner-cta-text p { font-size: 14px; color: var(--muted); max-width: 420px; }
    .partner-cta-btn {
      flex-shrink: 0; background: var(--navy); color: #fff; font-weight: 700; font-size: 14.5px;
      padding: 14px 26px; border-radius: 100px; white-space: nowrap;
      transition: background .15s, transform .15s;
    }
    .partner-cta-btn:hover { background: var(--navy-mid); transform: translateY(-1px); }
    @media (max-width: 640px) {
      .partner-cta { flex-direction: column; text-align: center; }
    }
    .partners-note {
      text-align: center; margin-top: 32px;
      font-size: 14px; color: var(--muted);
    }
    .interim-title {
      text-align: center; font-size: 13px; font-weight: 700; color: var(--navy);
      text-transform: uppercase; letter-spacing: .06em; margin: 56px 0 20px;
    }
    .interim-grid {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    }
    .interim-card { width: 160px; }
    .interim-card {
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      padding: 16px 10px; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
      background: var(--white); transition: border-color .15s, box-shadow .15s;
    }
    .interim-card:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(3,50,92,0.08); }
    .interim-card img { width: 100px; height: 40px; object-fit: contain; object-position: center; }
    .interim-card span { font-size: 11.5px; font-weight: 600; color: var(--body-txt); text-align: center; }
    @media (max-width: 560px) { .interim-card { width: 130px; } }
    .interim-subtitle { text-align:center; font-size:14px; font-weight:600; color:var(--muted); margin-bottom:20px; }
    .partners-note a {
      color: var(--navy); font-weight: 600;
      border-bottom: 1.5px solid var(--green); padding-bottom: 1px;
    }

    /* ─── WHY ─── */
    .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .why-card {
      padding: 36px 28px; border-radius: var(--radius-lg);
      border: 1.5px solid var(--border); background: var(--white);
      transition: border-color .2s, box-shadow .2s;
    }
    .why-card:hover { border-color: var(--navy); box-shadow: 0 8px 32px rgba(3,50,92,0.07); }
    .why-icon {
      width: 48px; height: 48px; border-radius: var(--radius-md);
      background: var(--green-pale); display: flex; align-items: center;
      justify-content: center; font-size: 22px; margin-bottom: 20px;
    }
    .why-card h3 {
      font-size: 17px; font-weight: 700; color: var(--navy);
      margin-bottom: 10px; line-height: 1.3;
    }
    .why-card p { font-size: 14px; color: var(--body-txt); line-height: 1.65; margin-bottom: 20px; }
    .why-card a {
      font-size: 13px; font-weight: 700; color: var(--navy);
      display: inline-flex; align-items: center; gap: 5px;
    }
    .why-card a svg { width: 13px; height: 13px; transition: transform .15s; }
    .why-card a:hover svg { transform: translateX(3px); }

    /* ─── HOW ─── */
    .how-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 24px; position: relative;
    }
    .how-grid::before {
      content: ''; position: absolute;
      top: 24px; left: 48px; right: 48px; height: 1px;
      background: var(--border); z-index: 0;
    }
    .how-step { position: relative; z-index: 1; }
    .how-num {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--white); border: 2px solid var(--navy);
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 800; color: var(--navy);
      margin-bottom: 20px;
    }
    .how-step h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .how-step p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ─── CTA BAND ─── */
    .cta-band {
      background: var(--navy); padding: 72px 0; color: var(--white);
    }
    .cta-inner {
      display: flex; align-items: center;
      justify-content: space-between; gap: 48px; flex-wrap: wrap;
    }
    .cta-text h2 { color: var(--white); max-width: 440px; }
    .cta-text p  { font-size: 16px; color: rgba(255,255,255,0.65); margin-top: 10px; max-width: 400px; }
    .cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
    .btn-green {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 700; color: var(--navy);
      background: var(--green); padding: 14px 28px;
      border-radius: var(--radius-md); transition: filter .15s;
    }
    .btn-green:hover { filter: brightness(1.06); }
    .btn-outline-white {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 600; color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.35); padding: 13px 26px;
      border-radius: var(--radius-md); transition: border-color .15s, background .15s;
    }
    .btn-outline-white:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

    /* ─── ANIMATE ─── */
    .fade { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
    .fade.in  { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .fade { opacity: 1; transform: none; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 960px) {
      .hero-inner    { grid-template-columns: 1fr; }
      .hero-visual   { justify-content: flex-start; }
      .tab-panel.active { grid-template-columns: 1fr; }
      .use-visual    { display: none; }
      .why-grid      { grid-template-columns: 1fr; }
      .how-grid      { grid-template-columns: 1fr 1fr; }
      .how-grid::before { display: none; }
      .partners-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 640px) {
      .nav-links     { display: none; }
      h1             { font-size: 30px; }
      .hero-stats    { flex-wrap: wrap; gap: 24px; }
      .cta-inner     { flex-direction: column; align-items: flex-start; }
      .how-grid      { grid-template-columns: 1fr; }
    }
/* ─── PAGE PARTENAIRES : SECTIONS THÉMATIQUES ─── */
.pg-section {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  margin-bottom: 24px;
}
.pg-section.public { background: #eef6fb; }
.pg-section.private { background: var(--green-pale); }
.pg-section.future { background: var(--navy); position: relative; overflow: hidden; }
.pg-section.closing { background: var(--white); border: 1.5px solid var(--border); text-align: center; padding: 48px 36px; display: flex; flex-direction: column; align-items: center; }

.pg-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 8px; display: block;
}
.pg-section.public .pg-eyebrow { color: #0c447c; }
.pg-section.private .pg-eyebrow { color: #3b6d11; }
.pg-section.future .pg-eyebrow { color: #6fd9ae; }

.pg-title {
  font-size: clamp(22px, 3vw, 28px); font-weight: 800; color: var(--navy);
  margin-bottom: 16px; letter-spacing: -.01em;
}
.pg-section.future .pg-title { color: var(--white); }

.pg-desc {
  margin-bottom: 24px; max-width: 100%;
}
.pg-desc p {
  display: inline; font-size: 15px; color: var(--body-txt); line-height: 1.75;
}
.pg-desc p::after { content: " "; }
.pg-section.future .pg-desc p { color: #b8c4d4; }

.pg-bento {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.pg-bento.pg-bento-single {
  display: flex; justify-content: center;
}
.pg-bento-single .pg-card.featured {
  width: 100%; max-width: 360px;
}
.pg-card {
  background: var(--white); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 14px; border: 1px solid rgba(0,0,0,0.06);
  transition: transform .15s, box-shadow .15s;
}
.pg-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(3,50,92,0.08); }
.pg-card.featured {
  grid-column: span 2; flex-direction: column; justify-content: center; text-align: center; gap: 12px; padding: 28px 22px;
}
.pg-card img { width: 100px; height: 40px; object-fit: contain; object-position: center; }
.pg-card.featured img { width: 100px; height: 40px; object-fit: contain; object-position: center; flex-shrink: 0; }
.pg-card span.pg-name { font-size: 12px; font-weight: 600; color: var(--body-txt); text-align: center; }
.pg-card.featured span.pg-name { font-size: 15px; text-align: left; }
.pg-badge {
  display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700;
  color: #0f6e56; background: var(--green-pale); padding: 6px 14px; border-radius: 100px; margin-top: 4px;
}

.pg-future-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.pg-future-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg); padding: 28px 18px;
  transition: background .15s, border-color .15s, transform .15s;
}
.pg-future-item:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(111,217,174,0.35); transform: translateY(-3px);
}
.pg-future-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(111,217,174,0.14); border: 1px solid rgba(111,217,174,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px;
}
.pg-future-card-title {
  font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.pg-future-card-desc { font-size: 12.5px; color: #94a7bd; line-height: 1.55; }
@media (max-width: 900px) { .pg-future-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .pg-future-grid { grid-template-columns: repeat(2, 1fr); } }

.pg-closing-title { font-size: clamp(22px, 3vw, 26px); font-weight: 800; color: var(--navy); margin-bottom: 12px; text-align: center; width: 100%; max-width: 560px; }
.pg-closing-desc { font-size: 15px; color: var(--body-txt); max-width: 520px; margin: 0 auto 16px; line-height: 1.6; text-align: center; }
.pg-closing-tags { font-size: 14px; font-weight: 700; color: var(--green); text-align: center; width: 100%; }

@media (max-width: 640px) {
  .pg-section { padding: 28px 20px; }
  .pg-card.featured { grid-column: span 2; flex-direction: column; text-align: center; padding: 18px 14px; }
  .pg-card.featured img { height: 40px; }
  .pg-card.featured span.pg-name { text-align: center; font-size: 12px; }
}
