:root {
      --navy: #031326;
      --gold: #f8b935;
      --gold-2: #ffd166;
      --text: #09182f;
      --line: rgba(9, 24, 47, 0.13);
      --shadow: 0 18px 45px rgba(3, 19, 38, 0.16);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: "Inter", Arial, sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }

    .page { width: 100%; min-height: 100vh; background: #fff; }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      height: 92px;
      background: rgba(3, 19, 38, 0.96);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .topbar-inner {
      max-width: 1180px;
      height: 100%;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .logo{display:flex;flex-direction:column;line-height:1;min-width:205px}.logo img{width:205px;height:auto;display:block}
    .logo img{width:205px;height:auto;display:block}

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 26px;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      flex: 1;
    }

    .nav a { position: relative; opacity: 0.95; transition: 0.2s ease; }
    .nav a:hover { color: var(--gold-2); }
    .nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -23px;
      width: 52px;
      height: 3px;
      border-radius: 50px;
      background: var(--gold);
    }

    .btn {
      border: 0;
      border-radius: 9px;
      padding: 15px 22px;
      font-weight: 800;
      font-size: 14px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: 0.22s ease;
      white-space: nowrap;
    }

    .btn-gold {
      background: linear-gradient(135deg, #ffd15e, #f5ad20);
      color: #0a172b;
      box-shadow: 0 12px 24px rgba(248, 185, 53, 0.25);
    }

    .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 32px rgba(248, 185, 53, 0.35); }

    .btn-outline {
      background: rgba(255, 255, 255, 0.03);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.55);
    }

    .btn-outline:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

    .mobile-menu {
      display: none;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 8px;
      padding: 10px 12px;
      font-weight: 800;
      background: transparent;
    }

    .hero {
      position: relative;
      min-height: 640px;
      padding-top: 92px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(3,19,38,1) 0%, rgba(3,19,38,0.95) 36%, rgba(3,19,38,0.64) 63%, rgba(3,19,38,0.35) 100%),
        url("https://images.unsplash.com/photo-1543269865-cbf427effbad?auto=format&fit=crop&w=1800&q=80") center right / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 38%, rgba(248, 185, 53, 0.12), transparent 28%),
        radial-gradient(circle at 74% 26%, rgba(255, 255, 255, 0.08), transparent 30%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1180px;
      margin: 0 auto;
      padding: 78px 24px 136px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      padding: 10px 18px;
      border: 1px solid rgba(255, 255, 255, 0.38);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      background: rgba(3, 19, 38, 0.35);
      margin-bottom: 28px;
    }

    .badge::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 0 6px rgba(248, 185, 53, 0.14);
    }

    .hero h1 {
      max-width: 620px;
      color: #fff;
      font-size: clamp(40px, 5.2vw, 64px);
      line-height: 1.07;
      letter-spacing: -2px;
      font-weight: 900;
      margin-bottom: 24px;
    }

    .hero h1 span { color: var(--gold); }

    .hero p {
      max-width: 590px;
      color: rgba(255, 255, 255, 0.92);
      font-size: 18px;
      line-height: 1.72;
      margin-bottom: 34px;
    }

    .hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

    .benefits-wrap {
      position: relative;
      z-index: 5;
      max-width: 1180px;
      margin: -50px auto 0;
      padding: 0 24px;
    }

    .benefits {
      background: #fff;
      border-radius: 12px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(9, 24, 47, 0.08);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
    }

    .benefit {
      min-height: 118px;
      padding: 26px 30px;
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 17px;
      align-items: center;
      border-right: 1px solid var(--line);
    }

    .benefit:last-child { border-right: 0; }

    .benefit-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #f2f5f9;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
    }

    .benefit h3 { font-size: 14px; font-weight: 900; margin-bottom: 6px; color: var(--navy); }
    .benefit p { font-size: 13px; line-height: 1.45; color: #25354d; }

    .section { padding: 88px 24px; }
    .section-inner { max-width: 1180px; margin: 0 auto; }
    .section-kicker { text-align: center; color: #d89a16; text-transform: uppercase; font-size: 13px; font-weight: 800; letter-spacing: 2px; margin-bottom: 16px; }
    .section-title { text-align: center; color: var(--navy); font-size: clamp(30px, 3vw, 42px); line-height: 1.15; letter-spacing: -1.3px; font-weight: 900; margin-bottom: 14px; }
    .title-line { width: 39px; height: 3px; background: var(--gold); border-radius: 50px; margin: 0 auto 34px; }

    .cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 22px; }

    .card {
      background: #fff;
      border: 1px solid rgba(9, 24, 47, 0.08);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 14px 34px rgba(3, 19, 38, 0.09);
      transition: 0.25s ease;
      min-height: 374px;
      display: flex;
      flex-direction: column;
    }

    .card:hover { transform: translateY(-7px); box-shadow: 0 20px 44px rgba(3, 19, 38, 0.16); }
    .card-image { height: 146px; position: relative; background-size: cover; background-position: center; }
    .card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(3,19,38,0.15)); }

    .card-icon {
      position: absolute;
      left: 21px;
      bottom: -25px;
      z-index: 2;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 24px rgba(3, 19, 38, 0.22);
    }

    .card-body { padding: 42px 21px 21px; display: flex; flex-direction: column; flex: 1; }
    .card h3 { font-size: 22px; line-height: 1.22; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
    .card p { color: #26364e; font-size: 14px; line-height: 1.65; margin-bottom: 22px; flex: 1; }
    .card-link { display: flex; align-items: center; justify-content: space-between; color: var(--navy); font-size: 14px; font-weight: 900; margin-top: auto; }

    .stats {
      position: relative;
      background: linear-gradient(135deg, #031326 0%, #051b34 55%, #082645 100%);
      color: #fff;
      overflow: hidden;
    }

    .stats::before {
      content: "";
      position: absolute;
      top: -90px;
      left: 4%;
      width: 570px;
      height: 570px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(248,185,53,0.17) 0 1px, transparent 2px);
      background-size: 13px 13px;
      opacity: 0.35;
      transform: rotate(-18deg);
    }

    .stats .section-inner { position: relative; z-index: 2; }
    .stats .section-kicker, .stats .section-title { color: #fff; }
    .stats .section-kicker { color: var(--gold); }

    .stats-grid { display: grid; grid-template-columns: 1.1fr 1.1fr 1.1fr 1.25fr; gap: 0; margin-top: 34px; align-items: stretch; }

    .stat {
      padding: 8px 32px;
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 18px;
      border-right: 1px solid rgba(255, 255, 255, 0.23);
      min-height: 138px;
    }

    .stat:last-child { border-right: 0; }
    .stat svg { color: var(--gold); }
    .stat strong { display: block; color: var(--gold); font-size: 43px; font-weight: 900; line-height: 0.95; letter-spacing: -1.2px; margin-bottom: 10px; }
    .stat h3 { font-size: 23px; line-height: 1.18; font-weight: 900; margin-bottom: 12px; }
    .stat p { color: rgba(255, 255, 255, 0.82); font-size: 15px; line-height: 1.55; }

    .partners { padding: 54px 24px; background: #fff; }

    .partners-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 230px 1fr;
      gap: 54px;
      align-items: center;
    }

    .partners h3 { color: var(--navy); font-size: 18px; font-weight: 900; margin-bottom: 7px; }
    .partners p { color: #25354d; line-height: 1.45; font-size: 15px; margin-bottom: 20px; }

    .btn-small {
      padding: 12px 16px;
      border: 1px solid var(--gold);
      color: var(--navy);
      background: #fff;
      border-radius: 7px;
      font-size: 13px;
      font-weight: 900;
      display: inline-flex;
      gap: 10px;
      align-items: center;
    }

    .logos {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      align-items: center;
    }

    .partner-logo {
      height: 86px;
      background: #fff;
      border: 1px solid rgba(9, 24, 47, 0.08);
      border-radius: 14px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 26px rgba(3, 19, 38, 0.055);
    }

    .partner-logo img {
      display: block;
      width: 100%;
      height: 100%;
      max-width: 150px;
      max-height: 54px;
      object-fit: contain;
    }

    .footer-contact { background: #f6f8fb; border-top: 1px solid rgba(9, 24, 47, 0.08); padding: 25px 24px; }

    .footer-inner{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:1.15fr .9fr 1fr 180px auto;gap:28px;align-items:center}
    .qualiopi-link{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;color:var(--navy);font-size:12px;font-weight:900;text-align:center;transition:.22s}
    .qualiopi-link:hover{transform:translateY(-2px)}
    .qualiopi-link img{width:150px;height:auto;display:block;object-fit:contain}
    .qualiopi-link{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;color:var(--navy);font-size:12px;font-weight:900;text-align:center;transition:.22s}
    .qualiopi-link:hover{transform:translateY(-2px)}
    .qualiopi-link img{width:150px;height:auto;display:block;object-fit:contain}

    .contact-item { display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: center; color: var(--navy); }
    .contact-item svg { color: var(--navy); }
    .contact-item span { display: block; font-size: 12px; font-weight: 700; color: #3d4c62; margin-bottom: 4px; }
    .contact-item strong { font-size: 15px; line-height: 1.35; }

    .footer-btn {
      background: var(--navy);
      color: #fff;
      padding: 18px 28px;
      border-radius: 8px;
      font-weight: 900;
      display: inline-flex;
      gap: 18px;
      align-items: center;
      justify-content: center;
      transition: 0.22s ease;
    }

    .footer-btn:hover { transform: translateY(-2px); background: #071f3c; }

    .footer-legal{max-width:1180px;margin:22px auto 0;padding-top:18px;border-top:1px solid rgba(9,24,47,.08);display:flex;justify-content:center;align-items:center;gap:18px;flex-wrap:wrap;color:#3d4c62;font-size:13px;font-weight:700;text-align:center}
    .footer-legal .footer-credit{color:var(--navy);font-weight:900}
    .footer-legal .mentions-link{color:#3d4c62;font-weight:400;text-decoration:none}
    .footer-legal .mentions-link:hover{text-decoration:underline}

    @media (max-width: 1100px) {
      .nav { display: none; }
      .mobile-menu { display: inline-flex; }
      .benefits, .cards, .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .benefit:nth-child(2) { border-right: 0; }
      .benefit:nth-child(1), .benefit:nth-child(2) { border-bottom: 1px solid var(--line); }
      .stat:nth-child(2) { border-right: 0; }
      .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.23); padding-bottom: 32px; margin-bottom: 24px; }
      .partners-inner, .footer-inner { grid-template-columns: 1fr; }
      .logos { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 760px) {
      .topbar { height: 78px; }
      .topbar-inner { padding: 0 18px; }
      .topbar .btn-gold { display: none; }
      .hero { padding-top: 78px; min-height: auto; background-position: center; }
      .hero-inner { padding: 62px 20px 114px; }
      .hero p { font-size: 16px; }
      .benefits-wrap { margin-top: -42px; }
      .benefits, .cards, .stats-grid, .logos { grid-template-columns: 1fr; }
      .benefit, .stat { border-right: 0; border-bottom: 1px solid var(--line); }
      .stat { border-bottom-color: rgba(255, 255, 255, 0.23); }
      .benefit:last-child, .stat:last-child { border-bottom: 0; }
      .section { padding: 68px 20px; }
      .partners { padding: 42px 20px; }
      .partner-logo { height: 82px; }
      .hero-actions { align-items: stretch; }
      .hero-actions .btn { width: 100%; }
    }


    /* Accès apprenant CRM */
    .topbar-actions{display:flex;align-items:center;gap:12px}
    .btn-learner{background:rgba(255,255,255,.08);color:#fff;border:1px solid rgba(255,255,255,.26);box-shadow:none}
    .btn-learner:hover{background:rgba(248,185,53,.14);color:var(--gold2, var(--gold-2));transform:translateY(-2px)}
    .learner-icon{font-size:15px;line-height:1}

    @media(max-width:1100px){
      .nav.open{display:flex;position:absolute;top:92px;left:0;right:0;background:rgba(3,19,38,.98);flex-direction:column;padding:22px 24px;gap:18px;border-top:1px solid rgba(255,255,255,.08);box-shadow:0 18px 35px rgba(3,19,38,.22)}
      .nav.open a{width:100%;text-align:center;padding:10px 0}
      .nav.open a.active::after{display:none}
      .contact-header{display:none}
      .btn-learner{padding:13px 16px}
    }

    @media(max-width:760px){
      .nav.open{top:78px}
      .topbar-actions{gap:10px}
      .btn-learner{padding:10px 12px;font-size:12px;border-radius:8px}
    }

    @media(max-width:520px){
      .btn-learner .learner-label{font-size:0}
      .btn-learner .learner-label::after{content:"Apprenant";font-size:12px}
    }
