    /* ═══════════════════════════════════════════════════════
       PMEPULSE.COM — PORTAIL OUTILS
       Palette : Bleu marine #1E2F8D / Bleu foncé #152270
       Typographies : Cormorant Garamond + Plus Jakarta Sans
    ═══════════════════════════════════════════════════════ */
    :root {
      --sc-blue:    #1E2F8D;
      --sc-dark:    #152270;
      --sc-mid:     #2B3FA6;
      --sc-pale:    #E8EBF8;
      --sc-gray:    #9E9E9E;
      --navy:       #0C1535;
      --cream:      #F8F7F3;
      --off-white:  #FAFAF8;
      --border:     rgba(30,47,141,0.10);
      --muted:      #6B7490;
      --serif:      'Cormorant Garamond', Georgia, serif;
      --sans:       'Plus Jakarta Sans', system-ui, sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--sans); background: #fff; color: var(--navy); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

    /* ── NAV ───────────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      padding: 1rem 0;
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(30,47,141,0.07);
      transition: padding .3s, box-shadow .3s;
    }
    .nav.scrolled { padding: .65rem 0; box-shadow: 0 4px 24px rgba(21,34,112,.08); }
    .nav-inner {
      max-width: 1160px; margin: 0 auto; padding: 0 2rem;
      display: flex; justify-content: space-between; align-items: center;
    }
    .nav-brand {
      font-family: var(--serif); font-weight: 600; font-size: 1.5rem;
      color: var(--sc-dark); text-decoration: none; letter-spacing: .01em;
      display: flex; align-items: center; gap: 6px;
    }
    .nav-brand span { color: var(--sc-blue); }
    .brand-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--sc-blue); flex-shrink: 0;
      animation: pulse-dot 2.5s ease-in-out infinite;
    }
    @keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.7);opacity:.4;} }
    .nav-right { display: flex; align-items: center; gap: 1.2rem; }
    .nav-link {
      font-size: .83rem; font-weight: 500; color: var(--muted);
      text-decoration: none; transition: color .2s;
    }
    .nav-link:hover { color: var(--sc-dark); }
    .nav-btn {
      display: inline-flex; align-items: center; gap: .4rem;
      background: var(--sc-blue); color: #fff;
      font-family: var(--sans); font-weight: 600; font-size: .8rem;
      padding: .55rem 1.3rem; border-radius: 5px; text-decoration: none;
      letter-spacing: .02em; transition: background .2s, transform .2s;
    }
    .nav-btn:hover { background: var(--sc-dark); transform: translateY(-1px); }

    /* ── HERO ──────────────────────────────────────────── */
    .hero {
      background: var(--sc-dark);
      padding: 10rem 0 8rem;
      position: relative; overflow: hidden;
    }
    /* Fond subtil : lumière à gauche bas, reflet à droite haut */
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 55% 50% at 10% 90%, rgba(43,63,166,.25) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 95% 5%,  rgba(30,47,141,.20) 0%, transparent 50%);
    }
    /* Lignes horizontales discrètes */
    .hero-lines {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
      background-size: 100% 88px;
    }
    .hero-inner {
      position: relative; z-index: 2;
      max-width: 1160px; margin: 0 auto; padding: 0 2rem;
    }
    /* Eyebrow */
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: .7rem;
      margin-bottom: 2.2rem;
    }
    .eyebrow-line { width: 32px; height: 1px; background: rgba(158,158,158,.6); }
    .eyebrow-text {
      font-size: .68rem; font-weight: 600; letter-spacing: .14em;
      text-transform: uppercase; color: white !important;
    }
    /* Titre principal */
    .hero-title {
      font-family: var(--serif);
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 600; color: #fff;
      line-height: 1.07; letter-spacing: -.01em;
      max-width: 820px;
      margin-bottom: 1.8rem;
    }
    .hero-title em {
      font-style: italic;
      color: rgba(255,255,255,.45);
    }
    /* Sous-titre */
    .hero-sub {
      font-size: 1.05rem; color: rgba(255,255,255,.50);
      line-height: 1.8; max-width: 560px;
      margin-bottom: 3rem;
    }
    .hero-sub strong { color: rgba(255,255,255,.85); font-weight: 500; }
    /* Actions */
    .hero-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: .55rem;
      background: #fff; color: var(--sc-dark);
      font-family: var(--sans); font-weight: 700; font-size: .82rem;
      padding: .9rem 2rem; border-radius: 5px; text-decoration: none;
      letter-spacing: .04em; text-transform: uppercase;
      transition: all .25s;
    }
    .btn-primary:hover {
      background: var(--sc-pale);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(21,34,112,.3);
    }
    .btn-outline {
      display: inline-flex; align-items: center; gap: .4rem;
      color: rgba(255,255,255,.45); font-size: .84rem; font-weight: 500;
      text-decoration: none; transition: color .2s;
      border: 1px solid rgba(255,255,255,.12);
      padding: .88rem 1.6rem; border-radius: 5px;
    }
    .btn-outline:hover { color: #fff; border-color: rgba(255,255,255,.3); }

    /* Bande de séparation bas hero */
    .hero-bottom {
      margin-top: 5rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255,255,255,.07);
      display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
    }
    .hero-bottom-text {
      font-family: var(--serif); font-style: italic;
      font-size: 1.1rem; color: white !important; line-height: 1.5;
      max-width: 480px;
    }
    .hero-bottom-text strong { color: white !important; font-style: normal; font-weight: 500; }

    /* ── TRUST ─────────────────────────────────────────── */
    .trust {
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 1.3rem 0;
    }
    .trust-inner {
      max-width: 1160px; margin: 0 auto; padding: 0 2rem;
      display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
    }
    .trust-by {
      font-size: .67rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--muted); white-space: nowrap;
    }
    .trust-items { display: flex; gap: .65rem; flex-wrap: wrap; }
    .trust-pill {
      display: inline-flex; align-items: center; gap: .4rem;
      background: var(--sc-pale); border: 1px solid rgba(30,47,141,.12);
      border-radius: 4px; padding: .38rem .9rem;
      font-size: .72rem; font-weight: 600; color: var(--sc-blue);
    }
    .trust-pill i { color: var(--sc-blue); font-size: .75rem; }
    .trust-pill.brand {
      font-family: var(--serif); font-size: .9rem; font-weight: 700;
      color: var(--sc-dark); background: var(--sc-pale);
    }

    /* ── WRAPPERS SECTIONS ─────────────────────────────── */
    .section { padding: 4rem 0; }
    .section.bg-cream { background: var(--cream); }
    .section.bg-dark  { background: var(--sc-dark); }
    .wrap { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: .6rem;
      font-size: .67rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--sc-blue); margin-bottom: .8rem;
    }
    .eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--sc-blue); }
    .eyebrow.white { color: rgba(158,158,158,.7); }
    .eyebrow.white::before { background: rgba(158,158,158,.5); }

    .s-title {
      font-family: var(--serif); font-weight: 600;
      font-size: clamp(2rem, 3.2vw, 2.9rem);
      color: var(--sc-dark); line-height: 1.15; letter-spacing: -.01em;
    }
    .s-title.white { color: #fff; }
    .s-title em { font-style: italic; color: rgba(255,255,255,.4); }

    .s-sub {
      font-size: .95rem; color: var(--muted); line-height: 1.75;
      max-width: 540px; margin-top: .85rem;
    }
    .s-sub.white { color: rgba(255,255,255,.45); }

    /* ── GRILLE OUTILS ─────────────────────────────────── */
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 1px;
      background: rgba(30,47,141,.10);
      border: 1px solid rgba(30,47,141,.10);
      border-radius: 14px;
      overflow: hidden;
      margin-top: 3.5rem;
    }
    .tool-card {
      background: #fff; padding: 2rem 1.7rem;
      display: flex; flex-direction: column; gap: .95rem;
      position: relative; transition: background .18s;
      text-decoration: none; color: inherit;
    }
    .tool-card.live:hover { background: #FAFBFF; }
    .tool-card.soon { background: #FAFAFA; pointer-events: none; }
    .tool-top { display: flex; justify-content: space-between; align-items: flex-start; }
    .tool-icon {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
    }
    .ic-blue   { background: #E8EBF8; color: var(--sc-blue); }
    .ic-teal   { background: #ECFDF5; color: #065F46; }
    .ic-amber  { background: #FFFBEB; color: #92400E; }
    .ic-purple { background: #FAF5FF; color: #6B21A8; }
    .ic-coral  { background: #FFF7ED; color: #9A3412; }
    .tool-badge {
      font-size: .6rem; font-weight: 700; letter-spacing: .07em;
      text-transform: uppercase; padding: .25rem .7rem; border-radius: 20px;
    }
    .live-b { background: #DCFCE7; color: #15803D; }
    .soon-b { background: #F1F5F9; color: #94A3B8; }
    .tool-name {
      font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
      color: var(--sc-dark); line-height: 1.3;
    }
    .tool-card.soon .tool-name { color: #B0B8C4; }
    .tool-desc {
      font-size: .81rem; color: var(--muted); line-height: 1.65; flex: 1;
    }
    .tool-card.soon .tool-desc { color: #C8CDD6; }
    .tool-cta {
      display: inline-flex; align-items: center; gap: .3rem;
      font-size: .79rem; font-weight: 600; color: var(--sc-blue); transition: gap .2s;
    }
    .tool-card.live:hover .tool-cta { gap: .5rem; }
    .tool-cta i { font-size: .82rem; }

    /* ── POUR QUI ───────────────────────────────────────── */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.4rem; margin-top: 3.5rem;
    }
    .aud-card {
      background: #fff; border: 1px solid var(--border);
      border-radius: 12px; padding: 1.8rem 1.6rem;
      display: flex; gap: 1.1rem; align-items: flex-start;
      transition: box-shadow .2s, transform .2s;
    }
    .aud-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(21,34,112,.07); }
    .aud-icon {
      width: 42px; height: 42px; border-radius: 10px;
      background: var(--sc-blue);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.1rem; flex-shrink: 0;
    }
    .aud-name {
      font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
      color: var(--sc-dark); margin-bottom: .35rem;
    }
    .aud-desc { font-size: .82rem; color: var(--muted); line-height: 1.65; }

    /* ── CONTACT ───────────────────────────────────────── */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: start;
    }
    .ci-list { display: flex; flex-direction: column; gap: .85rem; margin-top: 2.5rem; }
    .ci {
      display: flex; align-items: flex-start; gap: .9rem;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 10px; padding: 1rem 1.2rem;
    }
    .ci-icon {
      width: 34px; height: 34px; border-radius: 8px;
      background: rgba(30,47,141,.35);
      display: flex; align-items: center; justify-content: center;
      color: #A8BCF0; font-size: .95rem; flex-shrink: 0;
    }
    .ci-lbl { font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 3px; }
    .ci-val  { font-size: .86rem; color: white !important; font-weight: 500; }
    .ci-soft { font-size: .8rem; color: white !important; }

    /* Formulaire */
    .form-wrap {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 16px; padding: 2.2rem;
    }
    .f-heading {
      font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
      color: #fff; margin-bottom: .3rem;
    }
    .f-note { font-size: .77rem; color: rgba(255,255,255,.32); margin-bottom: 1.8rem; line-height: 1.5; }
    .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
    .fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: .75rem; }
    .fl { font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: white !important; }
    .fi, .fsel, .fta {
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px; padding: .72rem 1rem;
      color: #fff; font-family: var(--sans); font-size: .85rem;
      outline: none; width: 100%; transition: border-color .2s, background .2s;
    }
    .fi::placeholder, .fta::placeholder { color: rgba(255,255,255,.18); }
    .fi:focus, .fsel:focus, .fta:focus {
      border-color: rgba(30,47,141,.6);
      background: rgba(255,255,255,.09);
    }
    .fsel { cursor: pointer; }
    .fsel option { background: #152270; color: #fff; }
    .fta { resize: vertical; min-height: 96px; }
    .f-err {
      display: none; background: rgba(239,68,68,.08);
      border: 1px solid rgba(239,68,68,.18);
      border-radius: 8px; padding: .7rem 1rem;
      margin-bottom: .75rem; font-size: .8rem; color: #FCA5A5;
    }
    .f-btn {
      width: 100%; background: var(--sc-blue); color: #fff; border: none;
      border-radius: 8px; padding: .9rem;
      font-family: var(--sans); font-size: .86rem; font-weight: 700;
      letter-spacing: .04em; text-transform: uppercase;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      gap: .5rem; transition: background .2s, transform .2s; margin-top: .3rem;
    }
    .f-btn:hover { background: var(--sc-mid); transform: translateY(-2px); }
    .f-ok {
      display: none; background: rgba(74,222,128,.08);
      border: 1px solid rgba(74,222,128,.18);
      border-radius: 10px; padding: 1.6rem; text-align: center; margin-top: 1rem;
    }
    .f-ok i { color: #4ADE80; font-size: 1.8rem; display: block; margin-bottom: .6rem; }
    .f-ok p { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.6; }
    .f-privacy { font-size: .67rem; color: rgba(255,255,255,.18); text-align: center; margin-top: .7rem; line-height: 1.5; }

    /* ── FOOTER ────────────────────────────────────────── */
    footer { background: #070D28; border-top: 1px solid rgba(255,255,255,.04); padding: 3rem 0 2rem; }
    .ft-grid {
      display: flex; justify-content: space-between; align-items: flex-start;
      gap: 2rem; flex-wrap: wrap; padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255,255,255,.05); margin-bottom: 1.5rem;
    }
    .ft-brand { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: #fff; }
    .ft-brand span { color: rgba(158,158,158,.7); }
    .ft-tag { font-size: .73rem; color: white !important; margin-top: .25rem; }
    .ft-certs { display: flex; flex-direction: column; gap: .35rem; }
    .ft-cert { font-size: .7rem; color: white !important; display: flex; align-items: center; gap: .4rem; }
    .ft-cert i { color: white !important; font-size: .7rem; }
    .ft-copy {
      display: flex; justify-content: space-between; align-items: center;
      font-size: .68rem; color: white !important; flex-wrap: wrap; gap: .5rem;
    }

    /* ── REVEAL ─────────────────────────────────────────── */
    .rv { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
    .rv.in { opacity: 1; transform: none; }

    /* ── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 960px) {
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    }
    @media (max-width: 640px) {
      .hero { padding: 8rem 0 5rem; }
      .f-row { grid-template-columns: 1fr; }
      .nav-link { display: none; }
      .ft-grid { flex-direction: column; }
    }

    /* ── LABEL OAE ── */
    .oae-bar { background: var(--sc-blue); padding: 1.2rem 0; }
    .oae-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
    .oae-icon { font-size: 1.1rem; color: rgba(255,255,255,.6); flex-shrink: 0; }
    .oae-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: #fff; white-space: nowrap; flex-shrink: 0; }
    .oae-sep { width: 1px; height: 30px; background: rgba(255,255,255,.15); flex-shrink: 0; }
    .oae-text { font-size: .8rem; color: white !important; line-height: 1.6; text-align: justify !important; }
    .oae-text strong { color: rgba(255,255,255,.85); font-weight: 600; }
    @media (max-width: 700px) { .oae-sep { display: none; } .oae-inner { gap: .8rem; } }
