
    :root {
       --black:      #0A0A0A;
      --green:       #2A7A50;
      --green-mid:   #3DAA70;
      --green-light: #C8EDD9;
      --green-pale:  #F0FAF4;
      --white:       #FAFAF8;
      --off:         #F4F4F0;
      --border:      #E4E4DE;
      --grey-mid:    #9A9A94;
      --grey-dark:   #4A4A44;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html, body { height: 100%; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--black);
      color: #fff;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ════════════════════════════════
       HERO — PLEIN ÉCRAN
    ════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 100vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    /* Photo de fond — voiture / rue de Lomé ambiance */
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          135deg,
          rgba(10,10,10,0.82) 0%,
          rgba(10,10,10,0.55) 50%,
          rgba(10,10,10,0.40) 100%
        ),
        url('/banner.jpg') center/cover no-repeat;
    }

    /* Grain texture overlay */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      opacity: 0.4;
      pointer-events: none;
    }

    /* NAV */
    nav {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 52px;
      animation: fadeDown 0.6s ease both;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .logo img {
      width: 160px;
      filter: brightness(0) invert(1);
    }

    /* Badge bientôt */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: 100px;
      backdrop-filter: blur(8px);
    }

    .dot {
      width: 6px; height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(200,240,74,0.6); }
      50%       { box-shadow: 0 0 0 5px rgba(200,240,74,0); }
    }

    /* HERO CONTENT */
    .hero-content {
      position: relative;
      z-index: 10;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 52px 60px;
      max-width: 860px;
    }

    h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(52px, 8vw, 90px);
      font-weight: 900;
      letter-spacing: -4px;
      line-height: 0.95;
      color: #fff;
      margin-bottom: 22px;
      animation: fadeUp 0.7s 0.1s ease both;
    }

    h1 .accent-word {
      position: relative;
      display: inline-block;
      color: #fff;
    }

    /* Underline ovale comme l'image de référence */
    h1 .accent-word::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: -6px;
      right: -6px;
      height: 52%;
      border: 3px solid var(--accent);
      border-radius: 50%;
      transform: rotate(-1.5deg);
      animation: drawCircle 0.6s 0.7s ease both;
      transform-origin: center;
    }

    @keyframes drawCircle {
      from { clip-path: inset(0 100% 0 0); }
      to   { clip-path: inset(0 0% 0 0); }
    }

    .sub {
      font-size: 18px;
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      line-height: 1.55;
      max-width: 520px;
      margin-bottom: 36px;
      animation: fadeUp 0.7s 0.18s ease both;
    }

    /* ════════════════════════
       BARRE CTA PRINCIPALE
    ════════════════════════ */
    .cta-bar {
      display: flex;
      align-items: stretch;
      gap: 0;
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      max-width: 580px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      margin-bottom: 20px;
      animation: fadeUp 0.7s 0.25s ease both;
    }

    .cta-input {
      flex: 1;
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: var(--black);
      background: transparent;
      border: none;
      outline: none;
      padding: 18px 20px;
    }

    .cta-input::placeholder { color: var(--grey-mid); }

    .cta-btn {
      background: var(--green-mid);
      color: var(--white);
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      padding: 18px 28px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      letter-spacing: -0.3px;
      transition: background 0.2s, transform 0.15s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cta-btn:hover {
      background: var(--green-mid);
      transform: scale(1.02);
    }

    /* Tags rapides */
    .quick-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.32s ease both;
    }

    .qtag {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.85);
      font-size: 14px;
      font-weight: 400;
      padding: 6px 14px;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.18s;
      backdrop-filter: blur(6px);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .qtag:hover {
      background: rgba(200,240,74,0.2);
      border-color: var(--accent);
      color: #fff;
    }

    /* LOGOS PARTENAIRES / TRUST */
    .logos-bar {
      position: relative;
      z-index: 10;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 22px 52px;
      display: flex;
      align-items: center;
      gap: 36px;
      animation: fadeUp 0.7s 0.4s ease both;
    }

    .logos-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      white-space: nowrap;
    }

    .logos-items {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .logo-item {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.4);
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .logo-item:hover { color: rgba(255,255,255,0.7); }

    /* ════════════════════════════
       PANEL INSCRIPTION (slide-in)
    ════════════════════════════ */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 100;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      backdrop-filter: blur(4px);
    }

    .overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .panel {
      position: fixed;
      right: -520px;
      top: 0;
      bottom: 0;
      width: 100%;
      max-width: 480px;
      background: var(--white);
      z-index: 101;
      overflow-y: auto;
      transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      padding: 36px 36px 48px;
      display: flex;
      flex-direction: column;
    }

    .panel.open {
      right: 0;
    }

    .panel-close {
      align-self: flex-end;
      background: var(--off);
      border: 1.5px solid var(--border);
      border-radius: 50%;
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      font-size: 18px;
      color: var(--grey-dark);
      margin-bottom: 24px;
      transition: background 0.18s;
    }

    .panel-close:hover { background: var(--border); }

    .panel-logo {
      font-family: 'Fraunces', serif;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -1.5px;
      color: var(--black);
      margin-bottom: 4px;
    }

    .panel-title {
      font-family: 'Fraunces', serif;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.8px;
      color: var(--black);
      margin-bottom: 6px;
    }

    .panel-desc {
      font-size: 13px;
      color: var(--grey-mid);
      font-weight: 300;
      margin-bottom: 24px;
      line-height: 1.55;
    }

    .panel-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 22px;
    }

    /* Champs */
    .fields { display: flex; flex-direction: column; gap: 12px; }
    .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .field { display: flex; flex-direction: column; gap: 5px; }

    .field label {
      font-size: 11px;
      font-weight: 500;
      color: var(--grey-dark);
      letter-spacing: 0.3px;
    }

    .field input,
    .field select {
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: var(--black);
      background: var(--off);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 11px 13px;
      outline: none;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
      -webkit-appearance: none;
      appearance: none;
    }

    .field input::placeholder { color: var(--grey-mid); }

    .field input:focus,
    .field select:focus {
      border-color: var(--green-mid);
      background: white;
      box-shadow: 0 0 0 3px rgba(61,170,112,0.09);
    }

    /* Rôle */
    .role-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--grey-dark);
      letter-spacing: 0.3px;
      margin-bottom: 6px;
    }

    .role-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

    .role-btn {
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      gap: 9px;
      cursor: pointer;
      background: var(--off);
      transition: all 0.18s;
      user-select: none;
    }

    .role-btn:hover,
    .role-btn.active {
      border-color: var(--green-mid);
      background: var(--green-pale);
    }

    .role-btn input { display: none; }
    .role-ico { font-size: 17px; flex-shrink: 0; }
    .role-txt strong { display: block; font-size: 13px; font-weight: 500; color: var(--black); }
    .role-txt span { font-size: 11px; color: var(--grey-mid); font-weight: 300; }

    /* Submit */
    .btn-submit {
      width: 100%;
      margin-top: 18px;
      background: var(--black);
      color: white;
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 600;
      padding: 15px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      letter-spacing: -0.2px;
      transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-submit:hover {
      background: var(--green);
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(42,122,80,0.18);
    }

    /* Succès panel */
    .success {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 0;
      gap: 12px;
      flex: 1;
      justify-content: center;
    }

    .success-ico {
      width: 56px; height: 56px;
      background: var(--green-pale);
      border: 1.5px solid var(--green-light);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
      animation: popIn 0.45s ease both;
      color: var(--green);
    }

    @keyframes popIn {
      0%   { transform: scale(0.7); opacity: 0; }
      65%  { transform: scale(1.08); }
      100% { transform: scale(1); opacity: 1; }
    }

    .success-title {
      font-family: 'Fraunces', serif;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.5px;
      color: var(--black);
    }

    .success-sub {
      font-size: 13px;
      color: var(--grey-mid);
      font-weight: 300;
      line-height: 1.6;
    }

    /* Compteur */
    .counter {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: auto;
      padding-top: 28px;
    }

    .avatars { display: flex; }

    .av {
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 2px solid var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px;
      margin-left: -8px;
    }

    .av:first-child { margin-left: 0; }

    .counter-txt {
      font-size: 12px;
      color: var(--grey-dark);
      font-weight: 300;
    }

    .counter-txt strong { font-weight: 600; color: var(--black); }

    /* FOOTER */
    footer {
      position: relative;
      z-index: 10;
      text-align: center;
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      font-weight: 300;
      padding: 16px 52px;
      border-top: 1px solid rgba(255,255,255,0.07);
    }

    footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
    footer a:hover { color: rgba(255,255,255,0.7); }

    /* ANIMATIONS */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      20%       { transform: translateX(-5px); }
      40%       { transform: translateX(5px); }
      60%       { transform: translateX(-3px); }
      80%       { transform: translateX(3px); }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      nav { padding: 22px 24px; }
      .hero-content { padding: 0 24px 48px; }
      h1 { font-size: clamp(42px, 11vw, 64px); letter-spacing: -2.5px; }
      .sub { font-size: 16px; }
      .cta-bar { max-width: 100%; }
      .logos-bar { padding: 18px 24px; gap: 16px; flex-direction: column; align-items: flex-start; }
      .logos-items { gap: 16px; }
      footer { padding: 16px 24px; }
      .panel { max-width: 100%; }
      .row-2 { grid-template-columns: 1fr; }
      .qtag {font-size: 11px;}
      .cta-btn {
      font-size: 12px;
      font-weight: 700;
      padding: 8px 8px;
      gap: 2px;
    }
    }
