    :root {
      --navy:       #141e70;
      --navy-mid:   #1e2d9e;
      --navy-light: #eef0fb;
      --navy-xlight:#f5f6fd;
      --accent:     #2e40d4;
      --accent2:    #4f63e8;
      --text:       #111827;
      --muted:      #4b5563;
      --border:     #e5e7eb;
      --white:      #ffffff;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--white);
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── HEADER ── */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 32px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-mark {
      width: 38px; height: 38px;
      background: var(--navy);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      font-weight: 500;
      color: #fff;
      letter-spacing: -.5px;
    }

    .logo-name {
      font-weight: 700;
      font-size: 17px;
      color: var(--navy);
      letter-spacing: -.3px;
    }

    /* Logo image : 60px source affiché à 30px → net sur écran Retina 2× */
    .logo img {
      display: block;
      height: 30px;
      width: auto;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color .18s;
    }
    nav a:hover { color: var(--navy); }

    .nav-cta {
      background: var(--navy) !important;
      color: #fff !important;
      padding: 8px 18px;
      border-radius: 6px;
      font-size: 13px !important;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(160deg, var(--navy-xlight) 0%, #fff 60%);
      border-bottom: 1px solid var(--border);
      padding: 88px 32px 80px;
    }

    .hero-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 600;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }

    .hero-tag::before {
      content: '';
      width: 20px; height: 2px;
      background: var(--accent2);
      border-radius: 2px;
    }

    h1 {
      font-size: clamp(36px, 4.5vw, 52px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1.5px;
      color: var(--navy);
      margin-bottom: 20px;
    }

    h1 span {
      position: relative;
      display: inline-block;
      color: var(--accent);
    }

    h1 span::after {
      content: '';
      position: absolute;
      left: 0; bottom: 2px;
      width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--navy), var(--accent2));
      border-radius: 2px;
      opacity: .35;
    }

    .hero-desc {
      font-size: 16px;
      line-height: 1.75;
      color: var(--muted);
      margin-bottom: 36px;
      max-width: 440px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 22px;
      border-radius: 7px;
      font-size: 14px;
      font-weight: 600;
      font-family: 'Plus Jakarta Sans', sans-serif;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all .2s;
    }

    .btn-primary {
      background: var(--navy);
      color: #fff;
    }
    .btn-primary:hover {
      background: var(--accent);
      box-shadow: 0 6px 20px rgba(20,30,112,.25);
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--navy);
    }
    .btn-outline:hover {
      background: var(--navy);
      color: #fff;
    }

    /* ── HERO VISUAL ── */
    .hero-visual { position: relative; }

    .hero-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
      box-shadow: 0 4px 24px rgba(20,30,112,.08), 0 1px 3px rgba(0,0,0,.04);
    }

    .hero-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .hc-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hc-dot {
      width: 8px; height: 8px;
      background: #22c55e;
      border-radius: 50%;
      box-shadow: 0 0 0 3px #22c55e25;
      animation: blink 2s infinite;
    }
    @keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.4; } }

    .hc-list { display: flex; flex-direction: column; gap: 10px; }

    .hc-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      background: var(--navy-xlight);
      border-radius: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--navy);
      border: 1px solid transparent;
      transition: border-color .2s;
      text-decoration: none;
    }
    .hc-item:hover { border-color: #141e7030; }

    .hc-item-icon {
      width: 34px; height: 34px;
      border-radius: 7px;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .hc-item-meta { flex: 1; }
    .hc-item-name { display: block; font-weight: 600; font-size: 13px; }
    .hc-item-url  { display: block; font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); margin-top: 1px; }

    .hc-badge { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 100px; }
    .badge-live { background: #dcfce7; color: #16a34a; }
    .badge-beta { background: #dbeafe; color: #1d4ed8; }

    .hc-footer {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .hc-stat { text-align: center; }
    .hc-stat strong { display: block; font-size: 18px; font-weight: 700; color: var(--navy); }
    .hc-stat span   { font-size: 11px; color: var(--muted); }

    /* ── TOOLS SECTION ── */
    section.tools { padding: 80px 32px 100px; }

    .section-inner { max-width: 1140px; margin: 0 auto; }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .section-pre {
      font-size: 12px;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 8px;
    }

    h2 {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -1px;
      color: var(--navy);
    }

    .section-header p {
      font-size: 14px;
      color: var(--muted);
      max-width: 320px;
      text-align: right;
    }

    /* ── TOOL CARDS ── */
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
      gap: 24px;
    }

    .tool-card {
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: all .25s;
    }

    .tool-card:hover {
      border-color: #141e7040;
      box-shadow: 0 12px 36px rgba(20,30,112,.1);
      transform: translateY(-3px);
    }

    .tool-card-disabled { pointer-events: none; opacity: .55; }

    .card-top { padding: 28px 28px 0; }

    .card-icon-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .card-icon {
      width: 52px; height: 52px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
    }

    .icon-md  { background: var(--navy-light); }
    .icon-crm { background: #e0f2fe; }
    .icon-tbd { background: #f3f4f6; }

    .card-badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
    .badge-live-card { background: #dcfce7; color: #15803d; }
    .badge-beta-card { background: #dbeafe; color: #1e40af; }
    .badge-soon-card { background: #fef3c7; color: #92400e; }

    .card-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -.4px;
      margin-bottom: 10px;
    }

    .card-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      padding: 0 28px 24px;
    }

    .tag {
      font-size: 12px;
      font-weight: 500;
      color: var(--navy);
      background: var(--navy-light);
      padding: 3px 10px;
      border-radius: 4px;
    }

    .card-footer-link {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 28px;
      background: var(--navy-xlight);
      border-top: 1px solid var(--border);
    }

    .card-url { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); }

    .card-arrow {
      width: 30px; height: 30px;
      background: var(--navy);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background .2s;
    }

    .tool-card:hover .card-arrow { background: var(--accent2); }

 /* Lien partenaire dans la nav */
    .nav-partner {
      font-size: 0.8rem;
      font-weight: 600;
      color: #a78bfa;
      border: 1px solid rgba(139,92,246,.3);
      border-radius: 6px;
      padding: 5px 12px;
      text-decoration: none;
      transition: background .2s, color .2s;
    }
    .nav-partner:hover {
      background: rgba(139,92,246,.12);
      color: #8b5cf6;
    }

.card-partner {
  font-size: 0.75rem;
  font-weight: 400;
  color: #94a3b8;
  margin-left: 0.35em;
}

    /* Bandeau partenaire — ruban diagonal */
    .tool-card.tool-card-partner {
      position: relative;
      overflow: hidden;
    }
    .partner-ribbon {
      position: absolute;
      top: 18px;
      right: -34px;
      transform: rotate(45deg);
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 40px;
      line-height: 1.4;
      z-index: 2;
      box-shadow: 0 2px 8px rgba(99,102,241,.35);
      pointer-events: none;
    }
    /* Bordure gauche subtile sur la carte partenaire */
    .tool-card.tool-card-partner {
      border-left: 3px solid #6366f1;
    }
    /* Indicateur partenaire dans la mini-carte hero */
    .hc-partner-tag {
      display: inline-block;
      font-size: 0.55rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #a78bfa;
      background: rgba(139,92,246,.12);
      padding: 1px 6px;
      border-radius: 4px;
      margin-left: 6px;
      vertical-align: middle;
    }


    /* ── WHY ── */
    .why {
      background: var(--navy);
      padding: 80px 32px;
      color: #fff;
    }

    .why-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why h2 { color: #fff; font-size: 30px; margin-bottom: 16px; }

    .why-desc {
      font-size: 15px;
      color: rgba(255,255,255,.65);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .why-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,.3);
      padding-bottom: 2px;
      transition: border-color .2s;
    }
    .why-link:hover { border-color: #fff; }

    .why-points { display: flex; flex-direction: column; gap: 20px; }

    .why-point { display: flex; gap: 16px; align-items: flex-start; }

    .wp-icon {
      width: 40px; height: 40px;
      background: rgba(255,255,255,.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .wp-text strong { display: block; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; }
    .wp-text span   { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

    /* ── FOOTER ── */
    footer {
      background: #fff;
      border-top: 1px solid var(--border);
      padding: 32px;
    }

    .footer-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-left { font-size: 13px; color: var(--muted); }
    .footer-left a { color: var(--navy); font-weight: 600; text-decoration: none; }
    .footer-right { font-size: 12px; color: #9ca3af; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-tag     { animation: fadeUp .5s .05s both; }
    h1            { animation: fadeUp .5s .12s both; }
    .hero-desc    { animation: fadeUp .5s .2s  both; }
    .hero-actions { animation: fadeUp .5s .28s both; }
    .hero-visual  { animation: fadeUp .5s .18s both; }
    .tool-card:nth-child(1) { animation: fadeUp .45s .1s both; }
    .tool-card:nth-child(2) { animation: fadeUp .45s .2s both; }
    .tool-card:nth-child(3) { animation: fadeUp .45s .3s both; }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { order: -1; }
      .section-header { flex-direction: column; align-items: flex-start; }
      .section-header p { text-align: left; }
      .why-inner { grid-template-columns: 1fr; gap: 48px; }
      .tools-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .hero { padding: 56px 20px 56px; }
      section.tools { padding: 56px 20px 72px; }
      .why { padding: 56px 20px; }
      footer { padding: 24px 20px; }
      nav a:not(.nav-cta) { display: none; }
    }