:root{
    --pink:#e21b73; --pink-d:#c20f5e; --pink-soft:#fdeef5; --blush:#fdf8f6;
    --ink:#5c5763; --muted:#736c7d; --line:#efe7e6; --wa:#2bab63; --r:18px; --r-sm:12px;
  }
  *{ box-sizing:border-box; margin:0; padding:0; }
  body{ font-family:'Hanken Grotesk',system-ui,sans-serif; color:var(--ink); background:#fff; line-height:1.6; font-size:17px; overflow-x:clip; }
  .wrap{ max-width:1160px; margin:0 auto; padding:0 22px; }
  a{ color:var(--pink-d); }
  h1,h2,h3{ font-family:'Bricolage Grotesque',sans-serif; line-height:1.15; }
  /* ===== Header — identique à la page d'accueil ===== */
  .topbar{ background:#fdeef5; color:var(--ink); font-size:13.5px; font-weight:500; border-bottom:1px solid var(--line); }
  .topbar .wrap{ display:flex; align-items:center; justify-content:center; gap:16px; padding:8px 22px; flex-wrap:wrap; }
  .topbar b{ color:var(--pink-d); }
  .topbar .dot{ width:4px;height:4px;border-radius:50%;background:rgba(36,29,43,.22); }
  .hd{ position:sticky; top:0; z-index:900; background:rgba(255,255,255,.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); box-shadow:0 4px 20px -16px rgba(33,27,35,.5); }
  .hd .wrap{ display:flex; align-items:center; justify-content:space-between; padding:12px 22px; gap:18px; }
  .logo{ display:flex; align-items:center; gap:10px; font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:20px; color:var(--ink); text-decoration:none; }
  .logo .mark{ width:48px; height:48px; flex:none; display:block; }
  .logo .mark svg{ width:100%; height:100%; display:block; }
  .logo .wm .n{ font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:21px; line-height:1; color:var(--ink); display:block; }
  .logo .wm .n em{ font-style:normal; color:var(--pink); }
  .logo .wm .n i{ font-style:normal; font-weight:700; color:var(--muted); }
  .logo .wm small{ display:block; font-family:'Hanken Grotesk',sans-serif; font-weight:500; font-size:11px; color:var(--muted); margin-top:3px; }
  .hd nav{ display:flex; gap:26px; font-weight:600; font-size:15px; }
  .hd nav a{ text-decoration:none; color:var(--ink); }
  .hd nav a:hover{ color:var(--pink); }
 .hd .nav-dd{ position:relative; }
 .hd .nav-dd-t::after{ content:" ▾"; font-size:11px; color:var(--muted); }
 .hd .nav-dd-menu{ position:absolute; top:100%; left:0; min-width:236px; background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow:0 18px 40px -18px rgba(33,27,35,.4); padding:8px; display:none; flex-direction:column; gap:2px; z-index:1000; }
 .hd .nav-dd:hover .nav-dd-menu,  .hd .nav-dd:focus-within .nav-dd-menu{ display:flex; }
 .hd .nav-dd-menu a{ padding:9px 12px; border-radius:8px; white-space:nowrap; font-size:14.5px; color:var(--ink); }
 .hd .nav-dd-menu a:hover{ background:#fdeef5; color:var(--pink); }
  .hd .hd-cta{ display:flex; align-items:center; gap:12px; }
  .hd-burger{ display:none; flex-direction:column; justify-content:center; gap:5px; width:44px; height:44px; border:1px solid var(--line); border-radius:12px; background:#fff; cursor:pointer; padding:0 11px; }
  .hd-burger span{ display:block; height:2.5px; width:100%; background:var(--ink); border-radius:2px; transition:transform .25s ease, opacity .2s ease; }
  .hd-burger.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
  .hd-burger.open span:nth-child(2){ opacity:0; }
  .hd-burger.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }
  .btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; font-family:inherit; font-weight:800;
    font-size:15.5px; padding:12px 22px; border-radius:999px; cursor:pointer; border:2px solid transparent; text-decoration:none; white-space:normal; text-align:center;
    transition:transform .15s ease, background .25s ease, color .25s ease, box-shadow .2s ease; }
  .btn:hover{ transform:translateY(-2px); }
  .btn-pink{ background:var(--pink); color:#fff; box-shadow:0 12px 26px -14px rgba(226,27,115,.7); }
  .btn-pink:hover{ background:var(--pink-d); box-shadow:0 16px 30px -12px rgba(226,27,115,.8); }
  .btn-line{ background:#fff; color:var(--pink-d); border-color:var(--pink); }
  .btn-line:hover{ background:var(--pink); color:#fff; }
  .btn-wa{ background:#fff; color:#1f8c4d; border-color:var(--wa); }
  .btn-wa:hover{ background:var(--wa); color:#fff; }
  .btn-red{ background:linear-gradient(135deg,#ee4b96,#c20f5e); color:#fff; border-color:transparent; box-shadow:0 10px 24px -12px rgba(194,15,94,.55); position:relative; isolation:isolate; overflow:hidden; }
  .btn-red::before{ content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(135deg,#d43b86,#a50d50); transform:translateX(-101%); transition:transform .35s cubic-bezier(.2,.7,.2,1); }
  .btn-red:hover{ color:#fff; }
  .btn-red:hover::before{ transform:translateX(0); }
  .btn-sm{ padding:11px 20px; font-size:14.5px; }
  @media(max-width:900px){
    .hd .wrap{ position:relative; }
    .hd-burger{ display:flex; }
    .hd .hd-cta{ display:flex; align-items:center; gap:6px; }
    .hd .hd-cta .btn{ display:none; }
    .hd nav{ display:none; position:absolute; top:100%; left:0; right:0; flex-direction:column; gap:2px;
      background:#fff; padding:10px 22px 16px; border-bottom:1px solid var(--line); box-shadow:0 16px 30px -16px rgba(33,27,35,.3); margin-left:0; }
    .hd nav.open{ display:flex; }
    .hd nav a{ padding:13px 4px; border-bottom:0; font-size:16px; }
   .hd .nav-dd-menu{ position:static; display:flex; border:0; box-shadow:none; padding:2px 0 2px 14px; min-width:0; }
   .hd .nav-dd-menu a{ border-bottom:0; font-size:15px; }
    .logo .mark{ height:42px; width:42px; }
    .logo .wm small{ display:none; }
    .logo .wm .n{ font-size:18px; }
  }
  /* Hero */
  .hero{ background:var(--blush); padding:48px 0 40px; border-bottom:1px solid var(--line); }
  .crumb{ font-size:13.5px; color:var(--muted); margin-bottom:14px; }
  .crumb a{ color:var(--muted); text-decoration:none; }
  .hero h1{ font-size:clamp(28px,5vw,42px); }
  .hero h1 span{ color:var(--pink); }
  .hero p{ margin-top:14px; max-width:620px; color:#4a4350; font-size:18px; }
  .hero .cta{ margin-top:22px; display:flex; gap:12px; flex-wrap:wrap; }
  /* Sections */
  section{ padding:46px 0; }
  .eyebrow{ display:inline-block; font-size:12.5px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--pink-d); background:var(--pink-soft); padding:6px 12px; border-radius:999px; margin-bottom:14px; }
  h2{ font-size:clamp(24px,4vw,32px); }
  .lead{ color:var(--muted); margin-top:10px; max-width:680px; }
  /* Cards grid */
  .grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:28px; }
  @media(max-width:820px){ .grid{ grid-template-columns:1fr 1fr; } }
  @media(max-width:540px){ .grid{ grid-template-columns:1fr; } }
  .card{ background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:20px; transition:transform .2s ease, box-shadow .2s ease; }
  .card:hover{ transform:translateY(-4px); box-shadow:0 22px 40px -28px rgba(33,27,35,.5); }
  .card .ic{ font-size:24px; }
  .card h3{ font-size:17px; margin:10px 0 6px; }
  .card p{ font-size:14.5px; color:var(--muted); }
  /* Frontière block */
  .panel{ background:var(--pink-soft); border:1px solid #f4d4e3; border-radius:var(--r); padding:26px; margin-top:24px; }
  .panel h3{ font-size:20px; color:var(--pink-d); }
  .panel p{ margin-top:8px; color:#5a4450; }
  /* Countries */
  .countries{ display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
  .countries span{ font-size:13.5px; font-weight:600; background:#fff; border:1px solid var(--line); border-radius:999px; padding:7px 13px; }
  .countries.front span{ background:var(--pink-soft); border-color:#f0c8da; color:var(--pink-d); }
  .note{ margin-top:18px; font-size:13.5px; color:var(--muted); background:#faf6f8; border-left:3px solid var(--pink); padding:12px 16px; border-radius:0 8px 8px 0; }
  /* CTA band */
  .band{ background:#fff; border:1px solid var(--line); color:var(--ink); border-radius:var(--r); padding:40px 28px; text-align:center; box-shadow:0 24px 50px -34px rgba(33,27,35,.4); }
  .band h2{ color:var(--ink); }
  .band p{ color:var(--muted); max-width:520px; margin:12px auto 22px; }
  .band .cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
  .band .btn-line{ background:#fff; color:var(--pink-d); border-color:var(--pink); }
  .band .btn-line:hover{ background:var(--pink); color:#fff; }
  /* Footer */
  footer a:hover{ color:var(--pink); }

  /* ===== Footer unifié (compact, identique sur toutes les pages) ===== */
  .atpf{ background:#fff; border-top:1px solid #efe7e6; margin-top:10px; padding:22px 0 20px; text-align:center; font-family:'Hanken Grotesk',system-ui,sans-serif; }
  .atpf .wrap{ display:block; }
  .atpf .atpf-top{ display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:6px 12px; }
  .atpf .atpf-name{ display:inline-flex; align-items:center; gap:8px; font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:17px; color:#4a4450; }
  .atpf .atpf-mark{ width:28px; height:28px; flex:none; }
  .atpf .atpf-sub{ font-size:13.5px; color:#635c6e; }
  .atpf .atpf-sub a{ color:#4a4450; font-weight:700; text-decoration:none; }
  .atpf .atpf-links{ display:flex; flex-wrap:wrap; justify-content:center; gap:5px 14px; margin:11px 0; padding:0; }
  .atpf .atpf-links a{ font-size:13.5px; color:#736c7d; text-decoration:none; }
  .atpf .atpf-links a:hover{ color:#e21b73; }
  .atpf .atpf-legal{ font-size:12px; color:#635c6e; line-height:1.55; }
  .atpf .atpf-legal a{ color:#c20f5e; font-weight:700; text-decoration:none; }
  .atpf .atpf-legal b{ color:#736c7d; }


  .lp-hero{ background:linear-gradient(180deg,#fff,#fdf4f8); border-bottom:1px solid var(--line); padding:44px 0 36px; }
  .lp-hero .inner{ max-width:900px; margin:0 auto; }
  .lp-hero .crumb{ font-size:13px; color:var(--muted); margin-bottom:12px; }
  .lp-hero .crumb a{ color:var(--muted); text-decoration:none; }
  .lp-hero h1{ font-size:clamp(28px,5vw,42px); line-height:1.06; }
  .lp-hero h1 span{ color:var(--pink-d); }
  .lp-hero p.lead{ margin-top:12px; font-size:17.5px; color:#4a4350; max-width:700px; }
  .lp-cta{ display:flex; flex-wrap:wrap; gap:12px; margin-top:22px; }
  .lp-badges{ display:flex; flex-wrap:wrap; gap:8px 18px; margin-top:18px; font-size:13.5px; color:#5a4450; }
  .lp-badges b{ color:var(--ink); }
  .legal h2{ margin-top:34px; }
  /* Tunnel adapté au profil */
  .fn{ background:#fff; border:1px solid var(--line); border-radius:18px; padding:22px; margin:8px 0 6px; box-shadow:0 22px 50px -34px rgba(33,27,35,.45); }
  .fn-q{ font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:18px; color:var(--ink); margin-bottom:14px; }
  .fn-cards{ display:flex; flex-wrap:wrap; gap:10px; }
  .fn-card{ flex:1 1 auto; min-width:160px; text-align:left; cursor:pointer; background:#faf8f9; border:1.5px solid var(--line); border-radius:12px; padding:12px 14px; font:inherit; font-size:14.5px; font-weight:600; color:var(--ink); transition:border-color .15s, background .15s; }
  .fn-card:hover{ border-color:#e21b73; }
  .fn-card.is-on{ border-color:#e21b73; background:#fdeef5; color:#c20f5e; }
  .fn-panel{ margin-top:16px; padding-top:16px; border-top:1px dashed var(--line); }
  .fn-panel[hidden]{ display:none; }
  .fn-panel p{ margin:0 0 14px; color:#4a4350; font-size:15px; line-height:1.6; }
  .fn-cta{ display:flex; flex-wrap:wrap; gap:10px; }
  .fn-steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:14px; }
  .fn-steps .s{ background:#faf8f9; border:1px solid var(--line); border-radius:14px; padding:16px; }
  .fn-steps .n{ width:30px; height:30px; border-radius:50%; background:#e21b73; color:#fff; font-weight:800; display:flex; align-items:center; justify-content:center; }
  .fn-steps h3{ margin:10px 0 4px; font-size:16px; }
  .fn-steps p{ font-size:14px; color:#5a4450; margin:0; }
  .why{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px 20px; margin-top:14px; }
  .why div{ font-size:14.5px; color:#4a4350; } .why b{ color:var(--ink); }
  .lp-band{ background:linear-gradient(135deg,#0a2e6e,#114596); border-radius:16px; padding:24px 26px; margin:34px 0; text-align:center; }
  .lp-band b{ color:#fff; font-family:'Bricolage Grotesque',sans-serif; font-size:20px; display:block; }
  .lp-band span{ color:#dbe6ff; font-size:14.5px; display:block; margin:6px 0 16px; }
  .lp-also{ margin-top:30px; font-size:14px; color:var(--muted); } .lp-also a{ color:var(--pink-d); font-weight:600; }
  @media(max-width:680px){ .fn-steps,.why{ grid-template-columns:1fr; } }
